This is an annoying problem that I cannot get rid of:
Compiling...
04_60_54.c
Linking...
LINK : warning LNK4075: ignoring /EDITANDCONTINUE due to /DRIVER
specification
Creating library RTSS_Release\04_60_54.lib and object
RTSS_Release\04_60_54.exp
The MSDN library does not seem useful as written:
Edit and Continue applies to C/C++ programs only.
The following linker options disable Edit and Continue.
· Setting /OPT:REF, /OPT:ICF, or /INCREMENTAL:NO disables Edit and Continue with the following warning:
LINK : warning LNK4075: ignoring /EDITANDCONTINUE due to /OPT specification
· Setting /PROFILE, /ORDER, /RELEASE, or /FORCE disables Edit and Continue with this warning:
LINK : warning LNK4075: ignoring /INCREMENTAL due to /option
specification
· Setting any option that prevents the creation of a program
database (.PDB) file disables Edit and Continue with no specific
warning.
Yeah sure the above works with warnings above and I do not create .PDB
ie program debug file so why the warning? I believe the the purpose of
edit and continue is to give you the opportunity to modify the source
code when you have come to a BREAK whilst debbuging.
I can only conclude it may be something in project settings->link ->
project options:
6103ct.lib sapi.lib startupDllCrt.obj rtxlibcmt.lib oldnames.lib
rtapi_rtss.lib rtx_rtss.lib w32_dll.lib /nologo
/entry:"_RtapiDllEntryCRT@8" /pdb:none /machine:I386
/nodefaultlib:"libc" /nodefaultlib:"libcd" /nodefaultlib:"libcmt"
/nodefaultlib:"libcmtd" /out:"RTSS_Release\04_60_54.rtdll"
/libpath:"$(RtxDir)\lib" /libpath:"..\lib" /driver /align:0x20
/subsystem:native,4.00
OR
Project settings -> category GENERAL -> Project options:
/nologo /MT /W3 /GX /Ox /I "$(RtxDir)\include" /I "..\inc" /D "WIN32" /D
"UNDER_RTSS" /D "NDEBUG" /D "RELEASE" /FR"./" /Fp"./04_60_54.pch" /YX
/Fo"./" /Fd"./" /FD /c
Any ideas would be very welcomed.
Compiling...
04_60_54.c
Linking...
LINK : warning LNK4075: ignoring /EDITANDCONTINUE due to /DRIVER
specification
Creating library RTSS_Release\04_60_54.lib and object
RTSS_Release\04_60_54.exp
The MSDN library does not seem useful as written:
Edit and Continue applies to C/C++ programs only.
The following linker options disable Edit and Continue.
· Setting /OPT:REF, /OPT:ICF, or /INCREMENTAL:NO disables Edit and Continue with the following warning:
LINK : warning LNK4075: ignoring /EDITANDCONTINUE due to /OPT specification
· Setting /PROFILE, /ORDER, /RELEASE, or /FORCE disables Edit and Continue with this warning:
LINK : warning LNK4075: ignoring /INCREMENTAL due to /option
specification
· Setting any option that prevents the creation of a program
database (.PDB) file disables Edit and Continue with no specific
warning.
Yeah sure the above works with warnings above and I do not create .PDB
ie program debug file so why the warning? I believe the the purpose of
edit and continue is to give you the opportunity to modify the source
code when you have come to a BREAK whilst debbuging.
I can only conclude it may be something in project settings->link ->
project options:
6103ct.lib sapi.lib startupDllCrt.obj rtxlibcmt.lib oldnames.lib
rtapi_rtss.lib rtx_rtss.lib w32_dll.lib /nologo
/entry:"_RtapiDllEntryCRT@8" /pdb:none /machine:I386
/nodefaultlib:"libc" /nodefaultlib:"libcd" /nodefaultlib:"libcmt"
/nodefaultlib:"libcmtd" /out:"RTSS_Release\04_60_54.rtdll"
/libpath:"$(RtxDir)\lib" /libpath:"..\lib" /driver /align:0x20
/subsystem:native,4.00
OR
Project settings -> category GENERAL -> Project options:
/nologo /MT /W3 /GX /Ox /I "$(RtxDir)\include" /I "..\inc" /D "WIN32" /D
"UNDER_RTSS" /D "NDEBUG" /D "RELEASE" /FR"./" /Fp"./04_60_54.pch" /YX
/Fo"./" /Fd"./" /FD /c
Any ideas would be very welcomed.