testing new compile flags

This commit is contained in:
Thomas Ferreira de Lima 2018-10-08 01:20:17 -04:00
parent 5dcc01f0f3
commit a2e357cf9c
No known key found for this signature in database
GPG Key ID: 43E98870EAA0A86E
2 changed files with 2 additions and 1 deletions

View File

@ -86,6 +86,7 @@ matrix:
- PYTHON_BUILD=true
- BREW_BUNDLE=false
- CC=clang
- CXX=clang++
- name: "klayout python3.6 package"
os: linux

View File

@ -149,7 +149,7 @@ class Config(object):
return []
else:
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):