()
| 190 | |
| 191 | |
| 192 | def get_cpp_flags(): |
| 193 | default_flags = ['-std=c++11', '-fPIC', '-g', '-O2', '-Wall', '-pthread'] |
| 194 | # avx_flags = [ '-mavx'] #'-mf16c', |
| 195 | if sys.platform == 'darwin': |
| 196 | # Darwin most likely will have Clang, which has libc++. |
| 197 | return default_flags + ['-stdlib=libc++'] |
| 198 | else: |
| 199 | return default_flags |
| 200 | |
| 201 | |
| 202 | def generate_proto_files(): |
no outgoing calls
no test coverage detected