FreeBSD Bugzilla – Attachment 192349 Details for
Bug 196899
[arm] lang/ghc porting project, marked as i386/amd64 only
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch
lang_ghc.diff (text/plain), 104.68 KB, created by
Mikael Urankar
on 2018-04-08 18:41:31 UTC
(
hide
)
Description:
patch
Filename:
MIME Type:
Creator:
Mikael Urankar
Created:
2018-04-08 18:41:31 UTC
Size:
104.68 KB
patch
obsolete
>Index: Templates/config.guess >=================================================================== >--- Templates/config.guess (revision 462213) >+++ Templates/config.guess (working copy) >@@ -823,6 +823,17 @@ > *:BSD/OS:*:*) > echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} > exit ;; >+ arm*:FreeBSD:*:*) >+ UNAME_PROCESSOR=`/usr/bin/uname -p` >+ eval $set_cc_for_build >+ if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ >+ | grep -q __ARM_PCS_VFP >+ then >+ echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnueabi >+ else >+ echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnueabihf >+ fi >+ exit ;; > *:FreeBSD:*:*) > UNAME_PROCESSOR=`/usr/bin/uname -p` > echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` >Index: Templates/config.sub >=================================================================== >--- Templates/config.sub (revision 462213) >+++ Templates/config.sub (working copy) >@@ -127,6 +127,10 @@ > os=-linux-android > basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown > ;; >+ freebsd*-gnueabi*) >+ os=-$maybe_os >+ basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` >+ ;; > *) > basic_machine=`echo $1 | sed 's/-[^-]*$//'` > if [ $basic_machine != $1 ] >Index: lang/ghc/Makefile >=================================================================== >--- lang/ghc/Makefile (revision 466812) >+++ lang/ghc/Makefile (working copy) >@@ -3,7 +3,6 @@ > > PORTNAME= ghc > PORTVERSION= ${GHC_VERSION} >-PORTREVISION= 3 > CATEGORIES= lang haskell > MASTER_SITES= http://www.haskell.org/ghc/dist/${PORTVERSION}/:source \ > LOCAL/pgj/:boot >@@ -15,9 +14,9 @@ > LICENSE= BSD3CLAUSE > LICENSE_FILE= ${WRKSRC}/LICENSE > >-ONLY_FOR_ARCHS= i386 amd64 >+ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386 > >-GHC_VERSION= 8.0.2 >+GHC_VERSION= 8.4.1 > HSCOLOUR_VERSION= 1.24.1 > > DATADIR= ${PREFIX}/share/ghc-${GHC_VERSION} >@@ -94,9 +93,26 @@ > DISTFILES+= ghc-${BOOT_GHC_VERSION}-boot-${ARCH}-freebsd${EXTRACT_SUFX}:boot > .endif # MBOOT > >-CONFIGURE_ARGS+= -with-gcc=${CC} >+.if ${ARCH} == aarch64 || ${ARCH} == armv6 || ${ARCH} == armv7 >+BUILD_DEPENDS+= ${LOCALBASE}/bin/ld.gold:devel/binutils \ >+ llc50:devel/llvm50 >+RUN_DEPENDS+= ${LOCALBASE}/bin/ld.gold:devel/binutils \ >+ llc50:devel/llvm50 >+BOOT_GHC_VERSION= 8.4.1 >+# XXX test with clang on arm >+USE_GCC= yes >+.endif >+ >+# on arm CONFIGURE_TARGET must to be the same as the llvm triple >+.if ${ARCH} == aarch64 >+CONFIGURE_TARGET= aarch64-unknown-freebsd${OSREL} >+.elif ${ARCH} == armv6 || ${ARCH} == armv7 >+CONFIGURE_TARGET= ${ARCH}-unknown-freebsd${OSREL}-gnueabihf >+.endif >+ >+CONFIGURE_ARGS+= CC=${CC} > .if empty(PORT_OPTIONS:MBOOT) >-CONFIGURE_ARGS_BOOT+= --with-gcc=${CC} >+CONFIGURE_ARGS_BOOT+= CC=${CC} > .endif > > DOCSDIR= ${PREFIX}/share/doc/${DISTNAME} >@@ -156,7 +172,8 @@ > .endif # MDOCS > > post-extract: >-.if empty(PORT_OPTIONS:MBOOT) && ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200031 >+.if empty(PORT_OPTIONS:MBOOT) && ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200031 && \ >+ ${ARCH} != aarch64 && ${ARCH} != armv6 && ${ARCH} != armv7 > @${REINPLACE_CMD} -e 's|@SettingsCCompilerLinkFlags@|& -Wl,--wrap=readdir_r,--wrap=stat,--wrap=lstat,--wrap=fstat,--wrap=mknod|' ${BOOT_DIR}/settings.in > .endif > >@@ -189,6 +206,14 @@ > s|%%AR%%|${AR}|; \ > s|%%LD%%|${LD}|' \ > ${WRKSRC}/libraries/Cabal/Cabal/Distribution/Simple/Program/Builtin.hs >+# XXX must use binutils:ld on arm (base linker is too old) >+# XXX not tested on amd64 >+ @${REINPLACE_CMD} -e 's|LOCALBASE|${PREFIX}|' \ >+ ${WRKSRC}/aclocal.m4 >+.if ${ARCH} == aarch64 || ${ARCH} == armv6 || ${ARCH} == armv7 >+ @${REINPLACE_CMD} -e 's|OSREL|${OSREL}|' \ >+ ${WRKSRC}/llvm-targets >+.endif > > pre-configure: apply-slist > # Copy the subbed build.mk to the proper position >@@ -196,7 +221,8 @@ > > @${MKDIR} ${TMPDIR} > .if empty(PORT_OPTIONS:MBOOTH) && ${OPSYS} == FreeBSD && \ >- ${OSVERSION} >= 1200031 >+ ${OSVERSION} >= 1200031 && \ >+ ${ARCH} != aarch64 && ${ARCH} != armv6 && ${ARCH} != armv7 > ${CC} ${CFLAGS} -c -o ${BOOT_DIR}/wrap.o ${PATCHDIR}/wrap.c > for x in ${BOOT_DIR}/rts/dist/build/libCffi*.a; do \ > ${AR} q $$x ${BOOT_DIR}/wrap.o; ${RANLIB} $$x; \ >@@ -230,8 +256,7 @@ > ${SLAVE_CMD} ./Setup install) > .endif > >-_EXECUTABLES= ${STAGEDIR}${PREFIX}/bin/hp2ps \ >- ${GHC_LIBDIR}/bin/unlit \ >+_EXECUTABLES= ${GHC_LIBDIR}/bin/unlit \ > ${GHC_LIBDIR}/bin/hpc \ > ${GHC_LIBDIR}/bin/ghc-iserv \ > ${GHC_LIBDIR}/bin/ghc-pkg \ >Index: lang/ghc/distinfo >=================================================================== >--- lang/ghc/distinfo (revision 462213) >+++ lang/ghc/distinfo (working copy) >@@ -1,6 +1,6 @@ > TIMESTAMP = 1499672924 >-SHA256 (ghc-8.0.2-src.tar.xz) = 11625453e1d0686b3fa6739988f70ecac836cadc30b9f0c8b49ef9091d6118b1 >-SIZE (ghc-8.0.2-src.tar.xz) = 10687760 >+SHA256 (ghc-8.4.1-src.tar.xz) = 39ae2f25192408f355693e5a3c8b6ff613ddb7c4da998fdf26210143a61839d2 >+SIZE (ghc-8.4.1-src.tar.xz) = 11301528 > SHA256 (ghc-7.10.2-boot-i386-freebsd.tar.xz) = 5cadd55316fe6c1bf275d0f44f10b46342096922a15ecb9fb78c80fc293f901a > SIZE (ghc-7.10.2-boot-i386-freebsd.tar.xz) = 39858716 > SHA256 (ghc-7.10.2-boot-amd64-freebsd.tar.xz) = 4af0ee0795537baa11a96fba23477f8390ccb5f45910cda119d0a16bdebaedc8 >@@ -7,3 +7,9 @@ > SIZE (ghc-7.10.2-boot-amd64-freebsd.tar.xz) = 49833224 > SHA256 (hscolour-1.24.1.tar.gz) = e46fe3de8ed6f96e2216b94b7608d01919bc86b15dd8d0ec7e71c0e7e5bf79c8 > SIZE (hscolour-1.24.1.tar.gz) = 28717 >+SHA256 (ghc-8.4.1-boot-aarch64-unknown-freebsd.tar.xz) = 1f8ae4ec0a13235c41ac878e2c7d59ea1bcb535465f80709c7acda8575dcbda7 >+SIZE (ghc-8.4.1-boot-aarch64-unknown-freebsd.tar.xz) = 98209056 >+SHA256 (ghc-8.4.1-boot-armv6-unknown-freebsd.tar.xz) = 024170705b84e49cb66714dd62febd6a67aa48afe9be00e03702d751c74076fe >+SIZE (ghc-8.4.1-boot-armv6-unknown-freebsd.tar.xz) = 107810448 >+SHA256 (ghc-8.4.1-boot-armv7-unknown-freebsd.tar.xz) = 3b66c452b29c5c4879ae6006a09aa0d0fc49b76fc5472bb293a8cc6d9b61435f >+SIZE (ghc-8.4.1-boot-armv7-unknown-freebsd.tar.xz) = 110331164 >Index: lang/ghc/files/patch-aclocal.m4 >=================================================================== >--- lang/ghc/files/patch-aclocal.m4 (nonexistent) >+++ lang/ghc/files/patch-aclocal.m4 (working copy) >@@ -0,0 +1,106 @@ >+--- aclocal.m4.orig 2018-03-02 23:34:29 UTC >++++ aclocal.m4 >+@@ -648,6 +648,14 @@ AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], >+ $3="$$3 -D_HPUX_SOURCE" >+ $5="$$5 -D_HPUX_SOURCE" >+ ;; >++ arm*freebsd*) >++ # On arm/freebsd, tell gcc to generate Arm >++ # instructions (ie not Thumb) and to link using the gold linker. >++ # Forcing LD to be ld.gold is done in FIND_LD m4 macro. >++ $2="$$2 -marm" >++ $3="$$3 -Wl,-z,noexecstack" >++ $4="$$4 -z noexecstack" >++ ;; >+ arm*linux*) >+ # On arm/linux and arm/android, tell gcc to generate Arm >+ # instructions (ie not Thumb). >+@@ -656,6 +664,11 @@ AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], >+ $4="$$4 -z noexecstack" >+ ;; >+ >++ aarch64*freebsd*) >++ $3="$$3 -Wl,-z,noexecstack" >++ $4="$$4 -z noexecstack" >++ ;; >++ >+ aarch64*linux*) >+ $3="$$3 -Wl,-z,noexecstack" >+ $4="$$4 -z noexecstack" >+@@ -1087,7 +1100,7 @@ AC_DEFUN([FP_PROG_AR], >+ fp_prog_ar=$(cygpath -m $fp_prog_ar) >+ fi >+ else >+- AC_CHECK_TARGET_TOOL([fp_prog_ar], [ar]) >++ AC_CHECK_TOOL([fp_prog_ar], [ar]) >+ fi >+ fi >+ if test -z "$fp_prog_ar"; then >+@@ -2062,7 +2075,7 @@ AC_DEFUN([XCODE_VERSION],[ >+ # >+ AC_DEFUN([FIND_LLVM_PROG],[ >+ # Test for program with and without version name. >+- AC_CHECK_TOOLS([$1], [$2-$3 $2], [:]) >++ AC_CHECK_TOOLS([$1], [$2], [:]) >+ if test "$$1" != ":"; then >+ AC_MSG_CHECKING([$$1 is version $3]) >+ if test `$$1 --version | grep -c "version $3"` -gt 0 ; then >+@@ -2087,8 +2100,8 @@ AC_DEFUN([FIND_LLVM_PROG],[ >+ AC_DEFUN([CHECK_LD_COPY_BUG],[ >+ case $1 in >+ arm*linux*) >+- AC_CHECK_TARGET_TOOL([READELF], [readelf]) >+- AC_CHECK_TARGET_TOOL([AS], [as]) >++ AC_CHECK_TOOL([READELF], [readelf]) >++ AC_CHECK_TOOL([AS], [as]) >+ AC_MSG_CHECKING([for ld bug 16177]) >+ cat >actest.s <<-EOF >+ .globl _start >+@@ -2352,19 +2365,12 @@ AC_DEFUN([FIND_LD],[ >+ [enable_ld_override=yes]) >+ >+ find_ld() { >+- # Make sure the user didn't specify LD manually. >+- if test "z$LD" != "z"; then >+- AC_CHECK_TARGET_TOOL([LD], [ld]) >+- LD_NO_GOLD=$LD >+- return >+- fi >+- >+ # Manually iterate over possible names since we want to ensure that, e.g., >+ # if ld.lld is installed but gcc doesn't support -fuse-ld=lld, that we >+ # then still try ld.gold and -fuse-ld=gold. >+ for possible_ld in ld.lld ld.gold ld; do >+ TmpLd="" # In case the user set LD >+- AC_CHECK_TARGET_TOOL([TmpLd], [$possible_ld]) >++ AC_CHECK_TOOL([TmpLd], [$possible_ld]) >+ if test "x$TmpLd" = "x"; then continue; fi >+ >+ out=`$TmpLd --version` >+@@ -2374,7 +2380,7 @@ AC_DEFUN([FIND_LD],[ >+ FP_CC_LINKER_FLAG_TRY(bfd, $2) ;; >+ "GNU gold"*) >+ FP_CC_LINKER_FLAG_TRY(gold, $2) >+- LD_NO_GOLD=ld >++ LD_NO_GOLD=LOCALBASE/bin/ld >+ ;; >+ "LLD"*) >+ FP_CC_LINKER_FLAG_TRY(lld, $2) ;; >+@@ -2393,7 +2399,7 @@ AC_DEFUN([FIND_LD],[ >+ done >+ >+ # Fallback >+- AC_CHECK_TARGET_TOOL([LD], [ld]) >++ AC_CHECK_TOOL([LD], [ld]) >+ # This isn't entirely safe since $LD may have been discovered to be >+ $ ld.gold, but what else can we do? >+ if test "x$LD_NO_GOLD" = "x"; then LD_NO_GOLD=$LD; fi >+@@ -2402,7 +2408,7 @@ AC_DEFUN([FIND_LD],[ >+ if test "x$enable_ld_override" = "xyes"; then >+ find_ld >+ else >+- AC_CHECK_TARGET_TOOL([LD], [ld]) >++ AC_CHECK_TOOL([LD], [ld]) >+ if test "x$LD_NO_GOLD" = "x"; then LD_NO_GOLD=$LD; fi >+ fi >+ > >Property changes on: lang/ghc/files/patch-aclocal.m4 >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: lang/ghc/files/patch-compiler_main_SysTools.hs >=================================================================== >--- lang/ghc/files/patch-compiler_main_SysTools.hs (revision 462213) >+++ lang/ghc/files/patch-compiler_main_SysTools.hs (nonexistent) >@@ -1,12 +0,0 @@ >---- compiler/main/SysTools.hs.orig 2017-08-12 09:25:57 UTC >-+++ compiler/main/SysTools.hs >-@@ -907,6 +907,9 @@ getCompilerInfo' dflags = do >- -- Regular clang >- | any ("clang version" `isInfixOf`) stde = >- return Clang >-+ -- FreeBSD clang >-+ | any ("FreeBSD clang version" `isInfixOf`) stde = >-+ return Clang >- -- XCode 5.1 clang >- | any ("Apple LLVM version 5.1" `isPrefixOf`) stde = >- return AppleClang51 > >Property changes on: lang/ghc/files/patch-compiler_main_SysTools.hs >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1,2 +0,0 ## >-yes >-\ No newline at end of property >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: lang/ghc/files/patch-configure >=================================================================== >--- lang/ghc/files/patch-configure (nonexistent) >+++ lang/ghc/files/patch-configure (working copy) >@@ -0,0 +1,22 @@ >+--- configure.orig 2018-03-06 20:04:54 UTC >++++ configure >+@@ -9108,6 +9108,19 @@ $as_echo_n "checking Setting up CFLAGS, LDFLAGS, IGNOR >+ IGNORE_LINKER_LD_FLAGS="$IGNORE_LINKER_LD_FLAGS -z noexecstack" >+ ;; >+ >++ arm*freebsd*) >++ # On arm/freebsd, tell gcc to generate Arm >++ # instructions (ie not Thumb). >++ CFLAGS="$CFLAGS -marm" >++ LDFLAGS="$LDFLAGS -Wl,-z,noexecstack" >++ IGNORE_LINKER_LD_FLAGS="$IGNORE_LINKER_LD_FLAGS -z noexecstack" >++ ;; >++ >++ aarch64*freebsd*) >++ LDFLAGS="$LDFLAGS -Wl,-z,noexecstack" >++ IGNORE_LINKER_LD_FLAGS="$IGNORE_LINKER_LD_FLAGS -z noexecstack" >++ ;; >++ >+ powerpc-ibm-aix*) >+ # We need `-D_THREAD_SAFE` to unlock the thread-local `errno`. >+ CFLAGS="$CFLAGS -D_THREAD_SAFE" > >Property changes on: lang/ghc/files/patch-configure >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: lang/ghc/files/patch-configure.ac >=================================================================== >--- lang/ghc/files/patch-configure.ac (revision 462213) >+++ lang/ghc/files/patch-configure.ac (working copy) >@@ -1,6 +1,6 @@ >---- configure.ac.orig 2017-01-04 14:17:17 UTC >+--- configure.ac.orig 2018-03-06 17:48:53 UTC > +++ configure.ac >-@@ -418,6 +418,9 @@ AC_SUBST([SplitObjsBroken]) >+@@ -447,6 +447,9 @@ XCODE_VERSION() > dnl ** Building a cross compiler? > dnl -------------------------------------------------------------- > CrossCompiling=NO >@@ -10,7 +10,31 @@ > # If 'host' and 'target' differ, then this means we are building a cross-compiler. > if test "$TargetPlatform" != "$HostPlatform" ; then > CrossCompiling=YES >-@@ -1057,6 +1060,11 @@ if test "$ac_cv_sizeof_void_p" -eq 8 ; then >+@@ -640,6 +643,7 @@ AC_SUBST([LibtoolCmd]) >+ # 3.5/3.6 release of LLVM. >+ LlvmVersion=5.0 >+ AC_SUBST([LlvmVersion]) >++FreeBSDLlvmVersion=$(echo $LlvmVersion | sed 's/\.//') >+ sUPPORTED_LLVM_VERSION=$(echo \($LlvmVersion\) | sed 's/\./,/') >+ AC_DEFINE_UNQUOTED([sUPPORTED_LLVM_VERSION], ${sUPPORTED_LLVM_VERSION}, [The supported LLVM version number]) >+ >+@@ -651,13 +655,13 @@ AC_SUBST([ClangCmd]) >+ >+ dnl ** Which LLVM llc to use? >+ dnl -------------------------------------------------------------- >+-FIND_LLVM_PROG([LLC], [llc], [$LlvmVersion]) >++FIND_LLVM_PROG([LLC], [llc$FreeBSDLlvmVersion], [$LlvmVersion]) >+ LlcCmd="$LLC" >+ AC_SUBST([LlcCmd]) >+ >+ dnl ** Which LLVM opt to use? >+ dnl -------------------------------------------------------------- >+-FIND_LLVM_PROG([OPT], [opt], [$LlvmVersion]) >++FIND_LLVM_PROG([OPT], [opt$FreeBSDLlvmVersion], [$LlvmVersion]) >+ OptCmd="$OPT" >+ AC_SUBST([OptCmd]) >+ >+@@ -1160,6 +1164,11 @@ if test "$ac_cv_sizeof_void_p" -eq 8 ; then > use_large_address_space=yes > elif test "$ghc_host_os" = "openbsd" ; then > # as of OpenBSD 5.8 (2015), OpenBSD does not support mmap with MAP_NORESERVE. >Index: lang/ghc/files/patch-distrib_configure.ac.in >=================================================================== >--- lang/ghc/files/patch-distrib_configure.ac.in (nonexistent) >+++ lang/ghc/files/patch-distrib_configure.ac.in (working copy) >@@ -0,0 +1,18 @@ >+--- distrib/configure.ac.in.orig 2018-03-26 14:02:31 UTC >++++ distrib/configure.ac.in >+@@ -125,13 +125,13 @@ LlvmVersion=@LlvmVersion@ >+ >+ dnl ** Which LLVM llc to use? >+ dnl -------------------------------------------------------------- >+-FIND_LLVM_PROG([LLC], [llc], [$LlvmVersion]) >++FIND_LLVM_PROG([LLC], [llc50], [$LlvmVersion]) >+ LlcCmd="$LLC" >+ AC_SUBST([LlcCmd]) >+ >+ dnl ** Which LLVM opt to use? >+ dnl -------------------------------------------------------------- >+-FIND_LLVM_PROG([OPT], [opt], [$LlvmVersion]) >++FIND_LLVM_PROG([OPT], [opt50], [$LlvmVersion]) >+ OptCmd="$OPT" >+ AC_SUBST([OptCmd]) >+ > >Property changes on: lang/ghc/files/patch-distrib_configure.ac.in >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: lang/ghc/files/patch-includes_rts_storage_ClosureMacros.h >=================================================================== >--- lang/ghc/files/patch-includes_rts_storage_ClosureMacros.h (revision 462213) >+++ lang/ghc/files/patch-includes_rts_storage_ClosureMacros.h (nonexistent) >@@ -1,22 +0,0 @@ >---- includes/rts/storage/ClosureMacros.h.orig 2018-01-03 13:27:55 UTC >-+++ includes/rts/storage/ClosureMacros.h >-@@ -499,8 +499,17 @@ INLINE_HEADER StgWord8 *mutArrPtrsCard ( >- >- -------------------------------------------------------------------------- */ >- >--#define ZERO_SLOP_FOR_LDV_PROF (defined(PROFILING)) >--#define ZERO_SLOP_FOR_SANITY_CHECK (defined(DEBUG) && !defined(THREADED_RTS)) >-+#if defined(PROFILING) >-+#define ZERO_SLOP_FOR_LDV_PROF 1 >-+#else >-+#define ZERO_SLOP_FOR_LDV_PROF 0 >-+#endif >-+ >-+#if defined(DEBUG) && !defined(THREADED_RTS) >-+#define ZERO_SLOP_FOR_SANITY_CHECK 1 >-+#else >-+#define ZERO_SLOP_FOR_SANITY_CHECK 0 >-+#endif >- >- #if ZERO_SLOP_FOR_LDV_PROF || ZERO_SLOP_FOR_SANITY_CHECK >- #define OVERWRITING_CLOSURE(c) overwritingClosure(c) > >Property changes on: lang/ghc/files/patch-includes_rts_storage_ClosureMacros.h >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1,2 +0,0 ## >-yes >-\ No newline at end of property >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: lang/ghc/files/patch-libraries_Cabal_Cabal_Distribution_Simple_GHC.hs >=================================================================== >--- lang/ghc/files/patch-libraries_Cabal_Cabal_Distribution_Simple_GHC.hs (revision 462213) >+++ lang/ghc/files/patch-libraries_Cabal_Cabal_Distribution_Simple_GHC.hs (nonexistent) >@@ -1,11 +0,0 @@ >---- libraries/Cabal/Cabal/Distribution/Simple/GHC.hs.orig 2017-01-03 15:59:20 UTC >-+++ libraries/Cabal/Cabal/Distribution/Simple/GHC.hs >-@@ -996,7 +996,7 @@ getRPaths lbi clbi | supportRPaths hostOS = do >- supportRPaths Linux  = True >- supportRPaths Windows = False >- supportRPaths OSX  = True >-- supportRPaths FreeBSD  = False >-+ supportRPaths FreeBSD  = True >- supportRPaths OpenBSD  = False >- supportRPaths NetBSD  = False >- supportRPaths DragonFly = False > >Property changes on: lang/ghc/files/patch-libraries_Cabal_Cabal_Distribution_Simple_GHC.hs >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: lang/ghc/files/patch-llvm-targets >=================================================================== >--- lang/ghc/files/patch-llvm-targets (nonexistent) >+++ lang/ghc/files/patch-llvm-targets (working copy) >@@ -0,0 +1,10 @@ >+--- llvm-targets.orig 2018-03-17 14:04:41 UTC >++++ llvm-targets >+@@ -20,4 +20,7 @@ >+ ,("aarch64-apple-ios", ("e-m:o-i64:64-i128:128-n32:64-S128", "generic", "+neon")) >+ ,("i386-apple-ios", ("e-m:o-p:32:32-f64:32:64-f80:128-n8:16:32-S128", "yonah", "")) >+ ,("x86_64-apple-ios", ("e-m:o-i64:64-f80:128-n8:16:32:64-S128", "core2", "")) >++,("armv6-unknown-freebsdOSREL-gnueabihf", ("e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64", "arm1176jzf-s", "+strict-align")) >++,("armv7-unknown-freebsdOSREL-gnueabihf", ("e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64", "generic", "+strict-align")) >++,("aarch64-unknown-freebsdOSREL", ("e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128", "generic", "+neon")) >+ ] > >Property changes on: lang/ghc/files/patch-llvm-targets >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: lang/ghc/files/patch-rts_Linker.c >=================================================================== >--- lang/ghc/files/patch-rts_Linker.c (revision 462213) >+++ lang/ghc/files/patch-rts_Linker.c (nonexistent) >@@ -1,11 +0,0 @@ >---- rts/Linker.c.orig 2017-08-12 09:22:13 UTC >-+++ rts/Linker.c >-@@ -797,7 +797,7 @@ initLinker_ (int retain_cafs) >- # endif /* RTLD_DEFAULT */ >- >- compileResult = regcomp(&re_invalid, >-- "(([^ \t()])+\\.so([^ \t:()])*):([ \t])*(invalid ELF header|file too short)", >-+ "(([^ \t()])+\\.so([^ \t:()])*):([ \t])*(invalid ELF header|file too short|invalid file format)", >- REG_EXTENDED); >- if (compileResult != 0) { >- barf("Compiling re_invalid failed"); > >Property changes on: lang/ghc/files/patch-rts_Linker.c >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1,2 +0,0 ## >-yes >-\ No newline at end of property >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: lang/ghc/pkg-plist >=================================================================== >--- lang/ghc/pkg-plist (revision 462213) >+++ lang/ghc/pkg-plist (working copy) >@@ -1,17 +1,1571 @@ > bin/ghc >+bin/ghc-%%GHC_VERSION%% >+bin/ghc-pkg >+bin/ghc-pkg-%%GHC_VERSION%% > bin/ghci >-bin/ghc-pkg >-bin/runhaskell >-bin/runghc >-%%DOCS%%bin/haddock >+bin/ghci-%%GHC_VERSION%% > bin/hp2ps > bin/hpc > bin/hsc2hs >-bin/ghc-%%GHC_VERSION%% >-bin/ghci-%%GHC_VERSION%% >-bin/ghc-pkg-%%GHC_VERSION%% >-%%DOCS%%bin/haddock-ghc-%%GHC_VERSION%% >+bin/runghc > bin/runghc-%%GHC_VERSION%% >-%%DOCS%%man/man1/ghc.1.gz >-%%DOCS%%@postexec /bin/ln -sf %D/bin/haddock-ghc-%%GHC_VERSION%% %D/bin/haddock || return true >-%%DOCS%%@postunexec /bin/rm -f %D/bin/haddock || return true >+bin/runhaskell >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/ComponentsGraph.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/Configure.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/ConfiguredComponent.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/DescribeUnitId.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/FullUnitId.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/Id.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/LinkedComponent.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/MixLink.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/ModSubst.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/ModuleScope.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/ModuleShape.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/PreExistingComponent.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/PreModuleShape.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/ReadyComponent.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Backpack/UnifyM.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/CabalSpecVersion.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Binary.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/CharParsing.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/CopyFile.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/CreatePipe.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/DList.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Directory.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Environment.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Exception.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/GetShortPathName.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Graph.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Internal/TempFile.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Lens.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Map/Strict.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/MonadFail.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Newtype.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Parsing.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Prelude.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Prelude/Internal.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/ReadP.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Semigroup.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/SnocList.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Stack.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compat/Time.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Compiler.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/FieldGrammar.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/FieldGrammar/Class.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/FieldGrammar/FieldDescrs.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/FieldGrammar/Parsec.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/FieldGrammar/Pretty.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/GetOpt.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/InstalledPackageInfo.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Lex.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/License.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Make.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/ModuleName.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Package.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/PackageDescription.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/PackageDescription/Check.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/PackageDescription/Configuration.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/PackageDescription/FieldGrammar.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/PackageDescription/Parsec.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/PackageDescription/PrettyPrint.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/PackageDescription/Quirks.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/PackageDescription/Utils.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/ParseUtils.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Parsec/Class.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Parsec/Common.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Parsec/ConfVar.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Parsec/Field.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Parsec/FieldLineStream.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Parsec/Lexer.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Parsec/LexerMonad.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Parsec/Newtypes.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Parsec/ParseResult.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Parsec/Parser.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Pretty.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/PrettyUtils.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/ReadE.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/SPDX.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/SPDX/License.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/SPDX/LicenseExceptionId.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/SPDX/LicenseExpression.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/SPDX/LicenseId.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/SPDX/LicenseReference.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Bench.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Build.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Build/Macros.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Build/PathsModule.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/BuildPaths.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/BuildTarget.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/BuildToolDepends.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/CCompiler.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Command.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Compiler.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Configure.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Doctest.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/GHC.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/GHC/IPI642.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/GHC/IPIConvert.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/GHC/ImplInfo.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/GHC/Internal.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/GHCJS.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Haddock.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/HaskellSuite.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Hpc.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Install.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/InstallDirs.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/JHC.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/LHC.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/LocalBuildInfo.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/PackageIndex.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/PreProcess.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/PreProcess/Unlit.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program/Ar.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program/Builtin.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program/Db.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program/Find.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program/GHC.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program/HcPkg.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program/Hpc.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program/Internal.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program/Ld.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program/ResponseFile.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program/Run.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program/Script.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program/Strip.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Program/Types.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Register.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Setup.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/SrcDist.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Test.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Test/ExeV10.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Test/LibV09.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Test/Log.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/UHC.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/UserHooks.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Simple/Utils.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/System.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/TestSuite.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Text.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/AbiDependency.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/AbiHash.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/AnnotatedId.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/Benchmark.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/Benchmark/Lens.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/BenchmarkInterface.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/BenchmarkType.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/BuildInfo.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/BuildInfo/Lens.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/BuildType.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/Component.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/ComponentId.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/ComponentInclude.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/ComponentLocalBuildInfo.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/ComponentName.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/ComponentRequestedSpec.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/CondTree.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/Condition.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/Dependency.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/DependencyMap.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/ExeDependency.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/Executable.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/Executable/Lens.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/ExecutableScope.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/ExposedModule.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/ForeignLib.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/ForeignLib/Lens.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/ForeignLibOption.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/ForeignLibType.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/GenericPackageDescription.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/GenericPackageDescription/Lens.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/HookedBuildInfo.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/IncludeRenaming.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/InstalledPackageInfo.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/InstalledPackageInfo/FieldGrammar.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/InstalledPackageInfo/Lens.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/LegacyExeDependency.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/Lens.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/Library.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/Library/Lens.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/LocalBuildInfo.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/Mixin.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/Module.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/ModuleReexport.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/ModuleRenaming.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/MungedPackageId.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/MungedPackageName.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/PackageDescription.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/PackageDescription/Lens.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/PackageId.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/PackageId/Lens.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/PackageName.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/PkgconfigDependency.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/PkgconfigName.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/SetupBuildInfo.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/SetupBuildInfo/Lens.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/SourceRepo.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/SourceRepo/Lens.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/TargetInfo.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/TestSuite.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/TestSuite/Lens.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/TestSuiteInterface.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/TestType.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/UnitId.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/UnqualComponentName.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/Version.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/VersionInterval.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Types/VersionRange.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Utils/Base62.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Utils/Generic.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Utils/IOData.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Utils/LogProgress.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Utils/MapAccum.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Utils/NubList.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Utils/Progress.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Utils/ShortText.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Utils/String.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Utils/UnionFind.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Verbosity.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Distribution/Version.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/HSCabal-2.2.0.0.o >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Language/Haskell/Extension.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/Paths_Cabal.hi >+%%GHC_LIBDIR%%/Cabal-2.2.0.0/libHSCabal-2.2.0.0.a >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array/Base.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array/IArray.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array/IO.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array/IO/Internals.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array/IO/Safe.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array/MArray.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array/MArray/Safe.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array/ST.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array/ST/Safe.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array/Storable.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array/Storable/Internals.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array/Storable/Safe.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array/Unboxed.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/Data/Array/Unsafe.hi >+%%GHC_LIBDIR%%/array-0.5.2.0/HSarray-0.5.2.0.o >+%%GHC_LIBDIR%%/array-0.5.2.0/libHSarray-0.5.2.0.a >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Applicative.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Arrow.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Category.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Concurrent.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Concurrent/Chan.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Concurrent/MVar.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Concurrent/QSem.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Concurrent/QSemN.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Exception.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Exception/Base.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad/Fail.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad/Fix.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad/IO/Class.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad/Instances.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad/ST.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad/ST/Imp.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad/ST/Lazy.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad/ST/Lazy/Imp.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad/ST/Lazy/Safe.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad/ST/Lazy/Unsafe.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad/ST/Safe.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad/ST/Strict.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad/ST/Unsafe.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Control/Monad/Zip.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Bifoldable.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Bifunctor.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Bitraversable.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Bits.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Bool.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Char.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Coerce.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Complex.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Data.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Dynamic.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Either.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Eq.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Fixed.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Foldable.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Function.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Functor.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Functor/Classes.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Functor/Compose.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Functor/Const.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Functor/Identity.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Functor/Product.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Functor/Sum.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Functor/Utils.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/IORef.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Int.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Ix.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Kind.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/List.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/List/NonEmpty.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Maybe.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Monoid.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/OldList.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Ord.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Proxy.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Ratio.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/STRef.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/STRef/Lazy.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/STRef/Strict.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Semigroup.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Semigroup/Internal.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/String.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Traversable.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Tuple.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Type/Bool.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Type/Coercion.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Type/Equality.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Typeable.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Typeable/Internal.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Unique.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Version.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Void.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Data/Word.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Debug/Trace.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/C.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/C/Error.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/C/String.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/C/Types.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/Concurrent.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/ForeignPtr.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/ForeignPtr/Imp.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/ForeignPtr/Safe.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/ForeignPtr/Unsafe.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/Marshal.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/Marshal/Alloc.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/Marshal/Array.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/Marshal/Error.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/Marshal/Pool.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/Marshal/Safe.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/Marshal/Unsafe.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/Marshal/Utils.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/Ptr.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/Safe.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/StablePtr.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Foreign/Storable.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Arr.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Base.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/ByteOrder.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Char.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Clock.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Conc.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Conc/IO.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Conc/Signal.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Conc/Sync.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/ConsoleHandler.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Constants.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Desugar.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Enum.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Environment.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Err.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Event.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Event/Arr.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Event/Array.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Event/Control.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Event/EPoll.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Event/IntTable.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Event/Internal.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Event/KQueue.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Event/Manager.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Event/PSQ.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Event/Poll.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Event/Thread.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Event/TimerManager.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Event/Unique.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Exception.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/ExecutionStack.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/ExecutionStack/Internal.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Exts.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Fingerprint.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Fingerprint/Type.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Float.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Float/ConversionUtils.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Float/RealFracMethods.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Foreign.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/ForeignPtr.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/GHCi.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Generics.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Buffer.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/BufferedIO.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Device.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Encoding.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Encoding/CodePage.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Encoding/Failure.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Encoding/Iconv.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Encoding/Latin1.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Encoding/Types.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Encoding/UTF16.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Encoding/UTF32.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Encoding/UTF8.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Exception.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/FD.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Handle.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Handle/FD.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Handle/Internals.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Handle/Lock.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Handle/Text.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Handle/Types.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/IOMode.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IO/Unsafe.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IOArray.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/IORef.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Int.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/List.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/MVar.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Natural.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Num.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/OldList.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/OverloadedLabels.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/PArr.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Pack.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Profiling.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Ptr.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/RTS/Flags.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Read.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Real.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Records.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/ST.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/STRef.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Show.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Stable.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Stack.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Stack/CCS.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Stack/Types.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/StaticPtr.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/StaticPtr/Internal.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Stats.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Storable.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/TopHandler.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/TypeLits.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/TypeNats.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Unicode.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Weak.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/GHC/Word.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/HSbase-4.11.0.0.o >+%%GHC_LIBDIR%%/base-4.11.0.0/Numeric.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Numeric/Natural.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Prelude.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/CPUTime.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/CPUTime/Posix/ClockGetTime.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/CPUTime/Posix/RUsage.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/CPUTime/Posix/Times.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/CPUTime/Unsupported.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/CPUTime/Utils.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/Console/GetOpt.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/Environment.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/Environment/Blank.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/Environment/ExecutablePath.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/Exit.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/IO.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/IO/Error.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/IO/Unsafe.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/Info.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/Mem.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/Mem/StableName.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/Mem/Weak.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/Posix/Internals.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/Posix/Types.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/System/Timeout.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Text/ParserCombinators/ReadP.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Text/ParserCombinators/ReadPrec.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Text/Printf.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Text/Read.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Text/Read/Lex.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Text/Show.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Text/Show/Functions.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Type/Reflection.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Type/Reflection/Unsafe.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/Unsafe/Coerce.hi >+%%GHC_LIBDIR%%/base-4.11.0.0/include/EventConfig.h >+%%GHC_LIBDIR%%/base-4.11.0.0/include/HsBase.h >+%%GHC_LIBDIR%%/base-4.11.0.0/include/HsBaseConfig.h >+%%GHC_LIBDIR%%/base-4.11.0.0/include/WCsubst.h >+%%GHC_LIBDIR%%/base-4.11.0.0/include/consUtils.h >+%%GHC_LIBDIR%%/base-4.11.0.0/libHSbase-4.11.0.0.a >+%%GHC_LIBDIR%%/bin/ghc >+%%GHC_LIBDIR%%/bin/ghc-iserv >+%%GHC_LIBDIR%%/bin/ghc-pkg >+%%GHC_LIBDIR%%/bin/ghc-split >+%%GHC_LIBDIR%%/bin/hp2ps >+%%GHC_LIBDIR%%/bin/hpc >+%%GHC_LIBDIR%%/bin/hsc2hs >+%%GHC_LIBDIR%%/bin/runghc >+%%GHC_LIBDIR%%/bin/unlit >+%%GHC_LIBDIR%%/binary-0.8.5.1/Data/Binary.hi >+%%GHC_LIBDIR%%/binary-0.8.5.1/Data/Binary/Builder.hi >+%%GHC_LIBDIR%%/binary-0.8.5.1/Data/Binary/Class.hi >+%%GHC_LIBDIR%%/binary-0.8.5.1/Data/Binary/FloatCast.hi >+%%GHC_LIBDIR%%/binary-0.8.5.1/Data/Binary/Generic.hi >+%%GHC_LIBDIR%%/binary-0.8.5.1/Data/Binary/Get.hi >+%%GHC_LIBDIR%%/binary-0.8.5.1/Data/Binary/Get/Internal.hi >+%%GHC_LIBDIR%%/binary-0.8.5.1/Data/Binary/Internal.hi >+%%GHC_LIBDIR%%/binary-0.8.5.1/Data/Binary/Put.hi >+%%GHC_LIBDIR%%/binary-0.8.5.1/HSbinary-0.8.5.1.o >+%%GHC_LIBDIR%%/binary-0.8.5.1/libHSbinary-0.8.5.1.a >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Builder.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Builder/ASCII.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Builder/Extra.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Builder/Internal.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Builder/Prim.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Builder/Prim/ASCII.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Builder/Prim/Binary.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Builder/Prim/Internal.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Builder/Prim/Internal/Base16.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Builder/Prim/Internal/Floating.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Builder/Prim/Internal/UncheckedShifts.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Char8.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Internal.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Lazy.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Lazy/Builder.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Lazy/Builder/ASCII.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Lazy/Builder/Extras.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Lazy/Char8.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Lazy/Internal.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Short.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Short/Internal.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/Data/ByteString/Unsafe.hi >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/HSbytestring-0.10.8.2.o >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/include/fpstring.h >+%%GHC_LIBDIR%%/bytestring-0.10.8.2/libHSbytestring-0.10.8.2.a >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Graph.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/IntMap.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/IntMap/Internal.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/IntMap/Internal/Debug.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/IntMap/Internal/DeprecatedDebug.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/IntMap/Lazy.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/IntMap/Merge/Lazy.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/IntMap/Merge/Strict.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/IntMap/Strict.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/IntSet.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/IntSet/Internal.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Map.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Map/Internal.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Map/Internal/Debug.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Map/Internal/DeprecatedShowTree.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Map/Lazy.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Map/Lazy/Merge.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Map/Merge/Lazy.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Map/Merge/Strict.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Map/Strict.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Map/Strict/Internal.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Map/Strict/Merge.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Sequence.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Sequence/Internal.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Sequence/Internal/Sorting.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Set.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Set/Internal.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Data/Tree.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/HScontainers-0.5.11.0.o >+%%GHC_LIBDIR%%/containers-0.5.11.0/Utils/Containers/Internal/BitQueue.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Utils/Containers/Internal/BitUtil.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Utils/Containers/Internal/PtrEquality.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Utils/Containers/Internal/State.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Utils/Containers/Internal/StrictFold.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Utils/Containers/Internal/StrictMaybe.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/Utils/Containers/Internal/StrictPair.hi >+%%GHC_LIBDIR%%/containers-0.5.11.0/libHScontainers-0.5.11.0.a >+%%GHC_LIBDIR%%/deepseq-1.4.3.0/Control/DeepSeq.hi >+%%GHC_LIBDIR%%/deepseq-1.4.3.0/Control/DeepSeq/BackDoor.hi >+%%GHC_LIBDIR%%/deepseq-1.4.3.0/HSdeepseq-1.4.3.0.o >+%%GHC_LIBDIR%%/deepseq-1.4.3.0/libHSdeepseq-1.4.3.0.a >+%%GHC_LIBDIR%%/directory-1.3.1.5/HSdirectory-1.3.1.5.o >+%%GHC_LIBDIR%%/directory-1.3.1.5/System/Directory.hi >+%%GHC_LIBDIR%%/directory-1.3.1.5/System/Directory/Internal.hi >+%%GHC_LIBDIR%%/directory-1.3.1.5/System/Directory/Internal/C_utimensat.hi >+%%GHC_LIBDIR%%/directory-1.3.1.5/System/Directory/Internal/Common.hi >+%%GHC_LIBDIR%%/directory-1.3.1.5/System/Directory/Internal/Config.hi >+%%GHC_LIBDIR%%/directory-1.3.1.5/System/Directory/Internal/Posix.hi >+%%GHC_LIBDIR%%/directory-1.3.1.5/System/Directory/Internal/Prelude.hi >+%%GHC_LIBDIR%%/directory-1.3.1.5/System/Directory/Internal/Windows.hi >+%%GHC_LIBDIR%%/directory-1.3.1.5/libHSdirectory-1.3.1.5.a >+%%GHC_LIBDIR%%/filepath-1.4.2/HSfilepath-1.4.2.o >+%%GHC_LIBDIR%%/filepath-1.4.2/System/FilePath.hi >+%%GHC_LIBDIR%%/filepath-1.4.2/System/FilePath/Posix.hi >+%%GHC_LIBDIR%%/filepath-1.4.2/System/FilePath/Windows.hi >+%%GHC_LIBDIR%%/filepath-1.4.2/libHSfilepath-1.4.2.a >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Annotations.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/ApiAnnotation.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Ar.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/AsmCodeGen.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/AsmUtils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Avail.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Bag.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/BasicTypes.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/BinFingerprint.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/BinIface.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Binary.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Bitmap.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/BkpSyn.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/BlockId.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/BooleanFormula.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/BufWrite.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/BuildTyCl.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/ByteCodeAsm.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/ByteCodeGen.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/ByteCodeInstr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/ByteCodeItbls.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/ByteCodeLink.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/ByteCodeTypes.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CLabel.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CPrim.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CSE.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CallArity.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CgUtils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Check.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Class.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmdLineParser.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Cmm.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmBuildInfoTables.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmCallConv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmCommonBlockElim.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmContFlowOpt.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmExpr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmImplementSwitchPlans.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmInfo.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmLayoutStack.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmLex.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmLint.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmLive.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmMachOp.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmMonad.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmNode.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmOpt.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmParse.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmPipeline.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmProcPoint.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmSink.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmSwitch.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmType.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CmmUtils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CoAxiom.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CodeGen/Platform.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CodeGen/Platform/ARM.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CodeGen/Platform/ARM64.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CodeGen/Platform/NoRegs.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CodeGen/Platform/PPC.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CodeGen/Platform/PPC_Darwin.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CodeGen/Platform/SPARC.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CodeGen/Platform/X86.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CodeGen/Platform/X86_64.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CodeOutput.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Coercion.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/ConLike.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Config.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Constants.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Convert.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CoreArity.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CoreFVs.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CoreLint.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CoreMonad.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CoreOpt.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CorePrep.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CoreSeq.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CoreStats.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CoreSubst.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CoreSyn.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CoreTidy.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CoreToStg.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CoreUnfold.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CoreUtils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/CostCentre.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Coverage.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Ctype.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DataCon.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Debug.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Debugger.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DebuggerUtils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Demand.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Desugar.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Digraph.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DmdAnal.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DriverBkp.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DriverMkDepend.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DriverPhases.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DriverPipeline.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DsArrows.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DsBinds.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DsCCall.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DsExpr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DsForeign.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DsGRHSs.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DsListComp.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DsMeta.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DsMonad.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DsUsage.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DsUtils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Dwarf.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Dwarf/Constants.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Dwarf/Types.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DynFlags.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/DynamicLoading.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Elf.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Encoding.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/EnumSet.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/ErrUtils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Exception.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Exitify.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/FV.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/FamInst.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/FamInstEnv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/FastFunctions.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/FastMutInt.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/FastString.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/FastStringEnv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/FieldLabel.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/FileCleanup.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Finder.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Fingerprint.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/FiniteMap.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/FlagChecker.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/FloatIn.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/FloatOut.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/ForeignCall.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Format.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/FunDeps.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/GHC.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/GHCi.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/GhcMake.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/GhcMonad.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/GhcPlugins.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/GhcPrelude.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/GraphBase.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/GraphColor.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/GraphOps.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/GraphPpr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HaddockUtils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HeaderInfo.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Hooks.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Hoopl/Block.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Hoopl/Collections.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Hoopl/Dataflow.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Hoopl/Graph.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Hoopl/Label.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Hoopl/Unique.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HsBinds.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HsDecls.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HsDoc.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HsDumpAst.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HsExpr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HsExtension.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HsImpExp.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HsLit.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HsPat.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HsSyn.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HsTypes.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HsUtils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HscMain.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HscStats.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/HscTypes.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/IOEnv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Id.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/IdInfo.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/IfaceEnv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/IfaceSyn.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/IfaceType.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Inst.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/InstEnv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Instruction.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/InteractiveEval.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/InteractiveEvalTypes.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Json.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Kind.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/KnownUniques.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Lexeme.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Lexer.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/LiberateCase.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Linker.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/ListSetOps.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/ListT.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Literal.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Llvm.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Llvm/AbsSyn.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Llvm/MetaData.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Llvm/PpLlvm.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Llvm/Types.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/LlvmCodeGen.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/LlvmCodeGen/Base.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/LlvmCodeGen/CodeGen.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/LlvmCodeGen/Data.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/LlvmCodeGen/Ppr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/LlvmCodeGen/Regs.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/LlvmMangler.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/LoadIface.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Match.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/MatchCon.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/MatchLit.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Maybes.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/MkCore.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/MkGraph.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/MkId.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/MkIface.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Module.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/MonadUtils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/NCGMonad.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Name.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/NameCache.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/NameEnv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/NameSet.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/NameShape.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/OccName.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/OccurAnal.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/OptCoercion.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/OrdList.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Outputable.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PIC.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PPC/CodeGen.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PPC/Cond.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PPC/Instr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PPC/Ppr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PPC/RegInfo.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PPC/Regs.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PackageConfig.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Packages.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Pair.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Panic.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Parser.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PatSyn.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PipelineMonad.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PlaceHolder.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Platform.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PlatformConstants.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Plugins.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PmExpr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PprBase.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PprC.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PprCmm.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PprCmmDecl.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PprCmmExpr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PprColour.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PprCore.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PprTyThing.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PrelInfo.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PrelNames.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PrelRules.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Pretty.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/PrimOp.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/ProfInit.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RdrHsSyn.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RdrName.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Reg.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Graph/ArchBase.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Graph/ArchX86.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Graph/Coalesce.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Graph/Main.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Graph/Spill.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Graph/SpillClean.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Graph/SpillCost.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Graph/Stats.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Graph/TrivColorable.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Linear/Base.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Linear/FreeRegs.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Linear/JoinToTargets.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Linear/Main.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Linear/PPC/FreeRegs.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Linear/SPARC/FreeRegs.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Linear/StackMap.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Linear/State.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Linear/Stats.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Linear/X86/FreeRegs.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Linear/X86_64/FreeRegs.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegAlloc/Liveness.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RegClass.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RepType.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RnBinds.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RnEnv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RnExpr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RnFixity.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RnHsDoc.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RnModIface.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RnNames.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RnPat.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RnSource.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RnSplice.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RnTypes.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RnUnbound.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RnUtils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/RtClosureInspect.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Rules.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SAT.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SMRep.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/AddrMode.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/Base.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/CodeGen.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/CodeGen/Amode.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/CodeGen/Base.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/CodeGen/CondCode.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/CodeGen/Expand.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/CodeGen/Gen32.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/CodeGen/Gen64.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/CodeGen/Sanity.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/Cond.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/Imm.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/Instr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/Ppr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/Regs.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/ShortcutJump.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SPARC/Stack.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SetLevels.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SimplCore.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SimplEnv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SimplMonad.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SimplStg.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SimplUtils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Simplify.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SpecConstr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Specialise.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SrcLoc.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/State.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StaticPtrTable.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmm.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmArgRep.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmBind.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmClosure.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmCon.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmEnv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmExpr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmExtCode.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmForeign.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmHeap.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmHpc.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmLayout.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmMonad.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmPrim.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmProf.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmTicky.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCmmUtils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgCse.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgLint.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgStats.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StgSyn.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Stream.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/StringBuffer.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SysTools.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SysTools/BaseDir.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SysTools/ExtraObj.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SysTools/Info.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SysTools/Process.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SysTools/Tasks.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/SysTools/Terminal.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/THNames.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TargetReg.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcAnnotations.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcArrows.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcBackpack.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcBinds.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcCanonical.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcClassDcl.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcDefaults.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcDeriv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcDerivInfer.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcDerivUtils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcEnv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcErrors.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcEvidence.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcExpr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcFlatten.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcForeign.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcGenDeriv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcGenFunctor.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcGenGenerics.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcHsSyn.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcHsType.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcIface.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcInstDcls.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcInteract.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcMType.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcMatches.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcPat.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcPatSyn.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcPluginM.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcRnDriver.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcRnExports.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcRnMonad.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcRnTypes.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcRules.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcSMonad.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcSigs.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcSimplify.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcSplice.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcTyClsDecls.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcTyDecls.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcType.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcTypeNats.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcTypeable.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcUnify.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TcValidity.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TidyPgm.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TmOracle.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/ToIface.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TrieMap.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TyCoRep.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TyCon.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Type.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TysPrim.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/TysWiredIn.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/UnVarGraph.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/UnariseStg.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Unify.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/UniqDFM.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/UniqDSet.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/UniqFM.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/UniqMap.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/UniqSet.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/UniqSupply.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Unique.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Util.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Var.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/VarEnv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/VarSet.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Builtins.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Builtins/Base.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Builtins/Initialise.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Convert.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Env.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Exp.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Generic/Description.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Generic/PADict.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Generic/PAMethods.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Generic/PData.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Monad.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Monad/Base.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Monad/Global.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Monad/InstEnv.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Monad/Local.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Monad/Naming.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Type/Classify.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Type/Env.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Type/TyConDecl.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Type/Type.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Utils.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Utils/Base.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Utils/Closure.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Utils/Hoisting.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Utils/PADict.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Utils/Poly.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Var.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/Vectorise/Vect.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/WorkWrap.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/WwLib.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/X86/CodeGen.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/X86/Cond.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/X86/Instr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/X86/Ppr.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/X86/RegInfo.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/X86/Regs.hi >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/include/HsVersions.h >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/include/ghc_boot_platform.h >+%%GHC_LIBDIR%%/ghc-%%GHC_VERSION%%/libHSghc-%%GHC_VERSION%%.a >+%%GHC_LIBDIR%%/ghc-boot-%%GHC_VERSION%%/GHC/ForeignSrcLang.hi >+%%GHC_LIBDIR%%/ghc-boot-%%GHC_VERSION%%/GHC/LanguageExtensions.hi >+%%GHC_LIBDIR%%/ghc-boot-%%GHC_VERSION%%/GHC/PackageDb.hi >+%%GHC_LIBDIR%%/ghc-boot-%%GHC_VERSION%%/GHC/Serialized.hi >+%%GHC_LIBDIR%%/ghc-boot-%%GHC_VERSION%%/HSghc-boot-%%GHC_VERSION%%.o >+%%GHC_LIBDIR%%/ghc-boot-%%GHC_VERSION%%/libHSghc-boot-%%GHC_VERSION%%.a >+%%GHC_LIBDIR%%/ghc-boot-th-%%GHC_VERSION%%/GHC/ForeignSrcLang/Type.hi >+%%GHC_LIBDIR%%/ghc-boot-th-%%GHC_VERSION%%/GHC/LanguageExtensions/Type.hi >+%%GHC_LIBDIR%%/ghc-boot-th-%%GHC_VERSION%%/GHC/Lexeme.hi >+%%GHC_LIBDIR%%/ghc-boot-th-%%GHC_VERSION%%/HSghc-boot-th-%%GHC_VERSION%%.o >+%%GHC_LIBDIR%%/ghc-boot-th-%%GHC_VERSION%%/libHSghc-boot-th-%%GHC_VERSION%%.a >+%%GHC_LIBDIR%%/ghc-compact-0.1.0.0/GHC/Compact.hi >+%%GHC_LIBDIR%%/ghc-compact-0.1.0.0/GHC/Compact/Serialized.hi >+%%GHC_LIBDIR%%/ghc-compact-0.1.0.0/HSghc-compact-0.1.0.0.o >+%%GHC_LIBDIR%%/ghc-compact-0.1.0.0/libHSghc-compact-0.1.0.0.a >+%%GHC_LIBDIR%%/ghc-prim-0.5.2.0/GHC/CString.hi >+%%GHC_LIBDIR%%/ghc-prim-0.5.2.0/GHC/Classes.hi >+%%GHC_LIBDIR%%/ghc-prim-0.5.2.0/GHC/Debug.hi >+%%GHC_LIBDIR%%/ghc-prim-0.5.2.0/GHC/IntWord64.hi >+%%GHC_LIBDIR%%/ghc-prim-0.5.2.0/GHC/Magic.hi >+%%GHC_LIBDIR%%/ghc-prim-0.5.2.0/GHC/PrimopWrappers.hi >+%%GHC_LIBDIR%%/ghc-prim-0.5.2.0/GHC/Tuple.hi >+%%GHC_LIBDIR%%/ghc-prim-0.5.2.0/GHC/Types.hi >+%%GHC_LIBDIR%%/ghc-prim-0.5.2.0/HSghc-prim-0.5.2.0.o >+%%GHC_LIBDIR%%/ghc-prim-0.5.2.0/libHSghc-prim-0.5.2.0.a >+%%GHC_LIBDIR%%/ghc-usage.txt >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/GHCi/BinaryArray.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/GHCi/BreakArray.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/GHCi/CreateBCO.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/GHCi/FFI.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/GHCi/InfoTable.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/GHCi/Message.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/GHCi/ObjLink.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/GHCi/RemoteTypes.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/GHCi/ResolvedBCO.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/GHCi/Run.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/GHCi/Signals.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/GHCi/StaticPtrTable.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/GHCi/TH.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/GHCi/TH/Binary.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/HSghci-%%GHC_VERSION%%.o >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/SizedSeq.hi >+%%GHC_LIBDIR%%/ghci-%%GHC_VERSION%%/libHSghci-%%GHC_VERSION%%.a >+%%GHC_LIBDIR%%/ghci-usage.txt >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/HShaskeline-0.7.4.2.o >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Backend.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Backend/DumbTerm.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Backend/Posix.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Backend/Posix/Encoder.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Backend/Terminfo.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Backend/WCWidth.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Command.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Command/Completion.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Command/History.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Command/KillRing.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Command/Undo.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Completion.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Directory.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Emacs.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/History.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/IO.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/InputT.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Key.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/LineState.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/MonadException.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Monads.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Prefs.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Recover.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/RunCommand.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Term.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/System/Console/Haskeline/Vi.hi >+%%GHC_LIBDIR%%/haskeline-0.7.4.2/libHShaskeline-0.7.4.2.a >+%%GHC_LIBDIR%%/hpc-0.6.0.3/HShpc-0.6.0.3.o >+%%GHC_LIBDIR%%/hpc-0.6.0.3/Trace/Hpc/Mix.hi >+%%GHC_LIBDIR%%/hpc-0.6.0.3/Trace/Hpc/Reflect.hi >+%%GHC_LIBDIR%%/hpc-0.6.0.3/Trace/Hpc/Tix.hi >+%%GHC_LIBDIR%%/hpc-0.6.0.3/Trace/Hpc/Util.hi >+%%GHC_LIBDIR%%/hpc-0.6.0.3/libHShpc-0.6.0.3.a >+%%GHC_LIBDIR%%/include/Cmm.h >+%%GHC_LIBDIR%%/include/DerivedConstants.h >+%%GHC_LIBDIR%%/include/HsFFI.h >+%%GHC_LIBDIR%%/include/MachDeps.h >+%%GHC_LIBDIR%%/include/Rts.h >+%%GHC_LIBDIR%%/include/RtsAPI.h >+%%GHC_LIBDIR%%/include/Stg.h >+%%GHC_LIBDIR%%/include/ffi.h >+%%GHC_LIBDIR%%/include/ffitarget.h >+%%GHC_LIBDIR%%/include/ghcautoconf.h >+%%GHC_LIBDIR%%/include/ghcconfig.h >+%%GHC_LIBDIR%%/include/ghcplatform.h >+%%GHC_LIBDIR%%/include/ghcversion.h >+%%GHC_LIBDIR%%/include/rts/Adjustor.h >+%%GHC_LIBDIR%%/include/rts/BlockSignals.h >+%%GHC_LIBDIR%%/include/rts/Bytecodes.h >+%%GHC_LIBDIR%%/include/rts/Config.h >+%%GHC_LIBDIR%%/include/rts/Constants.h >+%%GHC_LIBDIR%%/include/rts/EventLogFormat.h >+%%GHC_LIBDIR%%/include/rts/EventLogWriter.h >+%%GHC_LIBDIR%%/include/rts/FileLock.h >+%%GHC_LIBDIR%%/include/rts/Flags.h >+%%GHC_LIBDIR%%/include/rts/GetTime.h >+%%GHC_LIBDIR%%/include/rts/Globals.h >+%%GHC_LIBDIR%%/include/rts/Hpc.h >+%%GHC_LIBDIR%%/include/rts/IOManager.h >+%%GHC_LIBDIR%%/include/rts/Libdw.h >+%%GHC_LIBDIR%%/include/rts/LibdwPool.h >+%%GHC_LIBDIR%%/include/rts/Linker.h >+%%GHC_LIBDIR%%/include/rts/Main.h >+%%GHC_LIBDIR%%/include/rts/Messages.h >+%%GHC_LIBDIR%%/include/rts/OSThreads.h >+%%GHC_LIBDIR%%/include/rts/Parallel.h >+%%GHC_LIBDIR%%/include/rts/PrimFloat.h >+%%GHC_LIBDIR%%/include/rts/Profiling.h >+%%GHC_LIBDIR%%/include/rts/Signals.h >+%%GHC_LIBDIR%%/include/rts/SpinLock.h >+%%GHC_LIBDIR%%/include/rts/Stable.h >+%%GHC_LIBDIR%%/include/rts/StaticPtrTable.h >+%%GHC_LIBDIR%%/include/rts/TTY.h >+%%GHC_LIBDIR%%/include/rts/Threads.h >+%%GHC_LIBDIR%%/include/rts/Ticky.h >+%%GHC_LIBDIR%%/include/rts/Time.h >+%%GHC_LIBDIR%%/include/rts/Timer.h >+%%GHC_LIBDIR%%/include/rts/Types.h >+%%GHC_LIBDIR%%/include/rts/Utils.h >+%%GHC_LIBDIR%%/include/rts/prof/CCS.h >+%%GHC_LIBDIR%%/include/rts/prof/LDV.h >+%%GHC_LIBDIR%%/include/rts/storage/Block.h >+%%GHC_LIBDIR%%/include/rts/storage/ClosureMacros.h >+%%GHC_LIBDIR%%/include/rts/storage/ClosureTypes.h >+%%GHC_LIBDIR%%/include/rts/storage/Closures.h >+%%GHC_LIBDIR%%/include/rts/storage/FunTypes.h >+%%GHC_LIBDIR%%/include/rts/storage/GC.h >+%%GHC_LIBDIR%%/include/rts/storage/InfoTables.h >+%%GHC_LIBDIR%%/include/rts/storage/MBlock.h >+%%GHC_LIBDIR%%/include/rts/storage/TSO.h >+%%GHC_LIBDIR%%/include/stg/DLL.h >+%%GHC_LIBDIR%%/include/stg/HaskellMachRegs.h >+%%GHC_LIBDIR%%/include/stg/MachRegs.h >+%%GHC_LIBDIR%%/include/stg/MiscClosures.h >+%%GHC_LIBDIR%%/include/stg/Prim.h >+%%GHC_LIBDIR%%/include/stg/Regs.h >+%%GHC_LIBDIR%%/include/stg/RtsMachRegs.h >+%%GHC_LIBDIR%%/include/stg/SMP.h >+%%GHC_LIBDIR%%/include/stg/Ticky.h >+%%GHC_LIBDIR%%/include/stg/Types.h >+%%GHC_LIBDIR%%/integer-gmp-1.0.1.0/GHC/Integer.hi >+%%GHC_LIBDIR%%/integer-gmp-1.0.1.0/GHC/Integer/GMP/Internals.hi >+%%GHC_LIBDIR%%/integer-gmp-1.0.1.0/GHC/Integer/Logarithms.hi >+%%GHC_LIBDIR%%/integer-gmp-1.0.1.0/GHC/Integer/Logarithms/Internals.hi >+%%GHC_LIBDIR%%/integer-gmp-1.0.1.0/GHC/Integer/Type.hi >+%%GHC_LIBDIR%%/integer-gmp-1.0.1.0/HSinteger-gmp-1.0.1.0.o >+%%GHC_LIBDIR%%/integer-gmp-1.0.1.0/include/HsIntegerGmp.h >+%%GHC_LIBDIR%%/integer-gmp-1.0.1.0/include/ghc-gmp.h >+%%GHC_LIBDIR%%/integer-gmp-1.0.1.0/libHSinteger-gmp-1.0.1.0.a >+%%GHC_LIBDIR%%/llvm-targets >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/Cont.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/Cont/Class.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/Error.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/Error/Class.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/Except.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/Identity.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/List.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/RWS.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/RWS/Class.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/RWS/Lazy.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/RWS/Strict.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/Reader.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/Reader/Class.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/State.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/State/Class.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/State/Lazy.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/State/Strict.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/Trans.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/Writer.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/Writer/Class.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/Writer/Lazy.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/Control/Monad/Writer/Strict.hi >+%%GHC_LIBDIR%%/mtl-2.2.2/HSmtl-2.2.2.o >+%%GHC_LIBDIR%%/mtl-2.2.2/libHSmtl-2.2.2.a >+%%GHC_LIBDIR%%/package.conf.d/Cabal-2.2.0.0.conf >+%%GHC_LIBDIR%%/package.conf.d/array-0.5.2.0.conf >+%%GHC_LIBDIR%%/package.conf.d/base-4.11.0.0.conf >+%%GHC_LIBDIR%%/package.conf.d/binary-0.8.5.1.conf >+%%GHC_LIBDIR%%/package.conf.d/bytestring-0.10.8.2.conf >+%%GHC_LIBDIR%%/package.conf.d/containers-0.5.11.0.conf >+%%GHC_LIBDIR%%/package.conf.d/deepseq-1.4.3.0.conf >+%%GHC_LIBDIR%%/package.conf.d/directory-1.3.1.5.conf >+%%GHC_LIBDIR%%/package.conf.d/filepath-1.4.2.conf >+%%GHC_LIBDIR%%/package.conf.d/ghc-%%GHC_VERSION%%.conf >+%%GHC_LIBDIR%%/package.conf.d/ghc-boot-%%GHC_VERSION%%.conf >+%%GHC_LIBDIR%%/package.conf.d/ghc-boot-th-%%GHC_VERSION%%.conf >+%%GHC_LIBDIR%%/package.conf.d/ghc-compact-0.1.0.0.conf >+%%GHC_LIBDIR%%/package.conf.d/ghc-prim-0.5.2.0.conf >+%%GHC_LIBDIR%%/package.conf.d/ghci-%%GHC_VERSION%%.conf >+%%GHC_LIBDIR%%/package.conf.d/haskeline-0.7.4.2.conf >+%%GHC_LIBDIR%%/package.conf.d/hpc-0.6.0.3.conf >+%%GHC_LIBDIR%%/package.conf.d/integer-gmp-1.0.1.0.conf >+%%GHC_LIBDIR%%/package.conf.d/mtl-2.2.2.conf >+%%GHC_LIBDIR%%/package.conf.d/package.cache >+%%GHC_LIBDIR%%/package.conf.d/package.cache.lock >+%%GHC_LIBDIR%%/package.conf.d/parsec-3.1.13.0.conf >+%%GHC_LIBDIR%%/package.conf.d/pretty-1.1.3.6.conf >+%%GHC_LIBDIR%%/package.conf.d/process-1.6.3.0.conf >+%%GHC_LIBDIR%%/package.conf.d/rts.conf >+%%GHC_LIBDIR%%/package.conf.d/stm-2.4.5.0.conf >+%%GHC_LIBDIR%%/package.conf.d/template-haskell-2.13.0.0.conf >+%%GHC_LIBDIR%%/package.conf.d/terminfo-0.4.1.1.conf >+%%GHC_LIBDIR%%/package.conf.d/text-1.2.3.0.conf >+%%GHC_LIBDIR%%/package.conf.d/time-1.8.0.2.conf >+%%GHC_LIBDIR%%/package.conf.d/transformers-0.5.5.0.conf >+%%GHC_LIBDIR%%/package.conf.d/unix-2.7.2.2.conf >+%%GHC_LIBDIR%%/package.conf.d/xhtml-3000.2.2.conf >+%%GHC_LIBDIR%%/parsec-3.1.13.0/HSparsec-3.1.13.0.o >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec/ByteString.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec/ByteString/Lazy.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec/Char.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec/Combinator.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec/Error.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec/Expr.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec/Language.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec/Perm.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec/Pos.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec/Prim.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec/String.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec/Text.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec/Text/Lazy.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/Parsec/Token.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/ParserCombinators/Parsec.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/ParserCombinators/Parsec/Char.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/ParserCombinators/Parsec/Combinator.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/ParserCombinators/Parsec/Error.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/ParserCombinators/Parsec/Expr.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/ParserCombinators/Parsec/Language.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/ParserCombinators/Parsec/Perm.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/ParserCombinators/Parsec/Pos.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/ParserCombinators/Parsec/Prim.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/Text/ParserCombinators/Parsec/Token.hi >+%%GHC_LIBDIR%%/parsec-3.1.13.0/libHSparsec-3.1.13.0.a >+%%GHC_LIBDIR%%/platformConstants >+%%GHC_LIBDIR%%/pretty-1.1.3.6/HSpretty-1.1.3.6.o >+%%GHC_LIBDIR%%/pretty-1.1.3.6/Text/PrettyPrint.hi >+%%GHC_LIBDIR%%/pretty-1.1.3.6/Text/PrettyPrint/Annotated.hi >+%%GHC_LIBDIR%%/pretty-1.1.3.6/Text/PrettyPrint/Annotated/HughesPJ.hi >+%%GHC_LIBDIR%%/pretty-1.1.3.6/Text/PrettyPrint/Annotated/HughesPJClass.hi >+%%GHC_LIBDIR%%/pretty-1.1.3.6/Text/PrettyPrint/HughesPJ.hi >+%%GHC_LIBDIR%%/pretty-1.1.3.6/Text/PrettyPrint/HughesPJClass.hi >+%%GHC_LIBDIR%%/pretty-1.1.3.6/libHSpretty-1.1.3.6.a >+%%GHC_LIBDIR%%/process-1.6.3.0/HSprocess-1.6.3.0.o >+%%GHC_LIBDIR%%/process-1.6.3.0/System/Cmd.hi >+%%GHC_LIBDIR%%/process-1.6.3.0/System/Process.hi >+%%GHC_LIBDIR%%/process-1.6.3.0/System/Process/Common.hi >+%%GHC_LIBDIR%%/process-1.6.3.0/System/Process/Internals.hi >+%%GHC_LIBDIR%%/process-1.6.3.0/System/Process/Posix.hi >+%%GHC_LIBDIR%%/process-1.6.3.0/include/processFlags.h >+%%GHC_LIBDIR%%/process-1.6.3.0/include/runProcess.h >+%%GHC_LIBDIR%%/process-1.6.3.0/libHSprocess-1.6.3.0.a >+%%GHC_LIBDIR%%/rts/libCffi.a >+%%GHC_LIBDIR%%/rts/libCffi_debug.a >+%%GHC_LIBDIR%%/rts/libCffi_l.a >+%%GHC_LIBDIR%%/rts/libCffi_thr.a >+%%GHC_LIBDIR%%/rts/libCffi_thr_debug.a >+%%GHC_LIBDIR%%/rts/libCffi_thr_l.a >+%%GHC_LIBDIR%%/rts/libHSrts.a >+%%GHC_LIBDIR%%/rts/libHSrts_debug.a >+%%GHC_LIBDIR%%/rts/libHSrts_l.a >+%%GHC_LIBDIR%%/rts/libHSrts_thr.a >+%%GHC_LIBDIR%%/rts/libHSrts_thr_debug.a >+%%GHC_LIBDIR%%/rts/libHSrts_thr_l.a >+%%GHC_LIBDIR%%/settings >+%%GHC_LIBDIR%%/stm-2.4.5.0/Control/Concurrent/STM.hi >+%%GHC_LIBDIR%%/stm-2.4.5.0/Control/Concurrent/STM/TArray.hi >+%%GHC_LIBDIR%%/stm-2.4.5.0/Control/Concurrent/STM/TBQueue.hi >+%%GHC_LIBDIR%%/stm-2.4.5.0/Control/Concurrent/STM/TChan.hi >+%%GHC_LIBDIR%%/stm-2.4.5.0/Control/Concurrent/STM/TMVar.hi >+%%GHC_LIBDIR%%/stm-2.4.5.0/Control/Concurrent/STM/TQueue.hi >+%%GHC_LIBDIR%%/stm-2.4.5.0/Control/Concurrent/STM/TSem.hi >+%%GHC_LIBDIR%%/stm-2.4.5.0/Control/Concurrent/STM/TVar.hi >+%%GHC_LIBDIR%%/stm-2.4.5.0/Control/Monad/STM.hi >+%%GHC_LIBDIR%%/stm-2.4.5.0/Control/Sequential/STM.hi >+%%GHC_LIBDIR%%/stm-2.4.5.0/HSstm-2.4.5.0.o >+%%GHC_LIBDIR%%/stm-2.4.5.0/libHSstm-2.4.5.0.a >+%%GHC_LIBDIR%%/template-haskell-2.13.0.0/HStemplate-haskell-2.13.0.0.o >+%%GHC_LIBDIR%%/template-haskell-2.13.0.0/Language/Haskell/TH.hi >+%%GHC_LIBDIR%%/template-haskell-2.13.0.0/Language/Haskell/TH/LanguageExtensions.hi >+%%GHC_LIBDIR%%/template-haskell-2.13.0.0/Language/Haskell/TH/Lib.hi >+%%GHC_LIBDIR%%/template-haskell-2.13.0.0/Language/Haskell/TH/Lib/Internal.hi >+%%GHC_LIBDIR%%/template-haskell-2.13.0.0/Language/Haskell/TH/Lib/Map.hi >+%%GHC_LIBDIR%%/template-haskell-2.13.0.0/Language/Haskell/TH/Ppr.hi >+%%GHC_LIBDIR%%/template-haskell-2.13.0.0/Language/Haskell/TH/PprLib.hi >+%%GHC_LIBDIR%%/template-haskell-2.13.0.0/Language/Haskell/TH/Quote.hi >+%%GHC_LIBDIR%%/template-haskell-2.13.0.0/Language/Haskell/TH/Syntax.hi >+%%GHC_LIBDIR%%/template-haskell-2.13.0.0/libHStemplate-haskell-2.13.0.0.a >+%%GHC_LIBDIR%%/template-hsc.h >+%%GHC_LIBDIR%%/terminfo-0.4.1.1/HSterminfo-0.4.1.1.o >+%%GHC_LIBDIR%%/terminfo-0.4.1.1/System/Console/Terminfo.hi >+%%GHC_LIBDIR%%/terminfo-0.4.1.1/System/Console/Terminfo/Base.hi >+%%GHC_LIBDIR%%/terminfo-0.4.1.1/System/Console/Terminfo/Color.hi >+%%GHC_LIBDIR%%/terminfo-0.4.1.1/System/Console/Terminfo/Cursor.hi >+%%GHC_LIBDIR%%/terminfo-0.4.1.1/System/Console/Terminfo/Edit.hi >+%%GHC_LIBDIR%%/terminfo-0.4.1.1/System/Console/Terminfo/Effects.hi >+%%GHC_LIBDIR%%/terminfo-0.4.1.1/System/Console/Terminfo/Keys.hi >+%%GHC_LIBDIR%%/terminfo-0.4.1.1/libHSterminfo-0.4.1.1.a >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Array.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Encoding.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Encoding/Error.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Foreign.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/IO.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Builder.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Builder/Functions.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Builder/Int/Digits.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Builder/RealFloat/Functions.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Encoding/Fusion.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Encoding/Fusion/Common.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Encoding/Utf16.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Encoding/Utf32.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Encoding/Utf8.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Functions.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Fusion.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Fusion/CaseMapping.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Fusion/Common.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Fusion/Size.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Fusion/Types.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/IO.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Lazy.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Lazy/Encoding/Fusion.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Lazy/Fusion.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Lazy/Search.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Private.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Read.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Search.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Unsafe.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Unsafe/Char.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Internal/Unsafe/Shift.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Lazy.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Lazy/Builder.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Lazy/Builder/Int.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Lazy/Builder/RealFloat.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Lazy/Encoding.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Lazy/IO.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Lazy/Internal.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Lazy/Read.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Read.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Show.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/Data/Text/Unsafe.hi >+%%GHC_LIBDIR%%/text-1.2.3.0/HStext-1.2.3.0.o >+%%GHC_LIBDIR%%/text-1.2.3.0/libHStext-1.2.3.0.a >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Calendar.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Calendar/Days.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Calendar/Easter.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Calendar/Gregorian.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Calendar/Julian.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Calendar/JulianYearDay.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Calendar/MonthDay.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Calendar/OrdinalDate.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Calendar/Private.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Calendar/WeekDate.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Clock.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Clock/Internal/AbsoluteTime.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Clock/Internal/CTimespec.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Clock/Internal/CTimeval.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Clock/Internal/DiffTime.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Clock/Internal/NominalDiffTime.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Clock/Internal/POSIXTime.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Clock/Internal/SystemTime.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Clock/Internal/UTCDiff.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Clock/Internal/UTCTime.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Clock/Internal/UniversalTime.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Clock/POSIX.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Clock/System.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Clock/TAI.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Format.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Format/Locale.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/Format/Parse.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/LocalTime.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/LocalTime/Internal/LocalTime.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/LocalTime/Internal/TimeOfDay.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/LocalTime/Internal/TimeZone.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/Data/Time/LocalTime/Internal/ZonedTime.hi >+%%GHC_LIBDIR%%/time-1.8.0.2/HStime-1.8.0.2.o >+%%GHC_LIBDIR%%/time-1.8.0.2/include/HsTime.h >+%%GHC_LIBDIR%%/time-1.8.0.2/include/HsTimeConfig.h >+%%GHC_LIBDIR%%/time-1.8.0.2/libHStime-1.8.0.2.a >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Applicative/Backwards.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Applicative/Lift.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Signatures.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/Accum.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/Class.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/Cont.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/Error.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/Except.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/Identity.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/List.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/Maybe.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/RWS.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/RWS/Lazy.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/RWS/Strict.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/Reader.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/Select.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/State.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/State/Lazy.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/State/Strict.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/Writer.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/Writer/Lazy.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Control/Monad/Trans/Writer/Strict.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Data/Functor/Constant.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/Data/Functor/Reverse.hi >+%%GHC_LIBDIR%%/transformers-0.5.5.0/HStransformers-0.5.5.0.o >+%%GHC_LIBDIR%%/transformers-0.5.5.0/libHStransformers-0.5.5.0.a >+%%GHC_LIBDIR%%/unix-2.7.2.2/HSunix-2.7.2.2.o >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/ByteString.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/ByteString/FilePath.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Directory.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Directory/ByteString.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Directory/Common.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/DynamicLinker.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/DynamicLinker/ByteString.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/DynamicLinker/Common.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/DynamicLinker/Module.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/DynamicLinker/Module/ByteString.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/DynamicLinker/Prim.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Env.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Env/ByteString.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Error.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Fcntl.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Files.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Files/ByteString.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Files/Common.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/IO.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/IO/ByteString.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/IO/Common.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Process.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Process/ByteString.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Process/Common.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Process/Internals.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Resource.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Semaphore.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/SharedMem.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Signals.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Signals/Exts.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Temp.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Temp/ByteString.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Terminal.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Terminal/ByteString.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Terminal/Common.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Time.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/Unistd.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/System/Posix/User.hi >+%%GHC_LIBDIR%%/unix-2.7.2.2/include/HsUnix.h >+%%GHC_LIBDIR%%/unix-2.7.2.2/include/HsUnixConfig.h >+%%GHC_LIBDIR%%/unix-2.7.2.2/include/execvpe.h >+%%GHC_LIBDIR%%/unix-2.7.2.2/libHSunix-2.7.2.2.a >+%%GHC_LIBDIR%%/xhtml-3000.2.2/HSxhtml-3000.2.2.o >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml/BlockTable.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml/Debug.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml/Extras.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml/Frameset.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml/Frameset/Attributes.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml/Frameset/Elements.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml/Internals.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml/Strict.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml/Strict/Attributes.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml/Strict/Elements.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml/Table.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml/Transitional.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml/Transitional/Attributes.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/Text/XHtml/Transitional/Elements.hi >+%%GHC_LIBDIR%%/xhtml-3000.2.2/libHSxhtml-3000.2.2.a >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/Cabal-2.2.0.0/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/array-0.5.2.0/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/base-4.11.0.0/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/binary-0.8.5.1/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/bytestring-0.10.8.2/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/containers-0.5.11.0/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/deepseq-1.4.3.0/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/directory-1.3.1.5/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/filepath-1.4.2/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-compact-0.1.0.0/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-prim-0.5.2.0/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/haskeline-0.7.4.2/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/hpc-0.6.0.3/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.1.0/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/mtl-2.2.2/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/parsec-3.1.13.0/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/pretty-1.1.3.6/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/process-1.6.3.0/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/stm-2.4.5.0/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/template-haskell-2.13.0.0/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/terminfo-0.4.1.1/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/text-1.2.3.0/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/time-1.8.0.2/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/transformers-0.5.5.0/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/unix-2.7.2.2/LICENSE >+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/xhtml-3000.2.2/LICENSE
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 196899
:
159455
|
192347
|
192349
|
193949