Lines Matching +full:linux +full:- +full:intel
13 … txt = ' Single library: %s\n' % ('yes' if self.framework.argDB['with-single-library'] else 'no')
19 …ddArgument('PETSc', '-with-shared-libraries=<bool>', nargs.ArgBool(None, 1, 'Make PETSc libraries …
20 …help.addArgument('PETSc', '-with-serialize-functions=<bool>', nargs.ArgBool(None, 0, 'Allows funct…
34 '''if user specified out-dated 'with-shared' or 'with-dynamic' - flag an error'''
35 if 'with-shared' in self.framework.argDB:
36 raise RuntimeError('Option "--with-shared" no longer exists. Use "--with-shared-libraries".')
37 if 'with-dynamic' in self.framework.argDB or 'with-dynamic-loading' in self.framework.argDB:
38 raise RuntimeError('Option "--with-dynamic" and "--with-dynamic-loading" no longer exist.')
39 …if self.framework.argDB['with-shared-libraries'] and not self.framework.argDB['with-pic'] and 'wit…
40 raise RuntimeError('If you use --with-shared-libraries you cannot disable --with-pic')
42 # default with-shared-libraries=1 => --with-pic=1
44 …if self.framework.argDB['with-shared-libraries'] and not self.framework.argDB['with-pic']: self.fr…
49 - Specify --with-shared-libraries
50 - Have found a working shared linker
54 …self.useShared = self.framework.argDB['with-shared-libraries'] and not self.setCompilers.staticLib…
59 #elif '-qmkshrobj' in self.setCompilers.sharedLibraryFlags:
64 # Linux is the default
69 …L_LINKER_FUNCTION', '-dynamiclib -install_name $(call SONAME_FUNCTION,$(1),$(2)) -compatibility_ve…
73 self.addMakeMacro('SL_LINKER_FUNCTION', '-LD')
76 … # TODO: check that -Wl,-soname,${LIBNAME}.${SL_LINKER_SUFFIX} can be passed (might fail on Intel)
81 …self.addMakeMacro('SL_LINKER_FUNCTION', self.framework.getSharedLinkerFlags() + ' -Wl,-soname,$(ca…
91 self.logPrint('Shared libraries - disabled')
106 if self.framework.argDB['with-serialize-functions'] and self.setCompilers.dynamicLibraries: