c++.command-line - Visual C++ 6.0 dsp project?
- Gerhard Wiesinger (17/17) Mar 17 2003 Hello!
- Walter (4/21) Mar 18 2003 DMC++ won't work directly with MSVC .dsp files, but usually will work wi...
Hello! Is it possible to compile an existing Microsoft Visual C++ 6.0 *.dsp project with all dependend projects to compile with the digital mars compiler? I tried it with a Makefile (*.mak exported from VC++ 6.0) but it does not work well. Error: unrecognized flag '/Gm' DM is the latest downloadable version. (non beta) Original command line is: Also MSDEV myproject.dsp /MAKE ALL /REBUILD does not work well. Also when myproject.dsp depends on anotherproject.dsp this should be compiled to. Thank you for the answer. Regards, Gerhard Wiesinger
Mar 17 2003
DMC++ won't work directly with MSVC .dsp files, but usually will work with the makefiles with some modification. Try just removing the /Gm switch. "Gerhard Wiesinger" <digitalmars wiesinger.com> wrote in message news:Pine.LNX.4.50.0303180856450.27613-100000 bbs.intern...Hello! Is it possible to compile an existing Microsoft Visual C++ 6.0 *.dsp project with all dependend projects to compile with the digital mars compiler? I tried it with a Makefile (*.mak exported from VC++ 6.0) but it does not work well. Error: unrecognized flag '/Gm' DM is the latest downloadable version. (non beta) Original command line is: Also MSDEV myproject.dsp /MAKE ALL /REBUILD does not work well. Also when myproject.dsp depends on anotherproject.dsp this should be compiled to. Thank you for the answer. Regards, Gerhard Wiesinger
Mar 18 2003