From 4ad987e94e9c22e954b468e44ff94f3d29755fe3 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Sun, 3 Oct 2010 08:42:37 +0000 Subject: [PATCH] 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. --- src/runtime/Config.x86-win32 | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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" -- 1.7.10.4