My programs run just fine, but it seems like the longer I work on a program, the more times it gets linked during compilation. This program is up to 2 linkings.

Note the bolded line below.


Quote Originally Posted by Compile log
Compiler: Default compiler
Building Makefile: "D:\Dev-Cpp\Projects\GLStuff\UniSpin\Makefile.win"
Executing make...
make.exe -f "D:\Dev-Cpp\Projects\GLStuff\UniSpin\Makefile.win" all
g++.exe main.o model.o drawscene.o -o "win32 3dsloader.exe" -L"lib" -mwindows -lopengl32 -lglu32 -lwinmm ../../../lib/libdsound.a -s

g++.exe main.o model.o drawscene.o -o "win32 3dsloader.exe" -L"lib" -mwindows -lopengl32 -lglu32 -lwinmm ../../../lib/libdsound.a -s

Execution terminated
Compilation successful
It seems like a waste of time, particularly when it starts doing it 3 or 4 extra times per compile. I have no idea what to do about it. Has anyone else encountered this?