From 005d07bafc4cf6f78632266e94a1a17cbec5eca3 Mon Sep 17 00:00:00 2001 From: Felicitas Pojtinger Date: Mon, 20 Dec 2021 18:45:21 +0100 Subject: [PATCH] build: Run `prepare` command natively to prevent trying to cross-compile the code generators --- Hydrunfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hydrunfile b/Hydrunfile index 4052916..f5daa15 100755 --- a/Hydrunfile +++ b/Hydrunfile @@ -11,6 +11,6 @@ curl -L -o /tmp/bagccgop "https://github.com/pojntfx/bagccgop/releases/latest/do install /tmp/bagccgop /usr/local/bin # Build -GOFLAGS='-gccgoflags=-static' bagccgop -x '(linux/alpha|linux/mipsle|linux/ppc|linux/sparc64|linux/riscv64)' -j1 -b stfs -r 'make depend' -s 'build-essential,automake' -m 'libsqlite3-dev' -p 'make build/stfs DST=$DST' -d out +GOFLAGS='-gccgoflags=-static' bagccgop -x '(linux/alpha|linux/mipsle|linux/arm$)' -j1 -b stfs -n -r 'make depend' -s 'build-essential,automake' -m 'libsqlite3-dev' -p 'make build/stfs DST=$DST' -d out exit 0