When I build, I get no exe

Ok when I build my project, I get no exe, but I do get a build log, and other files. Any clue


Answer this question

When I build, I get no exe

  • RogerDontLikeReports

    I don't see anything in this output that looks suspicious: have you manually checked in the ..\bin directory to ensure that the file isn't there

  • mh433493

    I get no errors, a few warnings...This code already compiled as an exe for someone else under 2003 .net, but when I convert it to 05 and build it, i get no exe

    Edit: The files I get are buildlog.htm, the exe.intermediate.manifest file, the object file, resource script, vc80.idb, and mt.dep

  • webwize

    Ah crud, I was checking the wrong directory for the file. Whoops... Thanks :)

  • SteveS_MS

    It is impossible to say what is going on without more information: could you post the contents of the build.log file

  • Martha Wieczorek

    There could be several reasons for this. Are there any error messages Are you calling the linker What is in build.log file

  • ronnotel

    Command Lines
      
    Creating temporary file "c:\Documents and Settings\BLaptop\Desktop\loader\Release\RSP00000A31523776.rsp" with contents

    [
    /O2 /Ob1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_VC80_UPGRADE=0x0710" /D "_MBCS" /GF /FD /EHsc /MT /Gy /Fp".\Release/Loader.pch" /Fo".\Release/" /Fd".\Release/" /W3 /c /TP ".\Loader.cpp"

    ]
    Creating command line "cl.exe @"c:\Documents and Settings\BLaptop\Desktop\loader\Release\RSP00000A31523776.rsp" /nologo /errorReport:prompt"
    Creating command line "rc.exe /d "NDEBUG" /d "_VC80_UPGRADE=0x0710" /l 0x409 /fo".\Release/Loader.res" ".\Loader.rc""

    Creating temporary file "c:\Documents and Settings\BLaptop\Desktop\loader\Release\RSP00000B31523776.rsp" with contents
    [
    /OUT:"..\bin/Loader.exe" /INCREMENTAL:NO /MANIFEST /MANIFESTFILE:".\Release\Loader.exe.intermediate.manifest" /PDB:".\Release/Loader.pdb" /SUBSYSTEM:WINDOWS /MACHINE:X86
    shlwapi.lib Winmm.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib

    ".\Release\Loader.obj"

    ".\Release\Loader.res"

    ]
    Creating command line "link.exe @"c:\Documents and Settings\BLaptop\Desktop\loader\Release\RSP00000B31523776.rsp" /NOLOGO /ERRORREPORT:PROMPT"
    Creating temporary file "c:\Documents and Settings\BLaptop\Desktop\loader\Release\RSP00000C31523776.rsp" with contents

    [
    /outputresource:"..\bin\Loader
    .\Loader.cpp(489) : warning C4996: 'strncpy' was declared deprecated
    C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(156) : see declaration of 'strncpy'
    Message: 'This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'

    .\Loader.cpp(501) : warning C4996: 'fopen' was declared deprecated
    C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
    Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'

    .\Loader.cpp(512) : warning C4996: '_snprintf' was declared deprecated
    C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(339) : see declaration of '_snprintf'
    Message: 'This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'

    Compiling resources...
    Linking...
    Embedding manifest...
    Results
      
    Build log was saved at "file://c:\Documents and Settings\BLaptop\Desktop\loader\Release\BuildLog.htm"

    Loader - 0 error(s), 24 warning(s)

  • When I build, I get no exe