Matthias Stiller wrote:

On Friday 07 May 2004 13:33, Gerrit Voss wrote:


hmm facinating, unfortunately I never got the 7.4 compiler running.


Also had problems with 7.4 which was very buggy and 7.4.1 didn't help me much because of broken system header files :( Did anyone had a chance to try the new 7.4.2 out ?

Regards

Matthias


doesn't look so good. 7.4.2m so far seems sane. what i saw indicates several
problems wrt. where include files are found. i've a bigger log file from
compile run i wouldn't like to post here, so if gerrit or anybody else is
interested just email.

btw., how to get rid of the -k option for make? is there an configure option
or do i have to walk all the makefiles?

regards,

        j.


We recently compiled OpenSG successfully on a loaned SGI which had the most up to date IRIX and CC installed (unfortunately I don't have the version numbers). There was primarily one problem with the OpenSG headers due to changes in IRIX system headers: the function "atoll" from stdlib is not visible any more with the settings OpenSG is compiled with (atoll might be no ansi or posix or else). What we did was changing two preprocessor #if's in ./Source/Base/Base/OSGBaseTypeTraits.h
to hide the usage of atoll for SGI too (see diff output below).

Gerrit, what about that - somebody must check this and check it in then ;-)

Diff output between patched OSGBaseTypeTraits.h and the cvs version:
654c653
<     !defined(__hpux) && !defined(__sgi)
---
>     !defined(__hpux)
733c732
<     !defined(__hpux) && !defined(__sgi)
---
>     !defined(__hpux)

Maybe this patch helps already.

regards,
Alex





-------------------------------------------------------
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to deliver
higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
_______________________________________________
Opensg-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/opensg-users

Reply via email to