From bc3f67a88cf638abe5d6b0664c78eec0195572c6 Mon Sep 17 00:00:00 2001 From: Patrick Thomson Date: Mon, 27 Jan 2020 10:33:45 -0500 Subject: [PATCH] Noopt isn't the right thing here. --- script/ghci-flags | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/ghci-flags b/script/ghci-flags index b6fe54eb3..e61ec0116 100755 --- a/script/ghci-flags +++ b/script/ghci-flags @@ -27,11 +27,11 @@ function flags { # preprocessor options, for -XCPP echo "-optP-include" - echo "-optP$build_dir/semantic-0.10.0.0/noopt/build/autogen/cabal_macros.h" + echo "-optP$build_dir/semantic-0.10.0.0/build/autogen/cabal_macros.h" # autogenerated sources, both .hs and .h (e.g. Foo_paths.hs) - echo "-i$build_dir/semantic-0.10.0.0/noopt/build/autogen" - echo "-I$build_dir/semantic-0.10.0.0/noopt/build/autogen" + echo "-i$build_dir/semantic-0.10.0.0/build/autogen" + echo "-I$build_dir/semantic-0.10.0.0/build/autogen" # .hs source dirs # TODO: would be nice to figure this out from cabal.project & the .cabal files