Skip to content
Snippets Groups Projects
Unverified Commit 640c0cfc authored by Mike Hommey's avatar Mike Hommey Committed by GitHub
Browse files

Adjust Makefile for LLVM trunk (20) as of 2025-01-26 (#564)

parent f1c557ce
No related branches found
No related tags found
No related merge requests found
......@@ -890,6 +890,7 @@ check-symbols: $(STARTUP_FILES) libc
@# TODO: Filter out __GCC_(CON|DE)STRUCTIVE_SIZE that are new to clang 19.
@# TODO: Filter out __STDC_EMBED_* that are new to clang 19.
@# TODO: Filter out __*_NORM_MAX__ that are new to clang 19.
@# TODO: Filter out __INT*_C() that are new to clang 20.
@# TODO: clang defined __FLT_EVAL_METHOD__ until clang 15, so we force-undefine it
@# for older versions.
@# TODO: Undefine __wasm_mutable_globals__ and __wasm_sign_ext__, that are new to
......@@ -940,6 +941,7 @@ check-symbols: $(STARTUP_FILES) libc
| grep -v '^#define __OPTIMIZE__' \
| grep -v '^#define assert' \
| grep -v '^#define __NO_INLINE__' \
| grep -v '^#define __U\?INT.*_C(' \
> "$(SYSROOT_SHARE)/predefined-macros.txt"
# Check that the computed metadata matches the expected metadata.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment