Make not running linker

Hello all,

Sorry if this is a bit of a ‘noob’ question, but I have a small problem with building the example applications; make creates all of the object files but doesn’t appear to link them and hence make the executable. For example when I make the particles example, the following is created in the release directory: particles.cpp.o, particleSystem.cpp.o etc …

I am a wee bit confused.

I have the following setup:
gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4)
Ubuntu 9.04
2.6.28-11-generic

You are looking in the wrong place. All of the executables in the SDK get installed into the C/bin/linux/release directory, rather than into local directories with the object files.

To confirm it really is linking and where everything goes, you can run make like this:

make -verbose=1

and the build will echo the build commands out to stdout.

Augh! I knew it was going to be simple. Thank you for your assistance.