mirror of
https://github.com/ivabus/pantry
synced 2024-11-13 03:55:18 +03:00
b0babf6b46
* add(crystal-lang) * move to bootstrap this always hurts * oops * linux needs explicit -z * linux not detecting the compiler well * Only shim build * needs ncurses * shim needs link flags for eval? * need link flags for test * maybe what eval needs is --static * the docs are wrong * this should do it, i think * perhaps static linkage * punt --------- Co-authored-by: Jacob Heider <jacob@tea.xyz> Co-authored-by: Jacob Heider <jacob@pkgx.dev>
10 lines
152 B
Bash
Executable file
10 lines
152 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cmd="$1"
|
|
shift
|
|
|
|
case "$cmd" in
|
|
build) crystal.bin "$cmd" --link-flags "${CRYSTAL_LINK_FLAGS:-}" "$@";;
|
|
*) crystal.bin "$cmd" "$@";;
|
|
esac
|