diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-02-01 17:49:29 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-02-01 18:05:54 -0500 |
| commit | 9b8e23934bc87f1fd6a42cdfdd551212994b6e58 (patch) | |
| tree | 0ac63357b6504f7bf44e66002b0ccca49dc64b45 /src/all_types.hpp | |
| parent | 8bedb10939b511e39787b2693249d2d3e8102854 (diff) | |
| download | zig-9b8e23934bc87f1fd6a42cdfdd551212994b6e58.tar.gz zig-9b8e23934bc87f1fd6a42cdfdd551212994b6e58.zip | |
introduce --single-threaded build option
closes #1764
This adds another boolean to the test matrix; hopefully it does not
inflate the time too much.
std.event.Loop does not work with this option yet. See #1908
Diffstat (limited to 'src/all_types.hpp')
| -rw-r--r-- | src/all_types.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/all_types.hpp b/src/all_types.hpp index f6fe72891d..3fc6772b31 100644 --- a/src/all_types.hpp +++ b/src/all_types.hpp @@ -1808,6 +1808,7 @@ struct CodeGen { bool is_static; bool strip_debug_symbols; bool is_test_build; + bool is_single_threaded; bool is_native_target; bool linker_rdynamic; bool no_rosegment_workaround; |
