daml/.hie-bios
Moisés Ackerman ad123f9b22
Add da-hls helper (#13853)
* Add haskell-language-server executable

* Add da-hls alias

* strip prefixes in da_haskell_libraries

* Remove dev-env-provided ghcide

* Update mentions of 'ghcide' to 'hls'

changelog_begin
changelog_end
2022-05-12 10:53:10 +02:00

33 lines
886 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
hie_bios_flags() {
bazel build //compiler/damlc:damlc@ghci \
--output_groups=hie_bios \
--experimental_show_artifacts \
2>&1 \
| awk '
BEGIN { rts_opts = false }
/^>>>/ {
while ((getline line < substr($1, 4)) > 0) {
if (rts_opts) {
if (line == "-RTS") {
rts_opts = false
}
} else if (line == "+RTS") {
rts_opts = true
} else if (match(line, "-qg|-fexternal-interpreter")) {
} else if (match(line, "com_github_madler_zlib")) {
} else if (match(line, "grpc_haskell_core_cbits")) {
} else if (match(line, "-lmerged_cbits")) {
} else {
print line
}
}
}'
}
if [[ -z "${HIE_BIOS_OUTPUT-}" ]]; then
hie_bios_flags
else
hie_bios_flags >"$HIE_BIOS_OUTPUT"
fi