mirror of
https://github.com/hasherezade/tiny_tracer
synced 2026-06-08 14:36:37 +00:00
40 lines
815 B
Bash
Executable File
40 lines
815 B
Bash
Executable File
#!/bin/bash
|
|
|
|
make all TARGET=ia32
|
|
make all TARGET=intel64
|
|
|
|
TT_32=./obj-ia32/TinyTracer32.so
|
|
TT_64=./obj-intel64/TinyTracer64.so
|
|
|
|
APP_TYPE32=$(file "$TT_32")
|
|
APP_TYPE64=$(file "$TT_64")
|
|
|
|
if [[ $APP_TYPE64 == *"ELF 64-bit"* ]];
|
|
then
|
|
echo "[+] 64 bit build ok."
|
|
cp "$TT_64" ./install32_64/TinyTracer64.so
|
|
if [[ $? == 0 ]];
|
|
then
|
|
echo "[+] 64 bit install ok."
|
|
else
|
|
echo "ERROR: 64 bit install failed."
|
|
fi
|
|
else
|
|
echo "ERROR: Could not build the 64-bit TinyTracer"
|
|
fi
|
|
|
|
if [[ $APP_TYPE32 == *"ELF 32-bit"* ]];
|
|
then
|
|
echo "[+] 32 bit build ok."
|
|
cp "$TT_32" ./install32_64/TinyTracer32.so
|
|
if [[ $? == 0 ]];
|
|
then
|
|
echo "[+] 32 bit install ok."
|
|
else
|
|
echo "ERROR: 32 bit install failed."
|
|
fi
|
|
else
|
|
echo "ERROR: Could not build the 32-bit TinyTracer"
|
|
fi
|
|
|