Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Aug 2020 19:09:36 +0000 (UTC)
From:      Gleb Popov <arrowd@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r545249 - in head/lang/ghc: . files
Message-ID:  <202008181909.07IJ9awK076174@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: arrowd
Date: Tue Aug 18 19:09:36 2020
New Revision: 545249
URL: https://svnweb.freebsd.org/changeset/ports/545249

Log:
  lang/ghc: Switch to folly static pkg-plist and add aux Makefile target to poke
  with OPTIONs variety.

Added:
  head/lang/ghc/files/fixup-plist.hs   (contents, props changed)
Modified:
  head/lang/ghc/Makefile
  head/lang/ghc/pkg-plist

Modified: head/lang/ghc/Makefile
==============================================================================
--- head/lang/ghc/Makefile	Tue Aug 18 18:49:23 2020	(r545248)
+++ head/lang/ghc/Makefile	Tue Aug 18 19:09:36 2020	(r545249)
@@ -56,6 +56,8 @@ DYNAMIC_CONFIGURE_WITH=	system-libffi \
 DYNAMIC_LIB_DEPENDS=	libffi.so:devel/libffi
 DYNAMIC_SUB_LIST=	WITH_DYNAMIC="YES"
 DYNAMIC_SUB_LIST_OFF=	WITH_DYNAMIC="NO"
+DYNAMIC_PLIST_SUB=	NODYNAMIC="@comment "
+DYNAMIC_PLIST_SUB_OFF=	NODYNAMIC=""
 
 GMP_CONFIGURE_WITH=	gmp-includes=${LOCALBASE}/include \
 			gmp-libraries=${LOCALBASE}/lib
@@ -72,8 +74,6 @@ BOOT_SUB_LIST_OFF=	HSC2HS=${BOOT_HSC2HS}
 PROFILE_SUB_LIST=	WITH_PROFILE="YES"
 PROFILE_SUB_LIST_OFF=	WITH_PROFILE="NO"
 
-PLIST_SUB=		GHC_VERSION=${GHC_VERSION} GHC_LIBDIR=${GHC_LIBDIR_REL}
-
 GHC_VERSION=		8.10.1
 HSCOLOUR_VERSION=	1.24.4
 LLVM_VERSION=		90
@@ -179,14 +179,6 @@ CONFIGURE_ARGS+=	GHC=${LOCALBASE}/bin/ghc
 SLAVES_PREFIX=		${WRKDIR}/slaves_prefix
 SLAVES_WRKDIRPREFIX=	${WRKDIR}/slaves_wrkdirprefix
 
-# %%PORTDOCS%%%%DOCSDIR%%/html/libraries/doc-index-V.html
-post-install-script:
-	${FIND} -ds ${GHC_LIBDIR} -type f -print | ${SED} -E \
-		-e 's,^${STAGEDIR}${PREFIX}/?,,' \
-		-e '/^${GHC_LIBDIR:C/\//\\\//g}\/package.conf.d\/package\.cache/s|^|@comment |g' \
-		>> ${TMPPLIST}
-	${ECHO} '@postunexec ${RM} %D/${GHC_LIBDIR_REL}/package.conf.d/package.cache' >>${TMPPLIST}
-
 post-patch:
 	@${REINPLACE_CMD} -e 's|%%CC%%|${CC}|; \
 		s|%%AR%%|${AR}|; \
@@ -236,7 +228,12 @@ pre-configure: apply-slist
 post-install:
 	(for f in ${_EXECUTABLES} $$(${FIND} ${GHC_LIBDIR} -name '*.so*'); do \
 		${STRIP_CMD} $$f; done)
+	${RM} -r ${STAGEDIR}${DOCSDIR}/html/haddock/.build-html
 	${RM} ${STAGEDIR}${PREFIX}/bin/haddock
+
+.PHONY: fixup-plist
+fixup-plist:
+	${BOOT_DIR}/bin/runhaskell ${PATCHDIR}/fixup-plist.hs ${.CURDIR}/pkg-plist
 
 # Create a bootstrap compiler tar ball: run this in an interactive poudriere jail
 .PHONY: create-bootstrap

