From fe0f8ed65a2ac0c3fc064c7e3f1260bc6e52d776 Mon Sep 17 00:00:00 2001 From: Ben Gamari <ben@smart-cactus.org> Date: Fri, 24 Jan 2020 11:22:06 -0500 Subject: [PATCH] Use cc rather than gcc as default compiler This is the morally right thing to do and fixes FreeBSD, which ships only with clang. --- Common.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common.hs b/Common.hs index c2bfd90..915866a 100644 --- a/Common.hs +++ b/Common.hs @@ -21,7 +21,7 @@ die :: String -> IO a die s = hPutStr stderr s >> exitWith (ExitFailure 1) default_compiler :: String -default_compiler = "gcc" +default_compiler = "cc" ------------------------------------------------------------------------ -- Write the output files. -- GitLab