|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I am still trying to build the beta 41 sources under ubuntu as there is no RC
for linux yet.
I am still getting a build error right off the bat
Making install in source
make[1]: Entering directory `/home/abaye/povray-3.7.0.beta.41/source'
Making install in backend
make[2]: Entering directory `/home/abaye/povray-3.7.0.beta.41/source/backend'
g++ -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../source -I../../source
-I../../source/base -I../../unix -I../../vfe -I../../vfe/unix -I/usr/include/SDL
-D_GNU_SOURCE=1 -D_REENTRANT -pthread -I/usr/include -I/usr/include -pipe
-Wno-multichar -Wno-write-strings -fno-enforce-eh-specs -s -O3 -ffast-math
-malign-double -march=native -pthread -MT fnpovfpu.o -MD -MP -MF
...deps/fnpovfpu.Tpo -c -o fnpovfpu.o `test -f 'vm/fnpovfpu.cpp' || echo
'./'`vm/fnpovfpu.cpp
In file included from ../../source/backend/control/renderbackend.h:101,
from ../../source/backend/control/messagefactory.h:100,
from ../../source/backend/frame.h:117,
from vm/fnpovfpu.cpp:296:
token
make[2]: *** [fnpovfpu.o] Error 1
make[2]: Leaving directory `/home/abaye/povray-3.7.0.beta.41/source/backend'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/home/abaye/povray-3.7.0.beta.41/source'
make: *** [install-recursive] Error 1
abaye@localhost:povray-3.7.0.beta.41$
I have upgraded to Ubuntu 10.10 with boost 1.42, and I still get nothing.
please help.
A.D.B.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Create a file (called say 'foo.cpp') containing the following:
#include <boost/thread.hpp>
boost::thread *povray_init(const boost::function0<void>& threadExit, void *addr =
NULL);
then run
g++ -c foo.cpp
tell us if it works.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Chris Cason <del### [at] deletethistoopovrayorg> wrote:
> Create a file (called say 'foo.cpp') containing the following:
>
> #include <boost/thread.hpp>
>
> boost::thread *povray_init(const boost::function0<void>& threadExit, void *addr =
NULL);
>
> then run
>
> g++ -c foo.cpp
>
> tell us if it works.
Yeah, I rechecked my boost install in package manager, Apparently, when I
upgraded boost, I didn't get boost-thread1.42. It compiles now.
Thanx
A.D.B.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |