Skip to content

Commit 6248a00

Browse files
authored
Adjust Makefile for LLVM trunk (18) as of 2023-10-03 (#438)
llvm/llvm-project@457f582 added __FLT128_* macros.
1 parent d4dae89 commit 6248a00

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -748,6 +748,7 @@ check-symbols: startup_files libc
748748
@# TODO: Filter out __NO_MATH_ERRNO_ and a few __*WIDTH__ that are new to clang 14.
749749
@# TODO: Filter out __GCC_HAVE_SYNC_COMPARE_AND_SWAP_* that are new to clang 16.
750750
@# TODO: Filter out __FPCLASS_* that are new to clang 17.
751+
@# TODO: Filter out __FLT128_* that are new to clang 18.
751752
@# TODO: clang defined __FLT_EVAL_METHOD__ until clang 15, so we force-undefine it
752753
@# for older versions.
753754
@# TODO: Undefine __wasm_mutable_globals__ and __wasm_sign_ext__, that are new to
@@ -780,6 +781,7 @@ check-symbols: startup_files libc
780781
| grep -v '^#define __\(BOOL\|INT_\(LEAST\|FAST\)\(8\|16\|32\|64\)\|INT\|LONG\|LLONG\|SHRT\)_WIDTH__' \
781782
| grep -v '^#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_\(1\|2\|4\|8\)' \
782783
| grep -v '^#define __FPCLASS_' \
784+
| grep -v '^#define __FLT128_' \
783785
| grep -v '^#define NDEBUG' \
784786
| grep -v '^#define __OPTIMIZE__' \
785787
| grep -v '^#define assert' \

0 commit comments

Comments
 (0)