From 24ee3100012f196105a5e2aeee8f2bd2df1b720d Mon Sep 17 00:00:00 2001 From: rdm Date: Wed, 15 Jan 2025 17:51:15 -0500 Subject: [PATCH] Note a preference of clang over gcc in some contexts README.md mentions overview.txt, which mentions make2/make.txt and the clang vs gcc issue has cropped up repeatedly, --- make2/make.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/make2/make.txt b/make2/make.txt index 327941c71..0927ccca2 100644 --- a/make2/make.txt +++ b/make2/make.txt @@ -42,6 +42,11 @@ jplatform=darwin j64x=j64avx2 ./build_libj.sh # this will run ./clean.sh and can detect the host platform ./build_all.sh +# NOTE: gcc is the standard for cc on linux systems, however +# updates to gcc may introduce problems. In that case you +# might prefer +CC=clang ./build_all.sh + # target apple m1 j64x=j64arm ./build_all.sh