Changeset 0e307de in sasview
- Timestamp:
- Dec 21, 2011 9:35:40 AM (13 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 8b8a03f
- Parents:
- 490b281
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
setup.py
ra134fc6 r0e307de 30 30 ext_modules = [] 31 31 32 # Options to enable OpenMP 33 copt = {'msvc': ['/openmp'], 34 'mingw32' : ['-fopenmp'], 35 'unix' : ['-fopenmp']} 36 lopt = {'msvc': ['/MANIFEST'], 37 'mingw32' : ['-fopenmp'], 38 'unix' : ['-lgomp']} 32 if sys.argv[1] == "-nomp": 33 # Disnable OpenMP 34 copt = {} 35 lopt = {} 36 else: 37 # Options to enable OpenMP 38 copt = {'msvc': ['/openmp'], 39 'mingw32' : ['-fopenmp'], 40 'unix' : ['-fopenmp']} 41 lopt = {'msvc': ['/MANIFEST'], 42 'mingw32' : ['-fopenmp'], 43 'unix' : ['-lgomp']} 39 44 40 45 class build_ext_subclass( build_ext ): … … 243 248 # 'pil','periodictable>=1.3.0', 'scipy>=0.7.2'] 244 249 required = ['lxml','periodictable>=1.3.0'] 245 250 """ 246 251 if os.name=='nt': 247 252 #required.extend(['comtypes', 'pisa', 'html5lib', 'reportlab']) … … 251 256 else: 252 257 required.extend(['pil']) 253 258 """ 254 259 # Set up SansView 255 260 setup(
Note: See TracChangeset
for help on using the changeset viewer.