-
-
Notifications
You must be signed in to change notification settings - Fork 391
Initial Retrie plugin #266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 12 commits
047d832
e70d7e8
f8f58c9
0722bfd
5e0e798
6ff62c4
b8627c2
7eb593f
a25b1e3
231bf0c
4baf294
c00cca0
366e8b6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#ifndef GHC_API_VERSION_H | ||
#define GHC_API_VERSION_H | ||
|
||
#ifdef GHC_LIB | ||
#define MIN_GHC_API_VERSION(x,y,z) MIN_VERSION_ghc_lib(x,y,z) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this mean we can build hls with -fghc-lib now? That might solve the hlint ghc-lib mismatch issue @jneira There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know about that, I have never tried to build ghcide with ghc-lib. Ping @cocreature |
||
#else | ||
#define MIN_GHC_API_VERSION(x,y,z) MIN_VERSION_ghc(x,y,z) | ||
#endif | ||
|
||
#endif |
Uh oh!
There was an error while loading. Please reload this page.