Hello,

Is anyone else compiling Fossil on Win7 x64 getting the following error?

$ make -f win/Makefile.mingw
gcc -o wbld/translate src/translate.c
wbld\\translate.exe src/add.c >wbld/add_.c
/bin/sh: wbldtranslate.exe: command not found
make: *** [wbld/add_.c] Error 127

This compilation was done in MinGW/MSYS with GCC v4.5.2.
Running the same compilation in Win7 x86, it works fine without any errors.

I made the following change to Makefile.mingw to make the compilation 
proceed:

326,329c326,329
< TRANSLATE   = $(subst /,\\,$(OBJDIR)/translate.exe)
< MAKEHEADERS = $(subst /,\\,$(OBJDIR)/makeheaders.exe)
< MKINDEX     = $(subst /,\\,$(OBJDIR)/mkindex.exe)
< VERSION     = $(subst /,\\,$(OBJDIR)/version.exe)
---
 > TRANSLATE   = $(OBJDIR)/translate.exe
 > MAKEHEADERS = $(OBJDIR)/makeheaders.exe
 > MKINDEX     = $(OBJDIR)/mkindex.exe
 > VERSION     = $(OBJDIR)/version.exe

Thanks in advance,
Arnel
_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to