Skip to content

Commit a796d87

Browse files
authored
Adjust Makefile for LLVM trunk (18) as of 2023-12-07 (#448)
llvm/llvm-project@4e80bc7 added __MEMORY_SCOPE_* macros.
1 parent 9c17f52 commit a796d87

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
@@ -760,6 +760,7 @@ check-symbols: startup_files libc
760760
@# TODO: Filter out __GCC_HAVE_SYNC_COMPARE_AND_SWAP_* that are new to clang 16.
761761
@# TODO: Filter out __FPCLASS_* that are new to clang 17.
762762
@# TODO: Filter out __FLT128_* that are new to clang 18.
763+
@# TODO: Filter out __MEMORY_SCOPE_* that are new to clang 18.
763764
@# TODO: clang defined __FLT_EVAL_METHOD__ until clang 15, so we force-undefine it
764765
@# for older versions.
765766
@# TODO: Undefine __wasm_mutable_globals__ and __wasm_sign_ext__, that are new to
@@ -793,6 +794,7 @@ check-symbols: startup_files libc
793794
| grep -v '^#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_\(1\|2\|4\|8\)' \
794795
| grep -v '^#define __FPCLASS_' \
795796
| grep -v '^#define __FLT128_' \
797+
| grep -v '^#define __MEMORY_SCOPE_' \
796798
| grep -v '^#define NDEBUG' \
797799
| grep -v '^#define __OPTIMIZE__' \
798800
| grep -v '^#define assert' \

0 commit comments

Comments
 (0)