make error on STLPort (and another one in boost)

General adchpp discussion

Moderator: Moderators

Locked
Quattro
Posts: 166
Joined: 2006-01-11 09:23

make error on STLPort (and another one in boost)

Post by Quattro » 2006-09-27 05:04

i get this error when i do "make -f gcc.mak install"

c++: crt{i,beginS}.o: No such file or directory
c++: crt{endS,n}.o: No such file or directory
make: *** [obj/gcc/shared/libstlport.so.5.0.2] Error 1
quattro@quattro-laptop:~/adch++/STLport/build/lib$

anyone got an idea why this is happening, i suspect I'm missing some packages in my ubuntu edgy eft
Last edited by Quattro on 2006-09-27 11:46, edited 1 time in total.
You can send a message around the world in 1/7 of a second; yet it may take several years to move a simple idea through a 1/4 inch of human skull.

ullner
Forum Moderator
Posts: 333
Joined: 2004-09-10 11:00
Contact:

Post by ullner » 2006-09-27 06:22

Have you done "./configure" and "make -f gcc.mak depend" first?

Edit: You may have to be root...

Quattro
Posts: 166
Joined: 2006-01-11 09:23

Post by Quattro » 2006-09-27 06:55

makes no difference

i did do ./configure in STLPort/build/lib
and make -f gcc.mak depend before doing make -f gcc.mak install

as i said, i suspect something is missing but i'm not quite sure what it is
You can send a message around the world in 1/7 of a second; yet it may take several years to move a simple idea through a 1/4 inch of human skull.

Quattro
Posts: 166
Joined: 2006-01-11 09:23

Post by Quattro » 2006-09-27 11:50

the error in stlport is not there in dapper drake...
however, i get an error while trying to do configure in boost.

Code: Select all

server@server:~/adch++$ cd boost_1_33_1/
server@server:~/adch++/boost_1_33_1$ ./configure
bash: ./configure: Permission denied
server@server:~/adch++/boost_1_33_1$ ./configure
bash: ./configure: /bin/sh^M: bad interpreter: No such file or directory
server@server:~/adch++/boost_1_33_1$
the second error occurs after i set the configure permissions to execute
You can send a message around the world in 1/7 of a second; yet it may take several years to move a simple idea through a 1/4 inch of human skull.

Quattro
Posts: 166
Joined: 2006-01-11 09:23

Post by Quattro » 2006-09-27 15:01

I solved some more errors... but it seems adch++ will compile by just extracting boost into the directory without compiling it.

now i have a working adch++ but it doesn't get beyond connecting...

edit
well that one is solved forgot the adc:// prefix ^^
You can send a message around the world in 1/7 of a second; yet it may take several years to move a simple idea through a 1/4 inch of human skull.

nickez
Posts: 18
Joined: 2004-07-18 11:47
Location: Sweden
Contact:

Re: make error on STLPort (and another one in boost)

Post by nickez » 2006-10-31 15:19

Quattro wrote:i get this error when i do "make -f gcc.mak install"

c++: crt{i,beginS}.o: No such file or directory
c++: crt{endS,n}.o: No such file or directory
make: *** [obj/gcc/shared/libstlport.so.5.0.2] Error 1
quattro@quattro-laptop:~/adch++/STLport/build/lib$

anyone got an idea why this is happening, i suspect I'm missing some packages in my ubuntu edgy eft
I have the same problem with edgy eft. Does anyone know how to fix it?
//NickeZ

Quattro
Posts: 166
Joined: 2006-01-11 09:23

Post by Quattro » 2006-11-06 10:44

i didn't fix this error, but you shouldn't compile it on edgy as you shouldn't run it on edgy...
edgy is in no way suitable to run as a server ^^ use dapper for that.

*edit
and even dapper isn't that good as a server.....
if you want it to run stable for months use debian ;-)
You can send a message around the world in 1/7 of a second; yet it may take several years to move a simple idea through a 1/4 inch of human skull.

VidFamne
Posts: 13
Joined: 2004-09-20 14:01

Post by VidFamne » 2006-11-10 17:54

When you install something in ubuntu, you have to to do "sudo"
I install boost and STLport through synaptic.
swig and scons (scons-0.96.1) can be downloded, compiled, and installed.
Read the readme-file, how to do it.

ullner
Forum Moderator
Posts: 333
Joined: 2004-09-10 11:00
Contact:

Post by ullner » 2006-11-11 09:58

The problem with Edgy Eft is the version of SCons. ADCH++ require 0.96.1, while Edgy Eft ship with 0.96.92. Downgrade and you all will be fine. (Or hopefully.)

Locked