File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ def build_extension(self, ext):
5757 # '-DPOLYFEM_THREADING=NONE',
5858 '-DPOLYFEM_NO_UI=ON' ,
5959 '-DPOLYSOLVE_WITH_AMGCL=OFF' ,
60- '-DPOLYSOLVE_WITH_MKL=OFF ' ,
60+ '-DPOLYSOLVE_WITH_MKL=ON ' ,
6161 '-DPOLYSOLVE_WITH_SPECTRA=OFF' ]
6262
6363 cfg = 'Debug' if self .debug else 'Release'
@@ -75,8 +75,9 @@ def build_extension(self, ext):
7575 build_args += ['--' , '-j{}' .format (n_threads )]
7676
7777 env = os .environ .copy ()
78- env ['CXXFLAGS' ] = '{} -DVERSION_INFO=\" {}\" ' .format (
79- env .get ('CXXFLAGS' , '' ), self .distribution .get_version ())
78+ # env['CXXFLAGS'] = '{} -DVERSION_INFO=\"{}\"'.format(
79+ # env.get('CXXFLAGS', ''), self.distribution.get_version())
80+ # print(env['CXXFLAGS'])
8081
8182 if not os .path .exists (self .build_temp ):
8283 os .makedirs (self .build_temp )
You can’t perform that action at this time.
0 commit comments