12-28-2010, 02:58 PM,
|
|
NaN
Posting Freak
|
Posts: 2,024
Threads: 120
Joined: Jan 2010
|
|
VDrift has curl(libcurl) as additional dependency since 2991.
By the way, it looks like it is possible to use scons in xcode: http://www.scons.org/wiki/IDEIntegration
|
|
01-04-2011, 04:54 PM,
|
|
Timo 6
Member
|
Posts: 164
Threads: 6
Joined: Mar 2009
|
|
I've had a go, but haven't been getting anywhere - at step 5 when it should build ... it doesn't. For some reason it won't find OpenGL:
Code: Checking for C++ header file OpenGL/gl.h... no
You do not have the OpenGL/gl.h headers installed. Exiting.
Command /opt/local/bin/scons failed with exit code 1
I can't get curl working with either: Code: ld: warning: in /Users/tim/Applications/VDrift/SVN/vdrift/tools/osx/curl.framework/curl, file was built for unsupported file format which is not the architecture being linked (i386)
. Any idea how I would rebuild it for the right architecture?
|
|
01-05-2011, 01:03 PM,
|
|
Timo 6
Member
|
Posts: 164
Threads: 6
Joined: Mar 2009
|
|
Yeah, I've tried that, but had no luck.
|
|
01-05-2011, 03:45 PM,
|
|
Timo 6
Member
|
Posts: 164
Threads: 6
Joined: Mar 2009
|
|
I've found it in several different places, but can't get it to see any of them.
|
|
01-05-2011, 04:04 PM,
|
|
Timo 6
Member
|
Posts: 164
Threads: 6
Joined: Mar 2009
|
|
Mostly OpenGL/gl.h, but there was one GL/gl.h!
|
|
01-06-2011, 03:40 PM,
|
|
Timo 6
Member
|
Posts: 164
Threads: 6
Joined: Mar 2009
|
|
Awesome, I'll test it as soon as I can.
|
|
01-17-2011, 05:32 PM,
|
|
sinalana
Junior Member
|
Posts: 2
Threads: 0
Joined: Jan 2011
|
|
r3018 won't build
On linux revision 3018 won't compile because the curl headers can't be found although they are present under ./tools/osx/ (see below).
Perhaps a Scons config file needs to be updated?
Code: >svn update
At revision 3018.
>scons
scons: Reading SConscript files ...
Checking for C++ header file asio.hpp... yes
Checking for C++ header file boost/bind.hpp... yes
Checking for C++ header file GL/gl.h... yes
Checking for C++ header file GL/glu.h... yes
Checking for C++ header file SDL/SDL.h... yes
Checking for C++ header file SDL/SDL_image.h... yes
Checking for C++ header file SDL/SDL_rotozoom.h... yes
Checking for C++ header file vorbis/vorbisfile.h... yes
Checking for C++ header file GL/glew.h... yes
Checking for C++ header file curl/curl.h... no
You do not have the curl/curl.h headers installed. Exiting.
>find . -name curl.h
./tools/osx/libcurl.framework/Versions/Release-7.21.3/Headers/curl/curl.h
|
|
01-18-2011, 06:32 PM,
|
|
sinalana
Junior Member
|
Posts: 2
Threads: 0
Joined: Jan 2011
|
|
Yes, thanks, this did the trick for me:
Code: sudo apt-get install libcurl4-gnutls-dev
btw I started with the 2010-06-30 version but I like this development version a lot better. At least, I have a lot more success controlling the car .
|
|
|