Hi all
I have installed multilib
run
$/etc/profiled/32env.sh /dont remember exact name/
1. than compile program
but ld linker is executed from x86_64_slackware lib
so question:
is build program/lib 32 bit?
2. It seems i can not use slackbuild script to build 32 bit staff? since
ARCH is found from
PHP Code:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
fi
if i just do
PHP Code:
#if [ -z "$ARCH" ]; then
# case "$( uname -m )" in
# i?86) ARCH=i486 ;;
# arm*) ARCH=arm ;;
# *) ARCH=$( uname -m ) ;;
# esac
#fi
ARCH=i486 ;;
code does not compile...
any suggestions..or it is nesessary to have 32 bit installed separately?