diff options
author | Neil Mitchell <ndmitchell@gmail.com> | 2019-01-16 11:21:00 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-01-30 10:06:31 -0500 |
commit | c85d708c36d6a362d45a4e47ae3fefe18120df89 (patch) | |
tree | 520929599d0de41bf2c385bf792db196e2d9ee86 | |
parent | 924a46075aa5d1835ea37b199f77d605cbc0cf05 (diff) | |
download | haskell-c85d708c36d6a362d45a4e47ae3fefe18120df89.tar.gz |
Avoid compiling Hadrian dependencies with profiling on Cabal/Linux
-rwxr-xr-x | hadrian/build.cabal.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hadrian/build.cabal.sh b/hadrian/build.cabal.sh index f28c3e0d14..13ef927f8e 100755 --- a/hadrian/build.cabal.sh +++ b/hadrian/build.cabal.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash CABAL=cabal -CABFLAGS="--disable-documentation --disable-profiling" +CABFLAGS="--disable-documentation --disable-profiling --disable-library-profiling" # It is currently more robust to pass Cabal an absolute path to the project file. PROJ="$PWD/hadrian/cabal.project" |