(cflags)
| 274 | return 0 |
| 275 | |
| 276 | def GCCC99Patch(cflags): |
| 277 | import building |
| 278 | gcc_version = building.GetDepend('GCC_VERSION_STR') |
| 279 | if gcc_version: |
| 280 | gcc_version = gcc_version.replace('"', '') |
| 281 | if VersionCmp(gcc_version, "4.8.0") == 1: |
| 282 | # remove -std=c99 after GCC 4.8.x |
| 283 | cflags = cflags.replace('-std=c99', '') |
| 284 | |
| 285 | return cflags |
| 286 | |
| 287 | def ReloadModule(module): |
| 288 | import sys |
nothing calls this directly
no test coverage detected