Search found 219 matches

by loonycyborg
Mon Nov 17, 2008 4:14 pm
Forum: Compile
Topic: GG Compile
Replies: 6
Views: 1997

Re: GG Compile

hirogens wrote: Too many error.
That particular error isn't helpful. Perhaps you'll use some compiler that doesn't cap the number of compile errors, like gcc :lol:
by loonycyborg
Wed Aug 06, 2008 12:49 pm
Forum: Compile
Topic: compiling MSVC 8.0 / SVN
Replies: 19
Views: 4753

Re: compiling MSVC 8.0 / SVN

Hm.. I use MinGW to build silvertree on windows and I've never had any GL-related problems.
by loonycyborg
Sat Aug 02, 2008 9:46 pm
Forum: Programming
Topic: Coding Tools
Replies: 18
Views: 4715

Re: Coding Tools

If you want a full-featured IDE, there's always Visual Studio on Windows... Unfortunately, Visual Studio doesn't work under wine. My main question, I guess, is there any sort of step through debugging to be had anywhere? Or do I need to "code like a man" and step up my mental step through...
by loonycyborg
Fri Aug 01, 2008 1:13 pm
Forum: Compile
Topic: libGL problem in RenderStarlanes(), RenderSystems() and Init
Replies: 13
Views: 3237

Re: libGL problem in RenderStarlanes(), RenderSystems() and Init

You can also try using GLEW.
1. apt-get install libglew-dev
2. Include glew.h unconditionally:
Edit all files that have

Code: Select all

#ifdef FREEORION_WIN32
#include <GL/glew.h>
#endif
change it to

Code: Select all

#include <GL/glew.h>
3. Add -lGLEW to linker flags.
by loonycyborg
Fri Jul 11, 2008 3:12 pm
Forum: Programming
Topic: cmake buildsystem
Replies: 5
Views: 1629

Re: cmake buildsystem

IMO cmake has two fundamental disadvantages: - It's based on yet another scripting language(which is not nearly as powerful as python) for no good reason - It still uses obsolete make utility(or some ad-hoc build system in an IDE), and therefore doesn't have such neat things like detection of file c...
by loonycyborg
Fri Jul 11, 2008 1:48 pm
Forum: Compile
Topic: obscure scons configure problems - solution
Replies: 2
Views: 1966

Re: obscure scons configure problems - solution

The file .sconf_temp/conftest_5.o did NOT exist and was not created. Searching google a long time finally gave solution: remove the file .sconsign.dblite If you'll run scons --config=force instead, you won't get full recompile.. This is most likely an instance of this bug: http://scons.tigris.org/i...
by loonycyborg
Thu Jul 10, 2008 9:55 am
Forum: Compile
Topic: Problem Compiling
Replies: 6
Views: 1964

Re: Problem Compiling

FreeOrion now requires boost 1.35 while according to packages.ubuntu.com ubuntu still has 1.34.1 . Either wait until 1.35 makes it to repo or compile and install it manually and then pass its location to scons: scons configure with_boost_include=/usr/local/include/boost-1_35 with_boost_libdir=/usr/l...
by loonycyborg
Sat Jun 21, 2008 5:48 pm
Forum: Compile
Topic: Scons + boost = error?
Replies: 5
Views: 2079

Re: Scons + boost = error?

With command line options you can't AFAIK. Either modify SConstruct to set env["CXX"] = "g++-3.4" or switch compiler e.g. with Gentoo's gcc-config.
by loonycyborg
Sat Jun 21, 2008 9:54 am
Forum: Compile
Topic: Scons + boost = error?
Replies: 5
Views: 2079

Re: Scons + boost = error?

CheckHeader can take a list of include files, so it's possible to pass limits.h along with dijkstra_shortest_paths.hpp . But IMO boost should take care of including files that it needs itself..
by loonycyborg
Sat Jun 21, 2008 6:18 am
Forum: Compile
Topic: Scons + boost = error?
Replies: 5
Views: 2079

Re: Scons + boost = error?

Post config.log created by scons.
by loonycyborg
Sat Jun 21, 2008 6:15 am
Forum: Compile
Topic: libGL problem in RenderStarlanes(), RenderSystems() and Init
Replies: 13
Views: 3237

Re: libGL problem in RenderStarlanes(), RenderSystems() and Init

Although fglrx may support OpenGL 2.0, it may provide it only through OpenGL extensions mechanism. IMO GLEW should be used on all platforms, not only on windows..
by loonycyborg
Thu Jun 12, 2008 7:10 pm
Forum: Compile
Topic: boost::python::throw_error_already_set()
Replies: 15
Views: 3871

Re: boost::python::throw_error_already_set()

tzlaine wrote: GG and FO won't compile against 1.35.
Does this have something to do with you using built-in boost asio?
by loonycyborg
Thu Jun 12, 2008 9:54 am
Forum: Compile
Topic: boost::python::throw_error_already_set()
Replies: 15
Views: 3871

Re: boost::python::throw_error_already_set()

No. This is config.log from autoconf. There's no way scons could produce it. EDIT: It was created by python configure 2.5, which was generated by GNU Autoconf 2.61. Invocation command line was This is config.log created when configuring python. I have no idea how config.h from custom python compile ...
by loonycyborg
Tue May 27, 2008 3:42 pm
Forum: General Discussion
Topic: Gentoo compile problem
Replies: 8
Views: 4650

Re:

tzlaine wrote:
meertn wrote:3.3.6
Sorry, but that's your problem. Upgrade to a 4.X compiler.
Feel free to steal my c++ check.
by loonycyborg
Mon May 12, 2008 10:09 pm
Forum: General Discussion
Topic: Ogre Tech Demo
Replies: 64
Views: 14046

Re: Ogre Tech Demo

But the 'atmosphere' is so dense that it looks solid. The fact that it's in gas phase doesn't tell anything about how it looks. Also, the fact that it's in gas phase doesn't make it automatically atmosphere..