Skip to content
Snippets Groups Projects
Commit d56fecd7 authored by Raymond Toy's avatar Raymond Toy
Browse files

Use gcc-4.2 explicitly in case Xcode4 is installed.

parent 71e768a8
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,12 @@
include Config.x86_common
# Use gcc-4.2 on Darwin in case someone has Xcode 4 installed.
# Currently there are bugs in cmucl that cause errors when using gcc
# from Xcode 4. Xcode 3 (for OSX 10.5 and 10.6) has gcc-4.2, so this
# shouldn't be a problem.
CC = gcc-4.2
# Compile code that will run on OSX 10.4 (Tiger)
MIN_VER = -mmacosx-version-min=10.4
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment