Skip to content
Snippets Groups Projects
Commit 59182b88 authored by Javier Neira 's avatar Javier Neira Committed by Marge Bot
Browse files

Honour previous values for CABAL and CABFLAGS

The immediate goal is let the hie-bios.bat script
set CABFLAGS with `-v0` and remove all cabal output
except the compiler arguments
parent 63d30e60
No related branches found
No related tags found
No related merge requests found
@echo off
set CABAL=cabal
set CABFLAGS=--disable-documentation --disable-profiling --disable-library-profiling
if "%CABAL%"=="" (
set CABAL=cabal
)
if "%CABFLAGS%"=="" (
set CABFLAGS=--disable-documentation --disable-profiling --disable-library-profiling
)
rem It is currently more robust to pass Cabal an absolute path to the project file.
set PROJ="%CD%/hadrian/cabal.project"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment