Author Topic: what flavor of linux is best to run the scp on?  (Read 3481 times)

0 Members and 1 Guest are viewing this topic.

Offline CaptJosh

  • 210
Re: what flavor of linux is best to run the scp on?
Also, whatever you do, do not try to use the SCP on SuSE 10. It uses new and buggy versions of glibc and the gcc. Even though it might look like it compiles correctly, it won't run. At least, I've not been able to get it to work. SuSE 10 does not seem to be ready for primetime.
CaptJosh

There are only 10 kinds of people in the world;
those who understand binary and those who don't.

 

Offline Nuke

  • Ka-Boom!
  • 212
  • Mutants Worship Me
Re: what flavor of linux is best to run the scp on
im using fedora core 4. anyway il poste the whole of the error later when i get on my linux box. i still havent figured out how to do network connection sharing in a multi platform environment, that and i cant afford a network switch. id rather use a hub, cause im paranoid about higher level devices, but i cant find one in this town.

also im getting alot of conflicting instructions about how to compile fs2. not sure which ones to go by.
I can no longer sit back and allow communist infiltration, communist indoctrination, communist subversion, and the international communist conspiracy to sap and impurify all of our precious bodily fluids.

Nuke's Scripting SVN

 

Offline Nuke

  • Ka-Boom!
  • 212
  • Mutants Worship Me
Re: what flavor of linux is best to run the scp on
i was able to successfully compile d2x, so at least i know im not a total moron :D
but onto frespace open.

heres the terminal output for ./configure
Code: [Select]
[root@001217570254 fs2_open-3.6.7]# ./configure
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for ranlib... ranlib
checking for g++... no
checking for c++... no
checking for gpp... no
checking for aCC... no
checking for CC... no
checking for cxx... no
checking for cc++... no
checking for cl... no
checking for FCC... no
checking for KCC... no
checking for RCC... no
checking for xlC_r... no
checking for xlC... no
checking whether we are using the GNU C++ compiler... no
checking whether g++ accepts -g... no
checking dependency style of g++... none
Using Unix defines (for linux-gnu)
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for stdlib.h... (cached) yes
checking for socklen_t... yes
checking for std::ios_base... no
checking for glBindBufferARB in -lGL... yes
checking for sdl-config... /usr/bin/sdl-config
checking for SDL - version >= 1.2.6... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libjpeg/Makefile
config.status: creating code/Makefile
config.status: executing depfiles commands


Configure options:


Networking enabled ..... : yes
Sound enabled .......... : yes
Text-to-speech enabled . : no

Debug build ............ : no
DEMO build ............. : no
SCP Lite ............... : no
Inferno build .......... : no
GProf support .......... : no

[root@001217570254 fs2_open-3.6.7]#

and heres my make output
Code: [Select]
[root@001217570254 fs2_open-3.6.7]# make
Making all in libjpeg
make[1]: Entering directory `/root/Desktop/fs2_open-3.6.7/libjpeg'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/Desktop/fs2_open-3.6.7/libjpeg'
Making all in code
make[1]: Entering directory `/root/Desktop/fs2_open-3.6.7/code'
source='ai/ai.cpp' object='ai.o' libtool=no \
DEPDIR=.deps depmode=none /bin/sh ../depcomp \
g++ -DPACKAGE_NAME=\"fs2_open\" -DPACKAGE_TARNAME=\"fs2_open\" -DPACKAGE_VERSION=\"3.6.7\" -DPACKAGE_STRING=\"fs2_open\ 3.6.7\" -DPACKAGE_BUGREPORT=\"\" -DNO_CD_CHECK=1 -DNDEBUG=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dios_base=ios -DHAVE_LIBGL=1 -DSCP_UNIX=1 -DNO_DIRECT3D=1 -DUSE_OPENAL=1  -I. -I.    -g -O2 -Wall -I/usr/include/SDL -D_REENTRANT -fsigned-char -Wno-unknown-pragmas  -Wno-deprecated -Wno-char-subscripts  -c -o ai.o `test -f 'ai/ai.cpp' || echo './'`ai/ai.cpp
../depcomp: line 414: exec: g++: not found
make[1]: *** [ai.o] Error 127
make[1]: Leaving directory `/root/Desktop/fs2_open-3.6.7/code'
make: *** [all-recursive] Error 1
[root@001217570254 fs2_open-3.6.7]#

I can no longer sit back and allow communist infiltration, communist indoctrination, communist subversion, and the international communist conspiracy to sap and impurify all of our precious bodily fluids.

Nuke's Scripting SVN

 

Offline taylor

  • Super SCP/Linux Guru
  • Moderator
  • 212
    • http://www.icculus.org/~taylor
Re: what flavor of linux is best to run the scp on?
It just looks like you are missing the gcc-g++ package.  D2X doesn't need it since it's just C and not C++ so that's probably why it worked.  Just do "su root -c yum install gcc-g++" and then you should be ok, at least as far as the compiler is concerned.

  

Offline Nuke

  • Ka-Boom!
  • 212
  • Mutants Worship Me
Re: what flavor of linux is best to run the scp on
well that worked, but i get another error. i think it has something to do with open al. i thought i installed tyhe open al packages already. but im gonna doublecheck that and download the packages again.
that  and vorbis
i think i got a compile. i guess the next step is to figure out cvs and seeing if i cant make any usefull code contributions :D
anyway thanks for all your help.
« Last Edit: January 24, 2006, 10:48:39 pm by Nuke »
I can no longer sit back and allow communist infiltration, communist indoctrination, communist subversion, and the international communist conspiracy to sap and impurify all of our precious bodily fluids.

Nuke's Scripting SVN