-
Notifications
You must be signed in to change notification settings - Fork 453
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #374 from github/multi-component-ghcide-setup
Multi component ghcide setup
- Loading branch information
Showing
6 changed files
with
88 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ tmp/ | |
*.hp | ||
*.prof | ||
*.pyc | ||
/hie.yaml | ||
|
||
/test.* | ||
/*.html | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
cradle: | ||
bios: | ||
program: script/ghci-flags | ||
dependency-program: script/ghci-flags-dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
#!/bin/bash | ||
# Computes the flags for ghcide to pass to ghci. You probably won’t be running this yourself, but rather ghcide will via configuration in hie.yaml. | ||
|
||
set -e | ||
|
||
cd $(dirname "$0")/.. | ||
|
||
root="$(pwd)" | ||
ghc_version="$(ghc --numeric-version)" | ||
|
||
if [ "$1" == "--builddir" ]; then | ||
repl_builddir="$2" | ||
shift 2 | ||
else | ||
repl_builddir=dist-newstyle | ||
fi | ||
|
||
echo "-O0" | ||
echo "-ignore-dot-ghci" | ||
|
||
echo "-outputdir $repl_builddir/build/x86_64-osx/ghc-$ghc_version/semantic-0.8.0.0/build" | ||
echo "-odir $repl_builddir/build/x86_64-osx/ghc-$ghc_version/semantic-0.8.0.0/build" | ||
echo "-hidir $repl_builddir/build/x86_64-osx/ghc-$ghc_version/semantic-0.8.0.0/build" | ||
echo "-stubdir $repl_builddir/build/x86_64-osx/ghc-$ghc_version/semantic-0.8.0.0/build" | ||
|
||
echo "-i$root/$repl_builddir/build/x86_64-osx/ghc-$ghc_version/semantic-0.8.0.0/build/autogen" | ||
|
||
echo "-I$root/$repl_builddir/build/x86_64-osx/ghc-$ghc_version/semantic-0.8.0.0/build/autogen" | ||
|
||
echo "-i$root/semantic-analysis/src" | ||
echo "-i$root/semantic-ast/src" | ||
echo "-i$root/semantic-core/src" | ||
echo "-i$root/semantic-java/src" | ||
echo "-i$root/semantic-json/src" | ||
echo "-i$root/semantic-python/src" | ||
echo "-i$root/semantic-tags/src" | ||
echo "-i$root/app" | ||
echo "-i$root/src" | ||
echo "-i$root/bench" | ||
echo "-i$root/test" | ||
|
||
echo "-optP-include" | ||
echo "-optP$root/$repl_builddir/build/x86_64-osx/ghc-$ghc_version/semantic-0.8.0.0/build/autogen/cabal_macros.h" | ||
|
||
echo "-hide-all-packages" | ||
|
||
# Emit package flags from the environment file, removing comments & prefixing with - | ||
cabal exec --builddir=$repl_builddir -v0 bash -- -c 'cat $GHC_ENVIRONMENT' | grep -v '^--' | sed -e 's/^/-/' | ||
|
||
echo "-XHaskell2010" | ||
echo "-XStrictData" | ||
|
||
echo "-Wwarn" | ||
|
||
echo "-Weverything" | ||
echo "-Wno-all-missed-specialisations" | ||
echo "-Wno-implicit-prelude" | ||
echo "-Wno-missed-specialisations" | ||
echo "-Wno-missing-import-lists" | ||
echo "-Wno-missing-local-signatures" | ||
echo "-Wno-monomorphism-restriction" | ||
echo "-Wno-name-shadowing" | ||
echo "-Wno-safe" | ||
echo "-Wno-unsafe" | ||
echo "-Wno-star-is-type" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
# Computes the paths to files causing changes to the ghci flags. You probably won’t be running this yourself, but rather ghcide will via configuration in hie.yaml. | ||
|
||
set -e | ||
|
||
cd $(dirname "$0")/.. | ||
|
||
echo "cabal.project" | ||
|
||
echo "semantic.cabal" | ||
echo "semantic-analysis/semantic-analysis.cabal" | ||
echo "semantic-ast/semantic-ast.cabal" | ||
echo "semantic-core/semantic-core.cabal" | ||
echo "semantic-java/semantic-java.cabal" | ||
echo "semantic-json/semantic-json.cabal" | ||
echo "semantic-python/semantic-python.cabal" | ||
echo "semantic-tags/semantic-tags.cabal" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters