(flags)
| 2275 | `with_cuda`: If we should be compiling with CUDA. |
| 2276 | """ |
| 2277 | def sanitize_flags(flags): |
| 2278 | if flags is None: |
| 2279 | return [] |
| 2280 | else: |
| 2281 | return [flag.strip() for flag in flags] |
| 2282 | |
| 2283 | cflags = sanitize_flags(cflags) |
| 2284 | post_cflags = sanitize_flags(post_cflags) |
no test coverage detected
searching dependent graphs…