You've already forked ultrasm64-2
mirror of
https://github.com/HackerN64/ultrasm64-2.git
synced 2026-01-21 10:38:08 -08:00
subrepo: subdir: "lib/hackerlibultra" merged: "08e84e89" upstream: origin: "https://github.com/HackerN64/hackerlibultra" branch: "main" commit: "08e84e89" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
11 lines
122 B
Bash
Executable File
11 lines
122 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
cd $1
|
|
|
|
mkdir -p .cmp
|
|
|
|
for f in *.o ;
|
|
do
|
|
${CROSS}objcopy -p --strip-debug $f .cmp/${f/.o/.cmp.o}
|
|
done
|