Reverse-bins icon indicating copy to clipboard operation
Reverse-bins copied to clipboard

Same code , different CPU case , different build case , Iot bins reverse learning.

Reverse-bins

<<IOT ASSEMBLY LEARNING BLOG>>

Same code , different CPU case , different build case , Iot bins reverse learning.

    $ cat build.sh 
TARGET="calculation ifcode swap getpidtest"

CPU="armv4eb armv4l armv4tl armv5l armv6l i486 i586 i686 m68k mips64 mipsel mips powerpc-440fp powerpc sh4 sparc x86_64 sh2eb"

for tt in $TARGET
do
    for cc in $CPU
    do
        make TCPU=$cc $tt
        make TCPU=$cc TTDIR=static STATICFLAG=-static $tt
        make TCPU=$cc TTDIR=static_strip STATICFLAG=-static STRIPFLAG=-s $tt
    done
done