Prof A Olowofoyeku (The African Chief) wrote:
On 16 May 2004 at 23:53, Frank Heckenbach wrote:
I have uploaded the first public beta version of GP to http://gnu-pascal.de/contrib/frank/misc/gp-0.54.tar.gz.
[...]
I get this error while trying to build under Mingw:
"gpc -c -O3 -g -W -Wall -Werror -Wfloat-equal --no-automake --unit- path=/src/mingw/gcc-3.2.3-20030504-1/build/gp-0.54 `cat needed-options` \mingw\bin..\lib\gcc-lib\mingw32\3.2.3\units/gpc.pas gpc.exe: mingwbin..libgcc-libmingw323.2.3units/gpc.pas: No such file or directory gpc.exe: no input files make: *** [gpc.o] Error 1"
The problem, as you can see, is the backspace used in Mingw (in the return value of "--print-file-name=units".
I've only taken care about it for DJGPP so far. Try putting the mingw target description instead of `i386-pc-msdosdjgpp' in line 107 of the Makefile:
ifeq ($(PLATFORM),i386-pc-msdosdjgpp)
Frank