shithub: MicroHs

Download patch

ref: 7209ff13b10044aecbcaf91ed4a2ff9e039b78e7
parent: 0a8d30070d8a79e07615a58ef9567b0dbcb71d94
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Wed Nov 1 05:52:17 EDT 2023

Get rid of warning.

--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,7 @@
 ### Build the compiler with ghc, using standard libraries (Prelude, Data.List, etc)
 ###
 $(BIN)/$(MHS):	src/*.hs src/*/*.hs $(TOOLS)/convertX.sh
-	$(GHCE) -ighc -isrc -Wall -Wno-x-partial -O src/MicroHs/Main.hs -main-is MicroHs.Main -o $(BIN)/$(MHS)
+	$(GHCE) -ighc -isrc -Wall -Wno-unrecognised-warning-flags -Wno-x-partial -O src/MicroHs/Main.hs -main-is MicroHs.Main -o $(BIN)/$(MHS)
 
 ###
 ### Build the compiler with ghc, using MicroHs libraries (Prelude, Data.List, etc)
--