Jump to content

idle

Community Members
  • Posts

    42
  • Joined

  • Last visited

Everything posted by idle

  1. ./update-workspaces.sh the message and an 'ls' and you'd see whats wrong
  2. Ok, thanks. So the important part is: Have you modified the file yoursel? Please run 'svn up' in your svn root and try again. And please check: svn info source/maths/Vector3D.cpp
  3. Uhm, there are _no_ errors except in make.log at the end. Please run: LC_MESSAGES=C make &> log and paste the log somewhere (dpaste.com, pastebin.ca, ...) or even use 'wgetpaste log'.
  4. Please go into build/workspace and run: ./update-workspace.sh --verbose cd gcc make No!
  5. so here is the debug stuff (i added AL_DEBUG: also): ... means the output above a few more times.
  6. # grep -R AL_NONE /usr/include/AL /usr/include/AL/al.h:#define AL_NONE 0
  7. As small workaround (just for now) use: ./pyrogenesis_dbg -quickstart It disables sound since its broken.
  8. cd ~/trunk svn up cd build/workspaces/ ./update-workspaces.sh cd gcc make clean all cd ../../../binaries/system/ ./pyrogenesis_dbg
  9. idle

    boost error

    Hm, if there is nothing else try: ln -s /usr/lib/libboost_system-mt.so.1.37.0 /usr/lib/libboost_system-mt.so
  10. idle

    boost error

    Please install libboost (if you're debian user). To ensure you got the needed stuff run: updatedb (s)locate libboost_system-mt.so Either locate or slocate.
  11. Which svn revision are you using? cd /path/to/svn/root; svn info Please set the environment variable LC_MESSAGES to C or any english locale so that all other people can read the messages as well. export LC_MESSAGES=C Could you please update your workspace with ./update-workspace.sh --verbose and run: cd gcc; make clean graphics It looks like there is a missing include directive.
  12. Reading the thread would have pointed out the reason for a more complicated build system - Makefiles or autotools do not meet the requirements set out above. more complicated sounds ok, as long as it is only complicated Does that include Premake and scons? at least premake, there were a few things with scons too but i don't remember which things.. hm, I don't have much Linux experience, but only linking in the bare necessities doesn't exactly sound like a killer feature. Is that so important? yes it is. for some linker specific stuff i recommend: http://blog.flameeyes.eu/ (tags: as-needed, linker) and also interesting is: http://www.makelinux.net/make3/make3-CHP-2-SECT-8.html some major issues has been fixed now, see http://trac.wildfiregames.com/changeset/7077
  13. Hey guys, Sorry that I didn't read the whole tread... but _PLEASE_ don't use such exotic build-systems! If possible take Makefile (self written from scratch) otherwise autotools or CMake. Nothing is perfect but the others are horrible (maybe not even all but all i know about...). They don't respect *FLAGS (LDFLAGS/LIBS, -Wl,--as-needed) which is important if you'd like to link just _really needed_ stuff etc. IMHO there are many other things against such stuff. And if a build-system doesn't know how to build in a "proper" way.. well then.... I assume you're not going to write Makefiles yourself so I only suggest autotools or CMake then. I just saw the thread here, its 3am now... maybe I'll point it out a bit more to a later moment.
×
×
  • Create New...