From ed33c5a22757e30838f5356df30f73660c838487 Mon Sep 17 00:00:00 2001 From: philip Date: Thu, 18 Jul 2019 12:05:26 +0200 Subject: omp library can be chosen --- wscript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'wscript') diff --git a/wscript b/wscript index 8084f354..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: -- cgit v1.2.3