|
From: Sam S. <sd...@gn...> - 2011-04-15 14:23:19
|
Hi, > * Elliott Slaughter <ryy...@tz...> [2011-04-14 17:43:10 -0700]: > > ../src/lispbibl.d:1986:21: fatal error: win32.c: No such file or directory this means that the compiler is trying to compile a native win32 version of clisp (which is obviously what you want) but makemake did not agree. > Here is the unabridged build log: http://pastebin.com/MMkrsEjV thanks for the log. it is very helpful. it shows that TOS (target OS) is set to unix instead of win32. if you add "-verbose" to the makemake invocation in the Makefile and do "make Makefile", you _should_ see something like this: # # host system: # hostname = "stnt067" # HSYS = "win32gcc" # HSYSOS = "win32gcc" # HOS = "win32" # host_cpu = "i686" # cpu = "i386" # host_os = "mingw32" # host = "i686-pc-mingw32" # # target system: # TSYS = "win32gcc" # TSYSOS = "win32gcc" # TOS = "win32" what do you see? the solution is to add "--with-mingw" to the top-level configure invocation or "--win32gcc" to the makemake invocation in Makefile. Good luck! -- Sam Steingold (http://sds.podval.org/) on CentOS release 5.5 (Final) X 11.0.60900031 http://jihadwatch.org http://ffii.org http://mideasttruth.com http://honestreporting.com http://iris.org.il http://pmw.org.il History doesn't repeat itself, but historians do repeat each other. |