From ca63e38eacb4b74e48fe32037c53968c5c7498fc Mon Sep 17 00:00:00 2001 From: Liam Keegan Date: Tue, 15 Aug 2023 16:39:04 +0200 Subject: [PATCH] try to stop dpl from finding g++ --- build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.sh b/build.sh index beb2222..9036272 100755 --- a/build.sh +++ b/build.sh @@ -33,6 +33,10 @@ export CC=/usr/local/opt/llvm/bin/clang export CXX=/usr/local/opt/llvm/bin/clang++ # add dpl + +# hacky way to stop dpl from finding g++ and trying to set some libstdc++ thing +sudo rm $(which g++) + git clone --depth 1 https://github.com/oneapi-src/oneDPL cd oneDPL mkdir build