Disabling OpenMP for good on OS X

This commit is contained in:
DennisOSRM 2012-02-27 13:09:19 +01:00
parent fdb4198c0d
commit 25d15fe2af

View File

@ -216,6 +216,8 @@ protobld = Builder(action = 'protoc -I=DataStructures/pbf-proto --cpp_out=DataSt
env.Append(BUILDERS = {'Protobuf' : protobld})
osm1 = env.Protobuf('DataStructures/pbf-proto/fileformat.proto')
osm2 = env.Protobuf('DataStructures/pbf-proto/osmformat.proto')
if sys.platform != 'darwin':
env.Append(CCFLAGS = ['-fopenmp'])
env.Append(LINKFLAGS = ['-fopenmp'])