diff options
author | Ayke van Laethem <[email protected]> | 2024-06-23 14:42:25 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-08-17 11:49:14 +0200 |
commit | 560fd0a558772d73ca9b7f26459447e709b515a6 (patch) | |
tree | 4ff3ea4c5377c44101892edecec5e547d8250c89 /GNUmakefile | |
parent | b8048112df62edfba34e7c22977845179a4b1c31 (diff) | |
download | tinygo-560fd0a558772d73ca9b7f26459447e709b515a6.tar.gz tinygo-560fd0a558772d73ca9b7f26459447e709b515a6.zip |
unique: implement custom version of unique package
This version probably isn't as fast as the upstream version, but it is
good enough for now. It also doesn't free unreferenced handles like the
upstream version.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index aaaf130d9..1fe2a5a6c 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -344,6 +344,7 @@ TEST_PACKAGES_FAST = \ unicode \ unicode/utf16 \ unicode/utf8 \ + unique \ $(nil) # Assume this will go away before Go2, so only check minor version. |