>Добрый день,
>
>Имеется машинка Netra T1. На ней установлена Solaris 8 SPARC
>bash-2.03# uname -a
>SunOS netra-ti 5.8 Generic_108528-11 sun4u sparc SUNW,UltraSPARC-IIi-cEngine
Это мне помогло, когда собирал 64-битный ipf на той-же нетре:
GCC 2.x cannot make 64-bit executables. However, GCC 3.x can. GCC 3.x however is new, not feild tested, and thus the following procedure should be used at your own risk. Thanks to Juergen Keil and Davide Higheley, this is how to compile a SPARC 64-bit GCC 3.0.x that will compile 64-bit executables, starting with a a working 32-bit gcc 2.95.x.
Notes:
For step 2 and 3 below you will need to have /usr/local/gcc-3.0sparcv9/bin before /usr/local/bin in your PATH, as is noted in the procedure.
Step 3 is optional. You can use the 32-bit GCC that has the ability to make 64-bit binaries, but most people prefer to use a 64-bit binary to
make 64-bit binaries.
Procedure:
Step 1: Create 32-bit GCC 3.0 that can only make 32-bit binaries
# tcsh
# pwd
/usr/local/gcc-3.0
# mkdir gcc-3.0sparc
# cd gcc-3.0sparc
# ../../gcc-3.0/configure --prefix=/usr/local/gcc-3.0sparc --enable-languages=c
# make
# make install
Step 2: Create 32-bit GCC 3.0 that can make 64-bit binaries
# cd ..
# mkdir gcc-3.0sparcv9
# cd gcc-3.0sparcv9
# echo $PATH
/usr/bin:/usr/sbin:/usr/ccs/bin:/usr/ccs/lib:/usr/include:/usr/ucb:/usr/local/bin
# setenv PATH /usr/local/gcc-3.0sparc/bin:{$PATH}
# ../../gcc-3.0/configure --prefix=/usr/local/gcc-3.0sparcv9 --enable-languages=c sparcv9-sun- solaris2
# make
# make install
Step 3: Create 64-bit GCC 3.0 that can make 64-bit binaries
# setenv PATH /usr/local/gcc-3.0sparcv9/bin:{$PATH}
# cd ..
# rm -r gcc-3.0sparcv9
# mkdir gcc-3.0sparcv9
# cd gcc-3.0sparcv9
# ../../gcc-3.0/configure --prefix=/usr/local/gcc-3.0sparcv9 --enable-languages=c sparcv9-sun- solaris2
# make
# make install