Changeset 1606b35 in sasview for run.py


Ignore:
Timestamp:
Nov 22, 2017 10:32:57 AM (6 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
56bc5e7
Parents:
3b0632f
Message:

Revert "use tinycc compiler from run.py on windows"

This reverts commit 3b0632fb72bf254fff73cf318c1fd17b7a911049.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • run.py

    r3b0632f r1606b35  
    115115    if True or not os.path.exists(build_path): 
    116116        import subprocess 
    117         build_cmd = [sys.executable, "setup.py", "build", "update"] 
    118         if os.name == 'nt': 
    119             build_cmd.append('--compiler=tinycc') 
    120         # need shell=True on windows to keep console box from popping up 
    121         shell = (os.name == 'nt') 
    122117        with cd(root): 
    123             subprocess.call(build_cmd, shell=shell) 
     118            subprocess.call((sys.executable, "setup.py", "build", "update"), shell=False) 
    124119 
    125120    # Put the source trees on the path 
Note: See TracChangeset for help on using the changeset viewer.