Revision 3df61d16c51c6cbbe49ca3faabd2215e6061887f authored by Alexander Kruppa on 20 February 2014, 16:47:44 UTC, committed by Alexander Kruppa on 20 February 2014, 16:47:44 UTC
1 parent 744a265
Raw File
local.sh.macosx-10.8
############################################################
# This is an example local.sh file for a machine which says:
# Darwin <hostname> 12.5.0 Darwin Kernel Version 12.5.0: Sun
# Sep 29 13:33:47 PDT 2013; \
# root:xnu-2050.48.12~1/RELEASE_X86_64 x86_64 i386
# MacBookPro9,2 Darwin
#
# IOW a MacIntel with a 64-bit kernel running mountain lion (10.8.5)
#

############################################################
# The variables set below are specific to OSX.
# See local.sh.example for more configuration options, 
# notably CFLAGS and CXXFLAGS
############################################################


############################################################
# cado-nfs (Block Wiedemann code) fails on OSX with
# shared libraries. Only static library should be built.

DISABLE_SHARED=1


############################################################
# CC: C Compiler

# CC=gcc
CC=clang

############################################################
# CXX: C++ Compiler (cado-nfs contains a few C++ programs)

# CXX=g++
CXX=clang++

back to top