From 762e755b1360a6d9b9a4d64194badea657787d00 Mon Sep 17 00:00:00 2001 From: "Justin C. Miller" Date: Thu, 23 Dec 2021 16:57:52 -0800 Subject: [PATCH] [build] Compensate for libc++ threads errors LLVM was updated by system update, and is now unhappy building because of libc++ threads settings. I'm explicitly turning them off in base.yml for now until I can focus on a better fix. --- configs/base.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/base.yaml b/configs/base.yaml index 4d917bc..46625e8 100644 --- a/configs/base.yaml +++ b/configs/base.yaml @@ -12,6 +12,8 @@ variables: "-I${source_root}/src/include", "-I${source_root}/src/include/x86_64", "-fcolor-diagnostics", + "-U__STDCPP_THREADS__", + "-D_LIBCPP_HAS_NO_THREADS", "-DVERSION_MAJOR=${version_major}", "-DVERSION_MINOR=${version_minor}", "-DVERSION_PATCH=${version_patch}",