Revision ed6651115e6404f3f89814221fd2070179d5e951 authored by Alexander Kruppa on 21 February 2014, 14:42:01 UTC, committed by Alexander Kruppa on 21 February 2014, 14:42:01 UTC
1 parent 5029caf
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