Changes in / [51284ab:3636600]
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.appveyor.yml
r51284ab r3636600 3 3 4 4 environment: 5 6 global:7 CUSTOM64PATH: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin8 5 9 6 matrix: … … 44 41 45 42 install: 46 47 43 - ECHO "Installed SDKs:" 48 44 - ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\"" 49 45 50 46 - "SET PATH=%PYTHONDIR%;%PYTHONDIR%\\Scripts;%PATH%" 51 52 - if [%PYTHON_ARCH%]==[64] SET PATH=%CUSTOM64PATH%;%PATH%53 47 54 48 # Check that we have the expected version and architecture for Python … … 72 66 # clean before building python package 73 67 - python waf distclean 74 # build python module without using libaubio75 - pip wheel -v -v -v --wheel-dir=dist .76 68 # build, upload and install wheel (inspired by numpy's appveyor) 77 69 - ps: | -
python/lib/gen_external.py
r51284ab r3636600 75 75 cpp_cmd += ['-E'] 76 76 77 # On win-amd64 (py3.x), the default compiler is cross-compiling, from x86 78 # to amd64 with %WIN_SDK_ROOT%\x86_amd64\cl.exe, but using this binary as a 79 # pre-processor generates no output, so we use %WIN_SDK_ROOT%\cl.exe 80 # instead. 81 if len(cpp_cmd) > 1 and 'cl.exe' in cpp_cmd[-2]: 82 plat = os.path.basename(os.path.dirname(cpp_cmd[-2])) 83 if plat == 'x86_amd64': 84 print('workaround on win64 to avoid empty pre-processor output') 85 cpp_cmd[-2] = cpp_cmd[-2].replace('x86_amd64', '') 86 elif True in ['amd64' in f for f in cpp_cmd]: 87 print('warning: not using workaround for', cpp_cmd[0], plat) 88 77 89 if not cpp_cmd: 78 90 print("Warning: could not guess preprocessor, using env's CC")
Note: See TracChangeset
for help on using the changeset viewer.