From: Nikodemus Siivola Date: Sun, 3 Oct 2010 08:42:37 +0000 (+0000) Subject: 1.0.43.15: use gcc-3 compiler in Cygwin for runtime too X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=4ad987e94e9c22e954b468e44ff94f3d29755fe3;p=sbcl.git 1.0.43.15: use gcc-3 compiler in Cygwin for runtime too GCC-4.x can not compile with -mno-cygwin; running gcc -mno-cygwin prints a message advising to use mingw cross-compiler. Patch by Kalyanov Dmitry. --- diff --git a/src/runtime/Config.x86-win32 b/src/runtime/Config.x86-win32 index 2eac98b..b341808 100644 --- a/src/runtime/Config.x86-win32 +++ b/src/runtime/Config.x86-win32 @@ -34,7 +34,7 @@ CFLAGS = -g -Wall -O3 -mno-cygwin ASFLAGS = $(CFLAGS) CPP = cpp -CC = gcc +CC = gcc-3 LD = ld NM = nm diff --git a/version.lisp-expr b/version.lisp-expr index 0121a5e..5145eea 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.43.14" +"1.0.43.15"