Changeset 61e9d99 for python/lib
- Timestamp:
- Nov 1, 2018, 1:08:50 AM (6 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
- Children:
- fedb139
- Parents:
- 2410f57a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/lib/gen_external.py
r2410f57a r61e9d99 4 4 import subprocess 5 5 import glob 6 from distutils.sysconfig import customize_compiler 7 from gen_code import MappedObject 6 8 7 9 header = os.path.join('src', 'aubio.h') … … 50 52 def get_preprocessor(): 51 53 # findout which compiler to use 52 from distutils.sysconfig import customize_compiler53 54 compiler_name = distutils.ccompiler.get_default_compiler() 54 55 compiler = distutils.ccompiler.new_compiler(compiler=compiler_name) … … 263 264 264 265 sources_list = [] 265 try:266 from .gen_code import MappedObject267 except (SystemError, ValueError):268 from gen_code import MappedObject269 266 for o in lib: 270 267 out = source_header
Note: See TracChangeset
for help on using the changeset viewer.