Visual Studio 2005 Skips Linking Step


This is the generated buildlog

Code:
Build Log      Build started: Project: kgp2xgame, Configuration: Release|Win32
 Command Lines      Creating temporary file "c:\temp\Projects\kgp2xgame\Release\BAT0000172668860.bat" with contents
[
@echo off

arm-linux-gcc.exe -c  -IC:\devkitpro\devkitGP2X\include\SDL  -o Release\demo.o ".\demo.c" 2>&1 | sed -e s/(.[a-zA-Z]\+):([0-9]\+):/\1(\2):/

if errorlevel 1 goto VCReportError

goto VCEnd

:VCReportError

echo Project : error PRJ0019: A tool returned an error code from "demo.c"

exit 1

:VCEnd
]
Creating command line """c:\temp\Projects\kgp2xgame\Release\BAT0000172668860.bat"""
 Output Window      demo.c
 Results      Build log was saved at "file://c:\temp\Projects\kgp2xgame\Release\BuildLog.htm"
kgp2xgame - 0 error(s), 0 warning(s)

As you can see, it doesn't even take the link rule into the temporary batch file.

edit: never mind. Already found the error. You need to include at least one .txt file in your solution. Otherwise, the linking part will not be included.
 
Last edited by a moderator:
Back
Top