Projet_SETI_RISC-V/riscv-gnu-toolchain/gdb/gas/testsuite/lib/dostriptest

15 lines
111 B
Text
Raw Normal View History

2023-03-06 14:48:14 +01:00
#!/bin/sh
x=striptest.xx.$$
y=striptest.yy.$$
cp $1 $x
strip $x
cp $2 $y
strip $y
doobjcmp $x $y
exit
#eof