| 96 | |
| 97 | |
| 98 | def print_compiler_options(): |
| 99 | compiler = get_compiler() |
| 100 | print("build_cpp_projects.py] Shared macros:") |
| 101 | pprint(MACROS, indent=3, width=160) |
| 102 | print("[build_cpp_projects.py] cefpython_app library macros:") |
| 103 | pprint(cefpython_app_MACROS, indent=3, width=160) |
| 104 | print("[build_cpp_projects.py] subprocess executable macros:") |
| 105 | pprint(subprocess_MACROS, indent=3, width=160) |
| 106 | print("[build_cpp_projects.py] Compiler options:") |
| 107 | pprint(vars(compiler), indent=3, width=160) |
| 108 | |
| 109 | |
| 110 | def get_compiler(static=False): |