mirror of
https://git.freebsd.org/src.git
synced 2026-01-11 19:57:22 +00:00
Upstream llvm compiles most of their subprojects with -std=c++17
explicitly, not -std=gnu++17. In gnu++17 mode, both clang and gcc define
the macro 'i386' on i386, which clashes with a namespace identifier in
contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/i386.h.
Since the default after
|
||
|---|---|---|
| .. | ||
| asan | ||
| asan-preinit | ||
| asan_cxx | ||
| asan_dynamic | ||
| asan_static | ||
| cfi | ||
| cfi_diag | ||
| dd | ||
| fuzzer | ||
| fuzzer_interceptors | ||
| fuzzer_no_main | ||
| include | ||
| msan | ||
| msan_cxx | ||
| profile | ||
| safestack | ||
| stats | ||
| stats_client | ||
| tsan | ||
| tsan_cxx | ||
| ubsan_minimal | ||
| ubsan_standalone | ||
| ubsan_standalone_cxx | ||
| xray | ||
| xray-basic | ||
| xray-fdr | ||
| xray-profiling | ||
| compiler-rt-vars.mk | ||
| Makefile | ||
| Makefile.inc | ||