Revision fa7c00477013e674c498af6773e51176a521ac15 authored by Paul Zimmermann on 20 November 2015, 12:42:51 UTC, committed by Paul Zimmermann on 20 November 2015, 12:42:51 UTC
1 parent a853543
Raw File
local.sh.macosx.x86_64
############################################################
# This is an example local.sh file for x86_64 i386
# machines running OS X

# Examples

# Darwin <hostname> 12.5.0 Darwin Kernel Version 12.5.0: \
# Sep 29 13:33:47 PDT 2013; \
# root:xnu-2050.48.12~1/RELEASE_X86_64 x86_64 i386 \
# MacBookPro9,2 Darwin


# Darwin <hostname> 13.2.0 Darwin Kernel Version 13.2.0: \
# Thu Apr 17 23:03:13 PDT 2014; \
# root:xnu-2422.100.13~1/RELEASE_X86_64 x86_64 i386 \
# MacBookPro9,2 Darwin


############################################################
# 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