Mod Archive Forums

Music Production => ChibiTracker => Tracking => ChibiTracker Community => Topic started by: Shatteredmind on March 08, 2008, 21:59:02

Title: problems building in Ubuntu 7.10
Post by: Shatteredmind on March 08, 2008, 21:59:02
Hmm...

I installed all the SDL development kit files and ran "scons" in the chibitracker dir and got this in the terminal:

Quote
scons: Reading SConscript files ...
1.2.11
libSDL Detected
1
scons: done reading SConscript files.
scons: Building targets ...
o drivers/file_access.o -c -O2 -ffast-math -DANSIC_LIBS_ENABLED -DPOSIX_ENABLED -DSDL_ENABLED -fno-exceptions -D_GNU_SOURCE=1 -D_REENTRANT -Iglobals -Igui -I. -I/usr/include/SDL drivers/file_access.cpp
sh: o: not found
o drivers/mempool_malloc.o -c -O2 -ffast-math -DANSIC_LIBS_ENABLED -DPOSIX_ENABLED -DSDL_ENABLED -fno-exceptions -D_GNU_SOURCE=1 -D_REENTRANT -Iglobals -Igui -I. -I/usr/include/SDL drivers/mempool_malloc.cpp
sh: o: not found
o drivers/sound_driver_sdl.o -c -O2 -ffast-math -DANSIC_LIBS_ENABLED -DPOSIX_ENABLED -DSDL_ENABLED -fno-exceptions -D_GNU_SOURCE=1 -D_REENTRANT -Iglobals -Igui -I. -I/usr/include/SDL drivers/sound_driver_sdl.cpp
sh: o: not found
ar rc drivers/libdrivers.a drivers/mempool_malloc.o drivers/file_access.o drivers/sound_driver_sdl.o
ar: drivers/mempool_malloc.o: No such file or directory
scons: *** [drivers/libdrivers.a] Error 1
scons: building terminated because of errors.

Any ideas what's wrong here?
Title: Re: problems building in Ubuntu 7.10
Post by: reduz on March 10, 2008, 05:55:38
Please install g++ compiler (For C++), that seems to be missing
Title: Re: problems building in Ubuntu 7.10
Post by: LeonardoRobusto on April 04, 2008, 21:15:14
Hello Shatteredmind,

I use and  chibitracker-1.2 and can compile it (in Opensuse-10.3)
without any problem.
You have to perform these commands:

$ scons
# sudo scons install

you will have to enter the root password for the sudo command.

It seems that you have a typo command "o" somewhere any of the scripts.
Perhaps you can download an actual verion again.
sh tries to call the command "o"

Yours,
    Frank

=============

I installed all the SDL development kit files and ran "scons" in the chibitracker dir and got this in the terminal:

Quote
scons: Reading SConscript files ...
1.2.11
libSDL Detected


1
scons: done reading SConscript files.
scons: Building targets ...
o drivers/file_access.o -c -O2 -ffast-math -DANSIC_LIBS_ENABLED -DPOSIX_ENABLED -DSDL_ENABLED -fno-exceptions -D_GNU_SOURCE=1 -D_REENTRANT -Iglobals -Igui -I. -I/usr/include/SDL drivers/file_access.cpp
sh: o: not found
o drivers/mempool_malloc.o -c -O2 -ffast-math -DANSIC_LIBS_ENABLED -DPOSIX_ENABLED -DSDL_ENABLED -fno-exceptions -D_GNU_SOURCE=1 -D_REENTRANT -Iglobals -Igui -I. -I/usr/include/SDL drivers/mempool_malloc.cpp
sh: o: not found
o drivers/sound_driver_sdl.o -c -O2 -ffast-math -DANSIC_LIBS_ENABLED -DPOSIX_ENABLED -DSDL_ENABLED -fno-exceptions -D_GNU_SOURCE=1 -D_REENTRANT -Iglobals -Igui -I. -I/usr/include/SDL drivers/sound_driver_sdl.cpp
sh: o: not found
ar rc drivers/libdrivers.a drivers/mempool_malloc.o drivers/file_access.o drivers/sound_driver_sdl.o
ar: drivers/mempool_malloc.o: No such file or directory
scons: *** [drivers/libdrivers.a] Error 1
scons: building terminated because of errors.

Any ideas what's wrong here?
[/quote]