Hello Patrik,
[EMAIL PROTECTED] wrote:
> I've modified the patch a little bit (I already had var_arch=x64 in my
> settings):
>
> elif re.search(r'x86_64', platform) or platform == 'win64' or
> platform == 'win-amd64':
ok.
> But as you can see in the log file it tries to link files in the lib64
> folder - but the folder separator is missing.
that should be fine, /LIBPATH:someDir just instructs the linker to
search in someDir for libraries. The problem now is that starting with
boost 1.35.0 some boost libs (among them filesystem) depend on the boost
system library. Normally on windows that is nothing to worry about, as
the boost libs have support for autolinking, so the linker should pick
up these dependencies on its own. Hmm?
Ah, I thinkg the problem is again that it does not recognize 64bit
windows. Can you change Tools/scons-build/OpenSG/AddOnHacks.py around
line 304 to:
if GetPlatform().startswith('win'):
conf_env.Append(CXXFLAGS = ['/MD'])
conf_env.Append(CPPDEFINES = ['BOOST_ALL_DYN_LINK'])
and 349 to:
if GetPlatform().startswith('win'):
self.found_defines = ['BOOST_ALL_DYN_LINK']
Hope it helps,
Carsten
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Opensg-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/opensg-users