I see this used often to make modules compatible with GHC and Hugs, but google is not helping me learn more about it.
What can I put inside the conditional? Can I make parts of a module conditional on what version of 'base' is in use?
|
I see this used often to make modules compatible with GHC and Hugs, but google is not helping me learn more about it. What can I put inside the conditional? Can I make parts of a module conditional on what version of 'base' is in use? |
||||
|
|
|
The GHC documentation has a section relating to the C pre-processor that documents some of the predefined pre-processor macros. The Cabal documentation has a section relating to conditional compilation that gives an example relating to |
||||
|
|
|
In addition to the very useful flags defined by GHC (OS, architecture, etc), when using cabal other flags and macros are defined. Check Package Versions Here's a use from crypto-api that checks the version of the
Custom CPP Defines Based on Cabal Flags You can define CPP symbols dependent on cabal flags. Here's an (unnecessarily complex) example from pureMD5 (from the .cabal file):
Inside the
For more information you can see the Cabal users guide. This page has the "conditional compilation" information you're probably looking for. |
||||
|
|
|
Many programs that deal with Haskell code set some macros for the preprocessor (eg. GHC sets |
|||
|
|
|
If you run your Haskell compiler with the Take a look at the section 4.11.3. Options affecting the C pre-processor here. |
|||
|
|