Added: head/lang/ghc/files/fixup-plist.hs
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/ghc/files/fixup-plist.hs	Tue Aug 18 19:09:36 2020	(r545249)
@@ -0,0 +1,32 @@
+import Data.List
+import System.Environment
+
+main = do
+  [pkgplist] <- getArgs
+  plistLines <- lines <$> readFile pkgplist
+  mapM (putStrLn . processLine2 . processLine1) plistLines
+
+processLine1 l
+  | "%%DYNAMIC%%" `isPrefixOf` l ||
+    "%%PROFILE%%" `isPrefixOf` l ||
+    "%%GMP%%" `isPrefixOf` l ||
+    "%%SIMPLE%%" `isPrefixOf` l = l
+
+  | ".dyn_hi" `isSuffixOf` l ||
+    "/ghc-iserv-dyn" `isSuffixOf` l ||
+    ".so" `isSuffixOf` l = "%%DYNAMIC%%" ++ l
+
+  | ".p_hi" `isSuffixOf` l ||
+    "/ghc-iserv-prof" `isSuffixOf` l ||
+    ".p_o" `isSuffixOf` l  ||
+    "_p.a" `isSuffixOf` l = "%%PROFILE%%" ++ l
+
+  | otherwise = l
+
+processLine2 l
+  | "%%GMP%%" `isPrefixOf` l ||
+    "%%SIMPLE%%" `isPrefixOf` l = l
+  | "/integer-gmp-" `isInfixOf` l = "%%GMP%%" ++ l
+  | "/integer-simple-" `isInfixOf` l = "%%SIMPLE%%" ++ l
+  | "/libCffi" `isInfixOf` l = "%%NODYNAMIC%%" ++ l
+  | otherwise = l

Modified: head/lang/ghc/pkg-plist
==============================================================================
--- head/lang/ghc/pkg-plist	Tue Aug 18 18:49:23 2020	(r545248)
+++ head/lang/ghc/pkg-plist	Tue Aug 18 19:09:36 2020	(r545249)
@@ -1,17 +1,4562 @@
 bin/ghc
-bin/ghci
+bin/ghc-8.10.1
 bin/ghc-pkg
-bin/runhaskell
-bin/runghc
-bin/haddock-ghc-%%GHC_VERSION%%
+bin/ghc-pkg-8.10.1
+bin/ghci
+bin/ghci-8.10.1
+bin/haddock-ghc-8.10.1
 bin/hp2ps
 bin/hpc
 bin/hsc2hs
