From c2558c6611621ccec0fcf9583463a67fa01456e6 Mon Sep 17 00:00:00 2001 From: heck Date: Sat, 7 Sep 2024 01:31:32 +0200 Subject: [PATCH] devenv.sh: export CC, CXX, AR as full paths they should be the native toolchain (not cross compile or so...) --- bash_profile.d/devenv.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bash_profile.d/devenv.sh b/bash_profile.d/devenv.sh index 63ab378..8a69205 100644 --- a/bash_profile.d/devenv.sh +++ b/bash_profile.d/devenv.sh @@ -74,5 +74,9 @@ function heck_dev_env { heck_dev_prefix /Users/heck/local } +# GNU MAKE Special var for implicit rules +export CC=/opt/local/bin/clang +export CXX=/opt/local/bin/clang++ +export AR=/opt/local/bin/ar heck_dev_env \ No newline at end of file