summaryrefslogtreecommitdiff
path: root/AK/Tests
diff options
context:
space:
mode:
authorjoshua stein <jcs@jcs.org>2020-01-01 20:03:06 -0600
committerAndreas Kling <awesomekling@gmail.com>2020-01-02 21:03:53 +0100
commitd61131945d15e64cdf7ab0a2cbe584a915599428 (patch)
tree9aff006bfc20d7a89e43ed09993d808da471f4f9 /AK/Tests
parentc6170070edc1c6cf3707620a1300ec96a8db32c9 (diff)
downloadserenity-d61131945d15e64cdf7ab0a2cbe584a915599428.zip
Build: HOST_CXX -> USE_HOST_CXX
Allow HOST_CXX to be passed to make which will be the actual host C++ compiler used, such as 'make HOST_CXX=clang++'.
Diffstat (limited to 'AK/Tests')
-rw-r--r--AK/Tests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/Tests/Makefile b/AK/Tests/Makefile
index 13581e0758..abede6c7ba 100644
--- a/AK/Tests/Makefile
+++ b/AK/Tests/Makefile
@@ -17,7 +17,7 @@ APPS = ${SRCS:.cpp=}
EXTRA_CLEAN = $(APPS) *.o
-HOST_CXX = 1
+USE_HOST_CXX = 1
include ../../Makefile.common