[project @ 2000-09-29 15:59:28 by sewardj]
[ghc-hetmet.git] / ghc / compiler / ghci / CmStaticInfo.lhs
1 %
2 % (c) The AQUA Project, Glasgow University, 1993-2000
3 %
4 \section[CmStaticInfo]{Session-static info for the Compilation Manager}
5
6 \begin{code}
7 module CmStaticInfo ( FLAGS, PCI, 
8                       mkSI, SI -- abstract
9                     )
10 where
11
12 #include "HsVersions.h"
13
14 \end{code}
15
16 \begin{code}
17 type FLAGS = [String]       -- or some such fiction
18 type PCI = [PkgConfig]
19 data PkgConfig = PkgConfig   -- add details here
20
21 data SI = MkSI FLAGS PCI
22
23 mkSI :: FLAGS -> PCI -> SI
24 mkSI = MkSI
25
26
27 \end{code}