blob: 8fbb300caa1069079c4105bb18602b370c9dae0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-- | Linker configuration
module GHC.Linker.Config
( FrameworkOpts(..)
) where
import GHC.Prelude
-- used on darwin only
data FrameworkOpts = FrameworkOpts
{ foFrameworkPaths :: [String]
, foCmdlineFrameworks :: [String]
}
|