summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-07-18 16:16:00 +0100
committerGitHub <noreply@github.com>2019-07-18 16:16:00 +0100
commit7856d874c7a4073aeaca63531dc0e93ed26bd84a (patch)
tree39d55707a3ec1c019b6718558483c6ddf7acb3f9 /wscript
parente7647175268369b28e96d061dfcd4a3c2a39944d (diff)
parent027a9f2b4181ebe40819c2fa8cc911da46dbee95 (diff)
Merge pull request #4 from tschiemer/master
OpenMP selectable library + readme
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 4 insertions, 2 deletions
diff --git a/wscript b/wscript
index d35f0034..44d209e0 100644
--- a/wscript
+++ b/wscript
@@ -59,6 +59,7 @@ def options(opt):
opt.add_option('--disable-gcov', action='store_true', default=False, help='don''t use gcov in tests')
opt.add_option('--disable-examples', action='store_true', default=False, help='disable building of examples')
opt.add_option('--enable-openmp', action='store_true', default=False, help='enable use of OpenMP')
+ opt.add_option('--openmp', default='gomp', help='Specify OpenMP Library to use: omp, gomp (default), iomp..')
opt.add_option('--jpeg', default='oj2', help='specify JPEG library to build with: oj1 or oj2 for OpenJPEG 1.5.x or OpenJPEG 2.1.x respectively')
opt.add_option('--force-cpp11', action='store_true', default=False, help='force use of C++11')
@@ -94,7 +95,8 @@ def configure(conf):
if conf.options.enable_openmp:
conf.env.append_value('CXXFLAGS', ['-fopenmp', '-DLIBDCP_OPENMP'])
- conf.env.LIB_OPENMP = ['gomp']
+ conf.env.LIB_OPENMP = [conf.options.openmp]
+ conf.env.append_value('LDFLAGS', ['-l%s' % conf.options.openmp])
conf.check_cxx(cxxflags='-fopenmp', msg='Checking that compiler supports -fopenmp')
if not conf.env.TARGET_WINDOWS:
@@ -115,7 +117,7 @@ def configure(conf):
# ImageMagick / GraphicsMagick
if distutils.spawn.find_executable('Magick++-config'):
- conf.check_cfg(package='', path='Magick++-config', args='--cppflags --cxxflags --libs', uselib_store='MAGICK', mandatory=True)
+ conf.check_cfg(package='', path='Magick++-config', args='--cppflags --cxxflags --libs', uselib_store='MAGICK', mandatory=True, msg='Checking for ImageMagick/GraphicsMagick')
else:
image = conf.check_cfg(package='ImageMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=False)
graphics = conf.check_cfg(package='GraphicsMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=False)