Fw: [ODE] How to compile the .libs under MSVC 6.0 step by step

Matthias Baas baas at ira.uka.de
Mon Feb 3 02:10:02 2003


At 17:31 02.02.2003 +0100, you wrote:
>i tried your little tutorial, but when i typed "make configure" a error
>appears:
>
>C:\ode-0.035>make configure
>cl /nologo /DWIN32 /DMSVC /DSHAREDLIBEXPORT= /DSHAREDLIBIMPORT= /DdDOUBLE
>/DdNO
>DEBUG  /Feconfigurator.exe configurator.c
>process_begin: CreateProcess((null), cl /nologo /DWIN32 /DMSVC
>/DSHAREDLIBEXPORT
>= /DSHAREDLIBIMPORT= /DdDOUBLE /DdNODEBUG /Feconfigurator.exe
>configurator.c, ..
>.) failed.
>make (e=2): Das System kann die angegebene Datei nicht finden.
>make: *** [configurator.exe] Error 2

In the makefile there's a line:

CONFIGURATOR_SRC=configurator.c

Change that to:

CONFIGURATOR_SRC=./configurator.c

This variable is also used to create the variable CONFIGURATOR_EXE which is 
used to invoke the configuration program.

I suppose the people who don't need this on Windows have "." somewhere in 
their PATH variable or they're using a different make tool (I'm using the 
one from cygwin).

- Matthias -