Community
Participate
Working Groups
Hello, I'm using CDT under MacOSX Leopard, I configured my build options in project preferences correctly. CDT builds fine exepts of the linking process. Following line in the makefile produce a build error: g++ -std=gnu99 -framework OpenGL -framework GLUT -o"SpaceWarrior" ./src/GraphicalEntity.o ./src/SpaceWarrior.o ./src/Terrain.o ./src/TgaImage.o ld: unknown option: -oSpaceWarrior collect2: ld returned 1 exit status If I execute the same command in the Terminal with a space between -o "SpaceWarrior" then it works fine. g++ -std=gnu99 -framework OpenGL -framework GLUT -o "SpaceWarrior" ./src/GraphicalEntity.o ./src/SpaceWarrior.o ./src/Terrain.o ./src/TgaImage.o I guess there is a makefile generation bug, a space needs to be inserted between the argument and the target execution file name. Cheers, Kevin
Marking as duplicate *** This bug has been marked as a duplicate of bug 232373 ***