From 474350c602c8e5fdab2a8c839b5e17c29c5011d5 Mon Sep 17 00:00:00 2001 From: Farid Zakaria Date: Mon, 26 Jun 2023 16:32:07 +0000 Subject: [PATCH] wip --- Makefile | 1 + third_party/libcxx/atomic | 2 +- third_party/third_party.mk | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d79899489..6f892e44d 100644 --- a/Makefile +++ b/Makefile @@ -199,6 +199,7 @@ include third_party/zip/zip.mk include third_party/xxhash/xxhash.mk include third_party/unzip/unzip.mk include tool/build/lib/buildlib.mk +include third_party/mold/mold.mk include third_party/chibicc/chibicc.mk include third_party/chibicc/test/test.mk include third_party/python/python.mk diff --git a/third_party/libcxx/atomic b/third_party/libcxx/atomic index 07ee818ef..1fed091a9 100644 --- a/third_party/libcxx/atomic +++ b/third_party/libcxx/atomic @@ -803,7 +803,7 @@ bool __cxx_atomic_compare_exchange_weak( } template -_LIBCPP_INLINE_VISIBILITY +_LIBCPP_INLINE_VISIBILITY inline bool __cxx_atomic_compare_exchange_weak( __cxx_atomic_base_impl<_Tp>* __a, _Tp* __expected, _Tp __value, memory_order __success, memory_order __failure) { diff --git a/third_party/third_party.mk b/third_party/third_party.mk index 5be7aa6f4..5cf31323e 100644 --- a/third_party/third_party.mk +++ b/third_party/third_party.mk @@ -6,6 +6,7 @@ o/$(MODE)/third_party: \ o/$(MODE)/third_party/argon2 \ o/$(MODE)/third_party/awk \ o/$(MODE)/third_party/bzip2 \ + o/$(MODE)/third_party/mold \ o/$(MODE)/third_party/chibicc \ o/$(MODE)/third_party/compiler_rt \ o/$(MODE)/third_party/ctags \