[Git][cmucl/cmucl][master] MAke min version for OSX be 10.6
Raymond Toy pushed to branch master at cmucl / cmucl Commits: e1b7c55a by Raymond Toy at 2016-05-21T19:38:41-07:00 MAke min version for OSX be 10.6 Update compiler option to specify 10.6 as the min version. (I personally no longer have an version earlier than 10.11.) Fix ticket #19. - - - - - 1 changed file: - src/lisp/Config.x86_darwin Changes: ===================================== src/lisp/Config.x86_darwin ===================================== --- a/src/lisp/Config.x86_darwin +++ b/src/lisp/Config.x86_darwin @@ -2,9 +2,9 @@ include Config.x86_common -# Compile code that will run on OSX 10.5 (Tiger). This only works if -# you have the 10.5 SDK available. -MIN_VER = -mmacosx-version-min=10.5 +# Compile code that will run on OSX 10.6. This only works if +# you have the SDK available. +MIN_VER = -mmacosx-version-min=10.6 CPPFLAGS += -DDARWIN $(MIN_VER) -m32 CFLAGS += -g3 -mtune=generic View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/e1b7c55aa0df550edc39ea61a0...
participants (1)
-
Raymond Toy