Changeset e79a467 in sasview
- Timestamp:
- Dec 29, 2011 1:10:25 PM (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:
- aba60f4
- Parents:
- ebdb833
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
setup.py
rebdb833 re79a467 3 3 #TODO: Add checks to see that all the dependencies are on the system 4 4 """ 5 # [command] can be any of the following:6 # -nomp: no openmp: Use this flag; C-lib without openmp as well as numpy < 1.67 8 5 import sys 9 6 10 if len(sys.argv) == 1:11 sys.argv.append('install')12 7 import os 13 8 import platform … … 70 65 71 66 enable_openmp = True 72 if sys.argv[-1] == "-nomp": 73 # Disable OpenMP 74 enable_openmp = False 67 75 68 if sys.platform =='darwin' and not is_64bits: 76 69 # Disable OpenMP
Note: See TracChangeset
for help on using the changeset viewer.