-bin/ghc-%%GHC_VERSION%%
-bin/ghci-%%GHC_VERSION%%
-bin/ghc-pkg-%%GHC_VERSION%%
-bin/runghc-%%GHC_VERSION%%
-%%DOCS%%man/man1/ghc.1.gz
+bin/runghc
+bin/runghc-8.10.1
+bin/runhaskell
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ComponentsGraph.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ComponentsGraph.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ComponentsGraph.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/Configure.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/Configure.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/Configure.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ConfiguredComponent.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ConfiguredComponent.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ConfiguredComponent.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/DescribeUnitId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/DescribeUnitId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/DescribeUnitId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/FullUnitId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/FullUnitId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/FullUnitId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/Id.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/Id.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/Id.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/LinkedComponent.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/LinkedComponent.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/LinkedComponent.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/MixLink.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/MixLink.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/MixLink.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModSubst.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModSubst.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModSubst.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModuleScope.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModuleScope.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModuleScope.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModuleShape.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModuleShape.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModuleShape.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/PreExistingComponent.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/PreExistingComponent.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/PreExistingComponent.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/PreModuleShape.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/PreModuleShape.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/PreModuleShape.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ReadyComponent.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ReadyComponent.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ReadyComponent.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/UnifyM.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/UnifyM.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/UnifyM.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/CabalSpecVersion.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/CabalSpecVersion.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/CabalSpecVersion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Async.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Async.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Async.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Binary.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Binary.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Binary.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CharParsing.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CharParsing.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CharParsing.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CopyFile.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CopyFile.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CopyFile.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CreatePipe.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CreatePipe.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CreatePipe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/DList.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/DList.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/DList.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Directory.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Directory.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Directory.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Environment.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Environment.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Environment.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Exception.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Exception.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Exception.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/FilePath.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/FilePath.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/FilePath.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/GetShortPathName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/GetShortPathName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/GetShortPathName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Graph.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Graph.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Graph.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Internal/TempFile.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Internal/TempFile.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Internal/TempFile.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/MonadFail.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/MonadFail.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/MonadFail.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Newtype.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Newtype.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Newtype.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Parsing.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Parsing.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Parsing.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Prelude.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Prelude.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Prelude.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Prelude/Internal.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Prelude/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Prelude/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/ResponseFile.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/ResponseFile.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/ResponseFile.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Semigroup.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Semigroup.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Semigroup.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/SnocList.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/SnocList.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/SnocList.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Stack.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Stack.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Stack.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Time.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Time.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Time.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Typeable.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Typeable.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Typeable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compiler.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compiler.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compiler.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Class.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/FieldDescrs.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/FieldDescrs.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/FieldDescrs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Parsec.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Parsec.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Parsec.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Pretty.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Pretty.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Pretty.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/ConfVar.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/ConfVar.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/ConfVar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Field.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Field.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Field.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Lexer.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Lexer.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Lexer.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/LexerMonad.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/LexerMonad.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/LexerMonad.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/ParseResult.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/ParseResult.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/ParseResult.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Parser.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Parser.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Parser.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Pretty.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Pretty.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Pretty.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/GetOpt.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/GetOpt.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/GetOpt.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/InstalledPackageInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/InstalledPackageInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/InstalledPackageInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Lex.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Lex.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Lex.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/License.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/License.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/License.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Make.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Make.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Make.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/ModuleName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/ModuleName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/ModuleName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Package.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Package.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Package.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Check.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Check.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Check.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Configuration.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Configuration.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Configuration.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/FieldGrammar.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/FieldGrammar.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/FieldGrammar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Parsec.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Parsec.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Parsec.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/PrettyPrint.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/PrettyPrint.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/PrettyPrint.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Quirks.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Quirks.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Quirks.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Utils.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Utils.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Utils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Error.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Error.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Error.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/FieldLineStream.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/FieldLineStream.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/FieldLineStream.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Newtypes.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Newtypes.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Newtypes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Position.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Position.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Position.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Warning.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Warning.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Warning.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Pretty.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Pretty.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Pretty.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/ReadE.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/ReadE.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/ReadE.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/License.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/License.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/License.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseExceptionId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseExceptionId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseExceptionId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseExpression.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseExpression.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseExpression.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseListVersion.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseListVersion.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseListVersion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseReference.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseReference.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseReference.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Bench.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Bench.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Bench.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build/Macros.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build/Macros.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build/Macros.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build/PathsModule.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build/PathsModule.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build/PathsModule.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildPaths.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildPaths.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildPaths.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildTarget.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildTarget.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildTarget.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildToolDepends.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildToolDepends.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildToolDepends.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/CCompiler.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/CCompiler.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/CCompiler.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Command.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Command.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Command.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Compiler.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Compiler.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Compiler.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Configure.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Configure.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Configure.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Doctest.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Doctest.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Doctest.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Flag.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Flag.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Flag.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/EnvironmentParser.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/EnvironmentParser.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/EnvironmentParser.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/ImplInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/ImplInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/ImplInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/Internal.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHCJS.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHCJS.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHCJS.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Glob.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Glob.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Glob.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Haddock.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Haddock.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Haddock.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/HaskellSuite.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/HaskellSuite.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/HaskellSuite.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Hpc.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Hpc.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Hpc.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Install.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Install.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Install.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/InstallDirs.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/InstallDirs.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/InstallDirs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/InstallDirs/Internal.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/InstallDirs/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/InstallDirs/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/LocalBuildInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/LocalBuildInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/LocalBuildInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PackageIndex.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PackageIndex.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PackageIndex.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PreProcess.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PreProcess.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PreProcess.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PreProcess/Unlit.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PreProcess/Unlit.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PreProcess/Unlit.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Ar.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Ar.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Ar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Builtin.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Builtin.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Builtin.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Db.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Db.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Db.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Find.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Find.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Find.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/GHC.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/GHC.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/GHC.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/HcPkg.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/HcPkg.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/HcPkg.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Hpc.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Hpc.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Hpc.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Internal.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Ld.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Ld.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Ld.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/ResponseFile.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/ResponseFile.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/ResponseFile.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Run.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Run.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Run.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Script.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Script.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Script.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Strip.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Strip.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Strip.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Types.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Types.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Types.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Register.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Register.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Register.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Setup.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Setup.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Setup.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/ShowBuildInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/ShowBuildInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/ShowBuildInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/SrcDist.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/SrcDist.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/SrcDist.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/ExeV10.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/ExeV10.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/ExeV10.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/LibV09.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/LibV09.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/LibV09.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/Log.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/Log.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/Log.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/UHC.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/UHC.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/UHC.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/UserHooks.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/UserHooks.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/UserHooks.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Utils.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Utils.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Utils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Utils/Json.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Utils/Json.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Utils/Json.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/System.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/System.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/System.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/TestSuite.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/TestSuite.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/TestSuite.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Text.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Text.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Text.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AbiDependency.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AbiDependency.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AbiDependency.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AbiHash.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AbiHash.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AbiHash.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AnnotatedId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AnnotatedId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AnnotatedId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Benchmark.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Benchmark.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Benchmark.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Benchmark/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Benchmark/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Benchmark/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BenchmarkInterface.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BenchmarkInterface.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BenchmarkInterface.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BenchmarkType.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BenchmarkType.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BenchmarkType.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildInfo/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildInfo/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildInfo/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildType.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildType.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildType.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Component.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Component.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Component.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentInclude.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentInclude.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentInclude.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentLocalBuildInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentLocalBuildInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentLocalBuildInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentRequestedSpec.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentRequestedSpec.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentRequestedSpec.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/CondTree.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/CondTree.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/CondTree.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Condition.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Condition.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Condition.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ConfVar.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ConfVar.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ConfVar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Dependency.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Dependency.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Dependency.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/DependencyMap.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/DependencyMap.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/DependencyMap.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExeDependency.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExeDependency.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExeDependency.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Executable.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Executable.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Executable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Executable/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Executable/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Executable/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExecutableScope.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExecutableScope.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExecutableScope.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExposedModule.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExposedModule.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExposedModule.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Flag.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Flag.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Flag.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLib.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLib.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLib.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLib/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLib/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLib/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLibOption.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLibOption.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLibOption.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLibType.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLibType.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLibType.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GenericPackageDescription.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GenericPackageDescription.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GenericPackageDescription.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GenericPackageDescription/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GenericPackageDescription/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GenericPackageDescription/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GivenComponent.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GivenComponent.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GivenComponent.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/HookedBuildInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/HookedBuildInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/HookedBuildInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/IncludeRenaming.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/IncludeRenaming.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/IncludeRenaming.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo/FieldGrammar.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo/FieldGrammar.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo/FieldGrammar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LegacyExeDependency.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LegacyExeDependency.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LegacyExeDependency.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Library.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Library.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Library.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Library/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Library/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Library/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LibraryName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LibraryName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LibraryName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LibraryVisibility.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LibraryVisibility.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LibraryVisibility.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LocalBuildInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LocalBuildInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LocalBuildInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Mixin.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Mixin.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Mixin.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Module.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Module.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Module.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ModuleReexport.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ModuleReexport.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ModuleReexport.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ModuleRenaming.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ModuleRenaming.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ModuleRenaming.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/MungedPackageId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/MungedPackageId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/MungedPackageId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/MungedPackageName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/MungedPackageName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/MungedPackageName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageDescription.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageDescription.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageDescription.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageDescription/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageDescription/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageDescription/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageId/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageId/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageId/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageName/Magic.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageName/Magic.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageName/Magic.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageVersionConstraint.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageVersionConstraint.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageVersionConstraint.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigDependency.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigDependency.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigDependency.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigVersion.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigVersion.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigVersion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigVersionRange.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigVersionRange.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigVersionRange.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SetupBuildInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SetupBuildInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SetupBuildInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SetupBuildInfo/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SetupBuildInfo/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SetupBuildInfo/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SourceRepo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SourceRepo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SourceRepo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SourceRepo/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SourceRepo/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SourceRepo/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TargetInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TargetInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TargetInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuite.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuite.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuite.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuite/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuite/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuite/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuiteInterface.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuiteInterface.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuiteInterface.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestType.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestType.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestType.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/UnitId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/UnitId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/UnitId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/UnqualComponentName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/UnqualComponentName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/UnqualComponentName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Version.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Version.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Version.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionInterval.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionInterval.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionInterval.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionRange.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionRange.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionRange.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionRange/Internal.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionRange/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionRange/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Base62.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Base62.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Base62.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Generic.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Generic.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Generic.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/IOData.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/IOData.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/IOData.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/LogProgress.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/LogProgress.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/LogProgress.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/MD5.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/MD5.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/MD5.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/MapAccum.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/MapAccum.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/MapAccum.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/NubList.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/NubList.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/NubList.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Progress.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Progress.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Progress.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/ShortText.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/ShortText.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/ShortText.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/String.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/String.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/String.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Structured.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Structured.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Structured.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/UnionFind.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/UnionFind.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/UnionFind.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Verbosity.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Verbosity.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Verbosity.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Verbosity/Internal.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Verbosity/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Verbosity/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Version.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Version.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Version.p_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/HSCabal-3.2.0.0.o
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/HSCabal-3.2.0.0.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Language/Haskell/Extension.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Language/Haskell/Extension.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Language/Haskell/Extension.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Paths_Cabal.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Paths_Cabal.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Paths_Cabal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/libHSCabal-3.2.0.0-ghc8.10.1.so
+lib/ghc-8.10.1/Cabal-3.2.0.0/libHSCabal-3.2.0.0.a
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/libHSCabal-3.2.0.0_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Base.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Base.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Base.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IArray.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IArray.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IArray.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO/Internals.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO/Internals.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO/Internals.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO/Safe.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/MArray.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/MArray.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/MArray.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/MArray/Safe.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/MArray/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/MArray/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/ST.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/ST.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/ST.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/ST/Safe.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/ST/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/ST/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable/Internals.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable/Internals.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable/Internals.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable/Safe.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Unboxed.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Unboxed.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Unboxed.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Unsafe.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Unsafe.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Unsafe.p_hi
+lib/ghc-8.10.1/array-0.5.4.0/HSarray-0.5.4.0.o
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/HSarray-0.5.4.0.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/libHSarray-0.5.4.0-ghc8.10.1.so
+lib/ghc-8.10.1/array-0.5.4.0/libHSarray-0.5.4.0.a
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/libHSarray-0.5.4.0_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Applicative.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Applicative.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Applicative.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Arrow.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Arrow.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Arrow.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Category.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Category.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Category.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/Chan.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/Chan.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/Chan.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/MVar.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/MVar.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/MVar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/QSem.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/QSem.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/QSem.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/QSemN.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/QSemN.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/QSemN.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Exception.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Exception.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Exception.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Exception/Base.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Exception/Base.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Exception/Base.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Fail.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Fail.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Fail.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Fix.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Fix.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Fix.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/IO/Class.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/IO/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/IO/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Instances.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Instances.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Instances.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Imp.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Imp.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Imp.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Imp.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Imp.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Imp.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Safe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Unsafe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Unsafe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Unsafe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Safe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Strict.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Strict.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Strict.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Unsafe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Unsafe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Unsafe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Zip.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Zip.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Zip.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bifoldable.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Bifoldable.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bifoldable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bifunctor.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Bifunctor.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bifunctor.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bitraversable.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Bitraversable.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bitraversable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bits.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Bits.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bits.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bool.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Bool.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bool.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Char.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Char.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Char.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Coerce.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Coerce.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Coerce.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Complex.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Complex.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Complex.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Data.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Data.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Data.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Dynamic.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Dynamic.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Dynamic.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Either.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Either.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Either.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Eq.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Eq.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Eq.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Fixed.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Fixed.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Fixed.p_hi

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008181909.07IJ9awK076174>