This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env -S deno run --allow-env --allow-net | |
import { Gitlab } from "npm:@gitbeaker/[email protected]"; | |
const api = new Gitlab({ | |
host: "https://gitlab.haskell.org", | |
token: Deno.env.get("GITLAB_TOKEN"), | |
}); | |
async function cancel(projectId, pipelineId) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd "$(mktemp -d)" | |
curl -f -L --retry 5 https://downloads.haskell.org/ghc/9.10.1/ghc-9.10.1-aarch64-alpine3_18-linux.tar.xz | tar xJ --strip-components=1 | |
perl -pi -e 'BEGIN { binmode(STDIN); binmode(STDOUT); } s/aarch64-alpine-linux\0/aarch64-unknown-linux/' lib/aarch64-linux-ghc-9.*/libHSghc-9.*.so | |
sed -i -e 's/alpine/unknown/' mk/project.mk | |
sed -i -e 's/alpine/unknown/' configure | |
sed -i -e 's/alpine/unknown/' lib/settings | |
./configure --prefix=$HOME/.local | |
make install -j16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/configure.py b/configure.py | |
index d03db1970f..45a53bec60 100755 | |
--- a/configure.py | |
+++ b/configure.py | |
@@ -1634,7 +1634,8 @@ def configure_library(lib, output, pkgname=None): | |
def configure_v8(o, configs): | |
set_configuration_variable(configs, 'v8_enable_v8_checks', release=1, debug=0) | |
- o['variables']['v8_enable_webassembly'] = 0 if options.v8_lite_mode else 1 | |
+ o['variables']['v8_enable_webassembly'] = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Failed to build basement-0.0.16. | |
Build log ( | |
/workspace/.ghc-wasm/.cabal/logs/ghc-9.11.20240918/basement-0.0.16-38a2e29ba85467680a122da498ba789199a6e5e72f561513cefaa7131a0a9068.log | |
): | |
Configuring library for basement-0.0.16... | |
Preprocessing library for basement-0.0.16... | |
In file included from Size.hsc:14: | |
cbits/foundation_system.h:57:5: error: "foundation: system: Unknown compiler" | |
57 | # error "foundation: system: Unknown compiler" | |
| ^ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/compiler/GHC/SysTools/Terminal.hs b/compiler/GHC/SysTools/Terminal.hs | |
index a3f60e24363..809079b4aea 100644 | |
--- a/compiler/GHC/SysTools/Terminal.hs | |
+++ b/compiler/GHC/SysTools/Terminal.hs | |
@@ -20,10 +20,10 @@ import System.IO.Unsafe | |
#if defined(mingw32_HOST_OS) && !defined(WINAPI) | |
# if defined(i386_HOST_ARCH) | |
# define WINAPI stdcall | |
-# elif defined(x86_64_HOST_ARCH) | |
+# elif defined(x86_64_HOST_ARCH) || defined(aarch64_HOST_ARCH) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE MagicHash #-} | |
{-# LANGUAGE UnboxedTuples #-} | |
{-# OPTIONS_GHC -feager-blackholing #-} | |
module Spark | |
( spark, | |
sparkST, | |
sparkList, | |
) | |
where |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-Wimplicit | |
-include | |
rts/include/ghcversion.h | |
-Irts/include | |
-I_build/stage1/rts/build | |
-I_build/stage1/rts/build/include | |
-Irts/include | |
-I_build/stage1/rts/build | |
-Irts | |
-I_build/stage1/rts/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Makefile b/Makefile | |
index 18d664f..6e59274 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -51,8 +51,8 @@ default: build | |
@echo "Use -fdebug-prefix-map=$(ROOT_DIR)=wasisdk://v$(VERSION)" | |
check: | |
- CC="clang --sysroot=$(BUILD_PREFIX)/share/wasi-sysroot -fno-strict-aliasing -msimd128 -mnontrapping-fptoint -msign-ext -mbulk-memory -mmutable-globals -mmultivalue -mreference-types -Xclang -target-abi -Xclang experimental-mv" \ | |
- CXX="clang++ --sysroot=$(BUILD_PREFIX)/share/wasi-sysroot -fno-exceptions -fno-exceptions -fno-strict-aliasing -msimd128 -mnontrapping-fptoint -msign-ext -mbulk-memory -mmutable-globals -mmultivalue -mreference-types -Xclang -target-abi -Xclang experimental-mv" \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
git update-ref -d refs/notes/perf | |
git notes prune | |
rmdir .git/logs/refs/notes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
allow-newer: | |
all:Cabal, | |
all:Cabal-syntax, | |
all:array, | |
all:base, | |
all:binary, | |
all:bytestring, | |
all:containers, | |
all:deepseq, | |
all:directory, |
NewerOlder