c++ - LINK does not support + in names, even with quotes
- "Matthew" <matthew.hat stlsoft.dot.org> Feb 19 2004
- "Walter" <walter digitalmars.com> Feb 19 2004
The following fails:
link /noi .\C++.obj
,"..\..\..\bin\C++_dm.exe",,..\..\..\lib\recls_lib_dm.lib
as does:
link /noi ".\C++.obj"
Feb 19 2004
That's true. # also does not work in linker filenames. It's best to just not use special characters in filenames. "Matthew" <matthew.hat stlsoft.dot.org> wrote in message news:c13jae$2a3h$1 digitaldaemon.com...The following fails: link /noi .\C++.obj ,"..\..\..\bin\C++_dm.exe",,..\..\..\lib\recls_lib_dm.lib as does: link /noi ".\C++.obj"
Feb 19 2004








"Walter" <walter digitalmars.com>