diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-03-30 21:41:54 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-03-31 10:10:31 -0400 |
| commit | 839d85e4405aef4856d1a35a6580226e997cc369 (patch) | |
| tree | 2c9456f935e132b5faaab84104e6af3aea9a1b92 /src/link.cpp | |
| parent | 45dc2587a395c02afb12f1781f3539d4bc77c225 (diff) | |
| download | zig-839d85e4405aef4856d1a35a6580226e997cc369.tar.gz zig-839d85e4405aef4856d1a35a6580226e997cc369.zip | |
fixes to 32-bit handling, to support 32-bit arm
Diffstat (limited to 'src/link.cpp')
| -rw-r--r-- | src/link.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/link.cpp b/src/link.cpp index ed6275ec3a..0d7a8a410b 100644 --- a/src/link.cpp +++ b/src/link.cpp @@ -651,6 +651,7 @@ static const char *build_libunwind(CodeGen *parent, Stage2ProgressNode *progress if (parent->is_single_threaded) { c_file->args.append("-D_LIBUNWIND_HAS_NO_THREADS"); } + c_file->args.append("-Wno-bitwise-conditional-parentheses"); c_source_files.append(c_file); } child_gen->c_source_files = c_source_files; |
