shithub: MicroHs

Download patch

ref: 9c3ffcc548cbdc3611207f217005350830bc87e8
parent: 8e84f5f124437ddada60e8848d6bcef3aaa5a026
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Tue Sep 19 19:40:30 EDT 2023

Fix umhs target

--- a/Makefile
+++ b/Makefile
@@ -154,6 +154,7 @@
 ### Compress the binary (broken on MacOS)
 ###
 $(BIN)/umhs: $(BIN)/cmhs
+	rm -f $(BIN)/umhs
 	$(UPX) -o$(BIN)/umhs $(BIN)/cmhs
 ###
 ### Test that the compiler can bootstrap
--- a/TODO
+++ b/TODO
@@ -16,4 +16,4 @@
 * add Double primitive type
 * implement Data.Integer
 * add pretty printing library
-* implement import specs
+* reimplement Map with Adams trees
--