mirror of https://github.com/KLayout/klayout.git
testing new compile flags
This commit is contained in:
parent
5dcc01f0f3
commit
a2e357cf9c
|
|
@ -86,6 +86,7 @@ matrix:
|
||||||
- PYTHON_BUILD=true
|
- PYTHON_BUILD=true
|
||||||
- BREW_BUNDLE=false
|
- BREW_BUNDLE=false
|
||||||
- CC=clang
|
- CC=clang
|
||||||
|
- CXX=clang++
|
||||||
|
|
||||||
- name: "klayout python3.6 package"
|
- name: "klayout python3.6 package"
|
||||||
os: linux
|
os: linux
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -149,7 +149,7 @@ class Config(object):
|
||||||
return []
|
return []
|
||||||
else:
|
else:
|
||||||
return ["-Wno-strict-aliasing", # Avoids many "type-punned pointer" warnings
|
return ["-Wno-strict-aliasing", # Avoids many "type-punned pointer" warnings
|
||||||
"-std=c++0x", # because we use unordered_map/unordered_set
|
"-std=c++11", # because we use unordered_map/unordered_set
|
||||||
]
|
]
|
||||||
|
|
||||||
def link_args(self, mod):
|
def link_args(self, mod):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue