diff options
-rw-r--r-- | testsuite/mk/ghc-config.hs | 1 | ||||
-rw-r--r-- | testsuite/tests/rts/T11223/Makefile | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/mk/ghc-config.hs b/testsuite/mk/ghc-config.hs index 4ca3d3085c..84f1523fd5 100644 --- a/testsuite/mk/ghc-config.hs +++ b/testsuite/mk/ghc-config.hs @@ -28,6 +28,7 @@ main = do getGhcFieldOrDefault fields "GhcProfiled" "GHC Profiled" "NO" getGhcFieldProgWithDefault fields "AR" "ar command" "ar" getGhcFieldProgWithDefault fields "LLC" "LLVM llc command" "llc" + getGhcFieldProgWithDefault fields "TEST_CC" "C compiler command" "gcc" let pkgdb_flag = case lookup "Project version" fields of Just v diff --git a/testsuite/tests/rts/T11223/Makefile b/testsuite/tests/rts/T11223/Makefile index 49207040c7..c0d8420a38 100644 --- a/testsuite/tests/rts/T11223/Makefile +++ b/testsuite/tests/rts/T11223/Makefile @@ -6,7 +6,7 @@ include $(TOP)/mk/test.mk # Testing RTS linker object resolution # -CC=gcc +CC=$(TEST_CC) .PHONY: t_11223_simple_link t_11223_simple_link: |