output:
~/programming/haskell/yesod/snoyman-blog-example $ stack build
snoyman-blog-example-0.0.0: build
Building snoyman-blog-example-0.0.0...
Preprocessing library snoyman-blog-example-0.0.0...
In-place registering snoyman-blog-example-0.0.0...
Preprocessing executable 'snoyman-blog-example' for
snoyman-blog-example-0.0.0...
Linking .stack-work/dist/x86_64-linux/Cabal-1.18.1.5/build/snoyman-blog-example/snoyman-blog-example ...
/home/cody/programming/haskell/yesod/snoyman-blog-example/.stack-work/dist/x86_64-linux/Cabal-1.18.1.5/build/libHSsnoyman-blog-example-0.0.0.a(Application.o): In function `s1wzy_info':
(.text+0x2bf8): undefined reference to `snoymanzmblogzmexamplezm0zi0zi0_HandlerziEcho_getEchoR1_info'
/home/cody/programming/haskell/yesod/snoyman-blog-example/.stack-work/dist/x86_64-linux/Cabal-1.18.1.5/build/libHSsnoyman-blog-example-0.0.0.a(Application.o): In function `S1wG6_srt':
(.data+0xa78): undefined reference to `snoymanzmblogzmexamplezm0zi0zi0_HandlerziEcho_getEchoR1_closure'
collect2: error: ld returned 1 exit status
-- While building package snoyman-blog-example-0.0.0 using:
/home/cody/.stack/programs/x86_64-linux/ghc-7.8.4/bin/runhaskell -package=Cabal-1.18.1.5 -clear-package-db -global-package-db -package-db=/home/cody/.stack/snapshots/x86_64-linux/lts-2.16/7.8.4/pkgdb/ /tmp/stack18014/Setup.hs --builddir=.stack-work/dist/x86_64-linux/Cabal-1.18.1.5/ build
Process exited with code: ExitFailure 1
I tried running stack clean as well as deleting my dist directory to no avail. I'm now trying to delete the .stack-work directory. That didn't seem to fix things either.
I've figured out that adding this handler seemed to cause the issue:
{-# LANGUAGE TemplateHaskell #-}
module Handler.Echo where
import Import
getEchoR :: String -> Handler Html
getEchoR theText = do
defaultLayout $ do
[whamlet|<h1>#{theText}|]
I'm also using yesod devel as per the instructions here.
I think this issue happened after upgrading to stack 0.1.1.0 after using the experimental stack upgrade command. I'm rolling back to using stack 0.1.0.0 to see if the issue persists.
Can confirm same issue with stack 0.1.0.0.
I have the feeling I'm doing something silly.
Tried using ghc 7.10, stack, stack 0.1.0.0, and stackage nightly but got the same issue:
/tmp/stack-yesod-issue $ cat stack.yaml
flags: {}
packages:
- '.'
extra-deps: []
resolver: nightly-2015-07-03
/tmp/stack-yesod-issue $ git diff snoyman-blog-example.cabal
WARNING: terminal is not fully functional
- (press RETURN)
diff --git a/snoyman-blog-example.cabal b/snoyman-blog-example.cabal
index c67091d..05dba02 100644
--- a/snoyman-blog-example.cabal
+++ b/snoyman-blog-example.cabal
@@ -50,15 +50,15 @@ library
, yesod >= 1.4.1 && < 1.5
, yesod-core >= 1.4.6 && < 1.5
, yesod-auth >= 1.4.0 && < 1.5
- , yesod-static >= 1.4.0.3 && < 1.5
+ , yesod-static
, yesod-form >= 1.4.0 && < 1.5
, classy-prelude >= 0.10.2
, classy-prelude-conduit >= 0.10.2
, classy-prelude-yesod >= 0.10.2
, bytestring >= 0.9 && < 0.11
, text >= 0.11 && < 2.0
- , persistent >= 2.0 && < 2.2
- , persistent-sqlite >= 2.1.1 && < 2.2
+ , persistent
+ , persistent-sqlite
, persistent-template >= 2.0 && < 2.2
, template-haskell
, shakespeare >= 2.0 && < 2.1
/tmp/stack-yesod-issue $ stack build
snoyman-blog-example-0.0.0: build
Building snoyman-blog-example-0.0.0...
Preprocessing library snoyman-blog-example-0.0.0...
In-place registering snoyman-blog-example-0.0.0...
Preprocessing executable 'snoyman-blog-example' for
snoyman-blog-example-0.0.0...
Linking .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example ...
/tmp/stack-yesod-issue/.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/libHSsnoyman-blog-example-0.0.0-2fEaPyENEJfAlpAiSwzOq0.a(Application.o):(.text+0x7bb0): undefined reference to `snoymzu2fEaPyENEJfAlpAiSwzzOq0_HandlerziEcho_getEchoR1_info'
/tmp/stack-yesod-issue/.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/libHSsnoyman-blog-example-0.0.0-2fEaPyENEJfAlpAiSwzOq0.a(Application.o):(.data+0xed8): undefined reference to `snoymzu2fEaPyENEJfAlpAiSwzzOq0_HandlerziEcho_getEchoR1_closure'
collect2: error: ld returned 1 exit status
-- While building package snoyman-blog-example-0.0.0 using:
/opt/ghc/7.10.2/bin/runhaskell -package=Cabal-1.22.4.0 -clear-package-db -global-package-db -package-db=/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/ /tmp/stack24436/Setup.hs --builddir=.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/ build
Process exited with code: ExitFailure 1
Using ghc 7.10, stack, stack 0.1.0.0, stackage nightly-2015-07-03, and stack build -v:
/tmp/stack-yesod-issue $ stack build -v
Version 0.1.0.0
2015-07-04 06:01:34.06553: [debug] Checking for project config at: /tmp/stack-yesod-issue/stack.yaml @(stack_A8yhSvN6vKsFQrN3r3ROxH:Stack.Config src/Stack/Config.hs:473:9)
2015-07-04 06:01:34.065769: [debug] Loading project config file stack.yaml @(stack_A8yhSvN6vKsFQrN3r3ROxH:Stack.Config src/Stack/Config.hs:494:13)
2015-07-04 06:01:34.076611: [debug] Run process: ghc --info @(stack_A8yhSvN6vKsFQrN3r3ROxH:System.Process.Read src/System/Process/Read.hs:253:3)
2015-07-04 06:01:34.125343: [debug] Run process: ghc --numeric-version @(stack_A8yhSvN6vKsFQrN3r3ROxH:System.Process.Read src/System/Process/Read.hs:253:3)
2015-07-04 06:01:34.157502: [debug] Run process: ghc-pkg --no-user-package-db field --simple-output Cabal id @(stack_A8yhSvN6vKsFQrN3r3ROxH:System.Process.Read src/System/Process/Read.hs:253:3)
2015-07-04 06:01:34.186503: [debug] Run process: ghc-pkg --no-user-package-db list --global @(stack_A8yhSvN6vKsFQrN3r3ROxH:System.Process.Read src/System/Process/Read.hs:253:3)
2015-07-04 06:01:34.210866: [debug] Checking resolver: nightly-2015-07-03 @(stack_A8yhSvN6vKsFQrN3r3ROxH:Stack.Build.Source src/Stack/Build/Source.hs:75:13)
2015-07-04 06:01:34.606812: [debug] Run process: ghc-pkg --global --no-user-package-db dump --expand-pkgroot @(stack_A8yhSvN6vKsFQrN3r3ROxH:System.Process.Read src/System/Process/Read.hs:253:3)
2015-07-04 06:01:34.697045: [debug] Run process: ghc-pkg --user --no-user-package-db --package-db /home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/ dump --expand-pkgroot @(stack_A8yhSvN6vKsFQrN3r3ROxH:System.Process.Read src/System/Process/Read.hs:253:3)
2015-07-04 06:01:34.883298: [debug] Run process: ghc-pkg --user --no-user-package-db --package-db /tmp/stack-yesod-issue/.stack-work/install/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/ dump --expand-pkgroot @(stack_A8yhSvN6vKsFQrN3r3ROxH:System.Process.Read src/System/Process/Read.hs:253:3)
2015-07-04 06:01:36.253242: [debug] Run process: ghc-pkg --no-user-package-db list --global @(stack_A8yhSvN6vKsFQrN3r3ROxH:System.Process.Read src/System/Process/Read.hs:253:3)
2015-07-04 06:01:36.307087: [info] snoyman-blog-example-0.0.0: build @(stack_A8yhSvN6vKsFQrN3r3ROxH:Stack.Build.Execute src/Stack/Build/Execute.hs:468:18)
2015-07-04 06:01:36.310315: [debug] Run process: /opt/ghc/7.10.2/bin/runhaskell -package=Cabal-1.22.4.0 -clear-package-db -global-package-db -package-db=/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/ /tmp/stack24846/Setup.hs --builddir=.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/ build @(stack_A8yhSvN6vKsFQrN3r3ROxH:Stack.Build.Execute src/Stack/Build/Execute.hs:568:13)
2015-07-04 06:01:36.70954: [info] Building snoyman-blog-example-0.0.0... @(<unknown>:<unknown> <unknown>:0:0)
2015-07-04 06:01:36.725957: [info] Preprocessing library snoyman-blog-example-0.0.0... @(<unknown>:<unknown> <unknown>:0:0)
I figured out that Setup.hs was just a simple:
import Distribution.Simple
main = defaultMain
Extracted out the cabal command and ran it with "asetup.hs" (the above):
/tmp/stack-yesod-issue $ /opt/ghc/7.10.2/bin/runhaskell -package=Cabal-1.22.4.0 -clear-package-db -global-package-db -package-db=/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/ ./asetup.hs --builddir=.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/ build -v
Component build order: library, executable 'snoyman-blog-example'
creating .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build
creating .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/autogen
Building snoyman-blog-example-0.0.0...
/opt/ghc/7.10.2/bin/ghc-pkg init .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/package.conf.inplace
Preprocessing library snoyman-blog-example-0.0.0...
Building library...
creating .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build
/opt/ghc/7.10.2/bin/ghc --make -fbuilding-cabal-package -O -static -dynamic-too -dynosuf dyn_o -dynhisuf dyn_hi -outputdir .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build -odir .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build -hidir .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build -stubdir .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build -i -i.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build -i. -iapp -i.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/autogen -I.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/autogen -I.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build -optP-include -optP.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/autogen/cabal_macros.h -this-package-key snoym_2fEaPyENEJfAlpAiSwzOq0 -hide-all-packages -no-user-package-db -package-db /home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/ -package-db /tmp/stack-yesod-issue/.stack-work/install/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/ -package-db .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/package.conf.inplace -package-id aeson-0.8.0.2-a54c56aaf724aa9f6cd1e71d63b464ff -package-id base-4.8.1.0-aa39347261fb4b0f8c1cca2073af62f0 -package-id bytestring-0.10.6.0-1403fae5032034090023845623becea1 -package-id classy-prelude-0.12.1.1-524b2f0df467b18cd356f9a5a59f9c26 -package-id classy-prelude-conduit-0.12.0.1-077a87834569a9ed5ad3ac309e990f78 -package-id classy-prelude-yesod-0.12.0.1-cc396a749f3231839e4a1d7f07303183 -package-id conduit-1.2.4.2-d9bb79ba5620cc26fa5e139bf5fa7bc4 -package-id containers-0.5.6.2-7043afc1ff0692e585e794c250736c3c -package-id data-default-0.5.3-2d65f50226dd65ffac3d490a7d11fc85 -package-id directory-1.2.2.0-6975523db1b363bb9f26a6e0487f8ff4 -package-id fast-logger-2.3.1-b19ee0febc9c01adb8e5ad67e3880884 -package-id file-embed-0.0.8.2-5e1e72961c02cb05b6555ce1fbcdadb0 -package-id hjsmin-0.1.4.7-b0402c3cafeeeb31758d012a07f5241a -package-id http-conduit-2.1.5.1-7695c584e310c76b7c2d0aa6de17bbe0 -package-id monad-control-1.0.0.4-34232a4387530e119aa3148860f40d2f -package-id monad-logger-0.3.13.1-7599650dff884721d2bc0e7fe265545f -package-id persistent-2.2-63d8a5a1dc11c5038b3c8ed4b83e337f -package-id persistent-sqlite-2.2-80de8d0dd46dc84def80b10eaa756f77 -package-id persistent-template-2.1.3.4-cf88718dcf3165e97010d2382b706182 -package-id safe-0.3.9-d529c31a0b6ed28da735f3fecb0205c9 -package-id shakespeare-2.0.5-0f28c65bbbf9e79405c75fac55e1d780 -package-id template-haskell-2.10.0.0-f3b015113e8aa8ecb627b37bd55228d2 -package-id text-1.2.1.1-02d363172c1d63a42784eba9c7e208b7 -package-id time-1.5.0.1-9f9ce8cb20645880e01a53c536247d73 -package-id unordered-containers-0.2.5.1-68701b634833f1f09cefbd81683d478c -package-id vector-0.10.12.3-9965c088b993802b3854d6f5ed8ec420 -package-id wai-extra-3.0.7.1-801dd08377e00929835f0578b7779168 -package-id wai-logger-2.2.4.1-da9c194e1b5695868d94f3eefb8b1de1 -package-id warp-3.0.13.1-bd6c19a95fdf949b697ea28c2af5bf5a -package-id yaml-0.8.11-0be25fff464cfd937ce458285fc1608d -package-id yesod-1.4.1.5-8df7052afb362c23c69b82a7f28368cf -package-id yesod-auth-1.4.6-f308bc79f20364465149c5e90bc58e3b -package-id yesod-core-1.4.12-bd51c8693ca22da9319a44d965a4dc0b -package-id yesod-form-1.4.4.1-610fa3d6cd846351eb46a7bbe4cb1f9e -package-id yesod-static-1.5.0-b003e099df731871514e9f6fc673dc15 -XHaskell98 -XTemplateHaskell -XQuasiQuotes -XOverloadedStrings -XNoImplicitPrelude -XCPP -XMultiParamTypeClasses -XTypeFamilies -XGADTs -XGeneralizedNewtypeDeriving -XFlexibleContexts -XEmptyDataDecls -XNoMonomorphismRestriction -XDeriveDataTypeable -XViewPatterns -XTupleSections -XRecordWildCards Application Foundation Import Import.NoFoundation Model Settings Settings.StaticFiles Handler.Common Handler.Home -Wall -fwarn-tabs -O2
Linking...
[(InstalledPackageId
"aeson-0.8.0.2-a54c56aaf724aa9f6cd1e71d63b464ff",PackageIdentifier {pkgName =
PackageName {unPackageName = "aeson"}, pkgVersion = Version {versionBranch =
[0,8,0,2], versionTags = []}},ModuleRenaming True []),(InstalledPackageId
"base-4.8.1.0-aa39347261fb4b0f8c1cca2073af62f0",PackageIdentifier {pkgName =
PackageName {unPackageName = "base"}, pkgVersion = Version {versionBranch =
[4,8,1,0], versionTags = []}},ModuleRenaming True []),(InstalledPackageId
"bytestring-0.10.6.0-1403fae5032034090023845623becea1",PackageIdentifier
{pkgName = PackageName {unPackageName = "bytestring"}, pkgVersion = Version
{versionBranch = [0,10,6,0], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"classy-prelude-0.12.1.1-524b2f0df467b18cd356f9a5a59f9c26",PackageIdentifier
{pkgName = PackageName {unPackageName = "classy-prelude"}, pkgVersion =
Version {versionBranch = [0,12,1,1], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"classy-prelude-conduit-0.12.0.1-077a87834569a9ed5ad3ac309e990f78",PackageIdentifier
{pkgName = PackageName {unPackageName = "classy-prelude-conduit"}, pkgVersion
= Version {versionBranch = [0,12,0,1], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"classy-prelude-yesod-0.12.0.1-cc396a749f3231839e4a1d7f07303183",PackageIdentifier
{pkgName = PackageName {unPackageName = "classy-prelude-yesod"}, pkgVersion =
Version {versionBranch = [0,12,0,1], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"conduit-1.2.4.2-d9bb79ba5620cc26fa5e139bf5fa7bc4",PackageIdentifier {pkgName
= PackageName {unPackageName = "conduit"}, pkgVersion = Version {versionBranch
= [1,2,4,2], versionTags = []}},ModuleRenaming True []),(InstalledPackageId
"containers-0.5.6.2-7043afc1ff0692e585e794c250736c3c",PackageIdentifier
{pkgName = PackageName {unPackageName = "containers"}, pkgVersion = Version
{versionBranch = [0,5,6,2], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"data-default-0.5.3-2d65f50226dd65ffac3d490a7d11fc85",PackageIdentifier
{pkgName = PackageName {unPackageName = "data-default"}, pkgVersion = Version
{versionBranch = [0,5,3], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"directory-1.2.2.0-6975523db1b363bb9f26a6e0487f8ff4",PackageIdentifier
{pkgName = PackageName {unPackageName = "directory"}, pkgVersion = Version
{versionBranch = [1,2,2,0], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"fast-logger-2.3.1-b19ee0febc9c01adb8e5ad67e3880884",PackageIdentifier
{pkgName = PackageName {unPackageName = "fast-logger"}, pkgVersion = Version
{versionBranch = [2,3,1], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"file-embed-0.0.8.2-5e1e72961c02cb05b6555ce1fbcdadb0",PackageIdentifier
{pkgName = PackageName {unPackageName = "file-embed"}, pkgVersion = Version
{versionBranch = [0,0,8,2], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"hjsmin-0.1.4.7-b0402c3cafeeeb31758d012a07f5241a",PackageIdentifier {pkgName =
PackageName {unPackageName = "hjsmin"}, pkgVersion = Version {versionBranch =
[0,1,4,7], versionTags = []}},ModuleRenaming True []),(InstalledPackageId
"http-conduit-2.1.5.1-7695c584e310c76b7c2d0aa6de17bbe0",PackageIdentifier
{pkgName = PackageName {unPackageName = "http-conduit"}, pkgVersion = Version
{versionBranch = [2,1,5,1], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"monad-control-1.0.0.4-34232a4387530e119aa3148860f40d2f",PackageIdentifier
{pkgName = PackageName {unPackageName = "monad-control"}, pkgVersion = Version
{versionBranch = [1,0,0,4], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"monad-logger-0.3.13.1-7599650dff884721d2bc0e7fe265545f",PackageIdentifier
{pkgName = PackageName {unPackageName = "monad-logger"}, pkgVersion = Version
{versionBranch = [0,3,13,1], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"persistent-2.2-63d8a5a1dc11c5038b3c8ed4b83e337f",PackageIdentifier {pkgName =
PackageName {unPackageName = "persistent"}, pkgVersion = Version
{versionBranch = [2,2], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"persistent-sqlite-2.2-80de8d0dd46dc84def80b10eaa756f77",PackageIdentifier
{pkgName = PackageName {unPackageName = "persistent-sqlite"}, pkgVersion =
Version {versionBranch = [2,2], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"persistent-template-2.1.3.4-cf88718dcf3165e97010d2382b706182",PackageIdentifier
{pkgName = PackageName {unPackageName = "persistent-template"}, pkgVersion =
Version {versionBranch = [2,1,3,4], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"safe-0.3.9-d529c31a0b6ed28da735f3fecb0205c9",PackageIdentifier {pkgName =
PackageName {unPackageName = "safe"}, pkgVersion = Version {versionBranch =
[0,3,9], versionTags = []}},ModuleRenaming True []),(InstalledPackageId
"shakespeare-2.0.5-0f28c65bbbf9e79405c75fac55e1d780",PackageIdentifier
{pkgName = PackageName {unPackageName = "shakespeare"}, pkgVersion = Version
{versionBranch = [2,0,5], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"template-haskell-2.10.0.0-f3b015113e8aa8ecb627b37bd55228d2",PackageIdentifier
{pkgName = PackageName {unPackageName = "template-haskell"}, pkgVersion =
Version {versionBranch = [2,10,0,0], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"text-1.2.1.1-02d363172c1d63a42784eba9c7e208b7",PackageIdentifier {pkgName =
PackageName {unPackageName = "text"}, pkgVersion = Version {versionBranch =
[1,2,1,1], versionTags = []}},ModuleRenaming True []),(InstalledPackageId
"time-1.5.0.1-9f9ce8cb20645880e01a53c536247d73",PackageIdentifier {pkgName =
PackageName {unPackageName = "time"}, pkgVersion = Version {versionBranch =
[1,5,0,1], versionTags = []}},ModuleRenaming True []),(InstalledPackageId
"unordered-containers-0.2.5.1-68701b634833f1f09cefbd81683d478c",PackageIdentifier
{pkgName = PackageName {unPackageName = "unordered-containers"}, pkgVersion =
Version {versionBranch = [0,2,5,1], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"vector-0.10.12.3-9965c088b993802b3854d6f5ed8ec420",PackageIdentifier {pkgName
= PackageName {unPackageName = "vector"}, pkgVersion = Version {versionBranch
= [0,10,12,3], versionTags = []}},ModuleRenaming True []),(InstalledPackageId
"wai-extra-3.0.7.1-801dd08377e00929835f0578b7779168",PackageIdentifier
{pkgName = PackageName {unPackageName = "wai-extra"}, pkgVersion = Version
{versionBranch = [3,0,7,1], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"wai-logger-2.2.4.1-da9c194e1b5695868d94f3eefb8b1de1",PackageIdentifier
{pkgName = PackageName {unPackageName = "wai-logger"}, pkgVersion = Version
{versionBranch = [2,2,4,1], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"warp-3.0.13.1-bd6c19a95fdf949b697ea28c2af5bf5a",PackageIdentifier {pkgName =
PackageName {unPackageName = "warp"}, pkgVersion = Version {versionBranch =
[3,0,13,1], versionTags = []}},ModuleRenaming True []),(InstalledPackageId
"yaml-0.8.11-0be25fff464cfd937ce458285fc1608d",PackageIdentifier {pkgName =
PackageName {unPackageName = "yaml"}, pkgVersion = Version {versionBranch =
[0,8,11], versionTags = []}},ModuleRenaming True []),(InstalledPackageId
"yesod-1.4.1.5-8df7052afb362c23c69b82a7f28368cf",PackageIdentifier {pkgName =
PackageName {unPackageName = "yesod"}, pkgVersion = Version {versionBranch =
[1,4,1,5], versionTags = []}},ModuleRenaming True []),(InstalledPackageId
"yesod-auth-1.4.6-f308bc79f20364465149c5e90bc58e3b",PackageIdentifier {pkgName
= PackageName {unPackageName = "yesod-auth"}, pkgVersion = Version
{versionBranch = [1,4,6], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"yesod-core-1.4.12-bd51c8693ca22da9319a44d965a4dc0b",PackageIdentifier
{pkgName = PackageName {unPackageName = "yesod-core"}, pkgVersion = Version
{versionBranch = [1,4,12], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"yesod-form-1.4.4.1-610fa3d6cd846351eb46a7bbe4cb1f9e",PackageIdentifier
{pkgName = PackageName {unPackageName = "yesod-form"}, pkgVersion = Version
{versionBranch = [1,4,4,1], versionTags = []}},ModuleRenaming True
[]),(InstalledPackageId
"yesod-static-1.5.0-b003e099df731871514e9f6fc673dc15",PackageIdentifier
{pkgName = PackageName {unPackageName = "yesod-static"}, pkgVersion = Version
{versionBranch = [1,5,0], versionTags = []}},ModuleRenaming True [])]
/usr/bin/ar -r .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/objs-6969/libHSsnoyman-blog-example-0.0.0-2fEaPyENEJfAlpAiSwzOq0.a .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Application.o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Foundation.o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Import.o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Import/NoFoundation.o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Model.o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Settings.o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Settings/StaticFiles.o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Handler/Common.o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Handler/Home.o
/usr/bin/ar: creating .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/objs-6969/libHSsnoyman-blog-example-0.0.0-2fEaPyENEJfAlpAiSwzOq0.a
/usr/bin/strip .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/objs-6969/libHSsnoyman-blog-example-0.0.0-2fEaPyENEJfAlpAiSwzOq0.a --strip-unneeded
/opt/ghc/7.10.2/bin/ghc -shared -dynamic '-dynload deploy' -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/ReadArgs-1.2.2-7FclJRQYw5M29LpBmHqHFq -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/StateVar-1.1.0.0-6iqvTorEoPGBvP2zy1zFJg -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/adjunctions-4.2.1-6t7QaKPvDhb15kMHKz8tAa -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/aeson-0.8.0.2-DNMpuKpIa18KPYCUfh993Y -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/ansi-terminal-0.6.2.1-0MG2i0b3psx7kYIvtaxDCd -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/ansi-wl-pprint-0.6.7.2-9Okoc0VAI45CskPbFyVhrx -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/appar-0.1.4-3CaAIJvwfNLEy6bEqQYYYc -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/array_E0sTtauuKsGDLZoT7lTbgZ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/asn1-encoding-0.9.0-9q0RC8DgXtn56xlGqQYfX7 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/asn1-parse-0.9.1-Ah6f0BcikZUHg83TuUTKxB -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/asn1-types-0.3.0-CKmNED3xRaG9fjMP7IurkT -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/async-2.0.2-J3wPtBMkDlC1zlPIsbgEk9 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/attoparsec-0.12.1.6-IhboQRkMY9t6VIDmddGP8t -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/authenticate-1.3.2.11-4f4lZ7hEj4x5iXhxyXnSpi -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/auto-update-0.1.2.1-12gS1qkx8Va36ups8i7uIo -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/base_GDytRqRVSUX7zckgKqJjgw -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/base16-bytestring-0.1.1.6-LGFgY5jaffY4IePNqJx55U -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/base64-bytestring-1.0.0.1-5ombtuUXex39dVe2nth8cH -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/basic-prelude-0.5.0-5rZNtoSOyKPF0hVr1zJPdv -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/bifunctors-4.2.1-AmEz9MY1TG9ITJHGlKRgLr -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/binary-0.7.3.0-I39fR6jGcXOLrHe9FzzBd4 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/blaze-builder-0.4.0.1-6FEL8GbgSBLAAUSNnOi2MQ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/blaze-html-0.8.0.2-1SYOqOBHxZ5AsRDbXqdJgK -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/blaze-markup-0.7.0.2-LHCHhj1b1Wx5HGWD4Uqkqk -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/rts -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/byteable-0.1.1-F2pcQljAfpbDG2panTEyo8 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/byteorder-1.0.4-7FRRspR69KU9KubkPZfm74 -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/bytes_6elQVSg5cWdFrvRnfxTUrH -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/case-insensitive-1.2.0.4-DGpJuVV5kfFGqrUkLt3Upv -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/cereal-0.4.1.1-LMaR4P6lFvNJtmY00msKYH -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/chunked-data-0.2.0-3txK05TblrjEcEiiWNUaB7 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/cipher-aes-0.2.11-2ERQ1dIZixg9tWYPK06AUH -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/classy-prelude-0.12.1.1-FQBUaYOlQp000veWWeifet -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/classy-prelude-conduit-0.12.0.1-DhkRwjm51g2BSpyzMA5o6e -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/classy-prelude-yesod-0.12.0.1-Cg8Jo6eFpEx7l0MgXD332v -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/clientsession-0.9.1.1-Hf4hXTwLtOg2MwVcYPNnGQ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/comonad-4.2.6-F6gRbWcYY13Im1DPQMiQ2W -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/conduit-1.2.4.2-6w6V1jBF4QOLuhdOCVCzZi -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/conduit-combinators-1.0.1-COkoXfXM8Zk8v3HUniwlYT -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/conduit-extra-1.1.9-5p2VY22YRD2LJIvSGGhsiX -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/connection-0.2.5-AQxtXY6bVBa7ogJz42ATXA -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/conta_LKCPrTJwOTOLk4OU37YmeN -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/contravariant-1.3.1.1-BIpkaGmnSTRDR3138g2DUt -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/cookie-0.4.1.6-34AbWtFA4DF9rBxNnyrmbE -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/cprng-aes-0.6.1-0LaU86dtbXt17Fics0zlHW -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/crypto-api-0.13.2-A5WnkM78khp1E9HeFIfO7N -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/crypto-cipher-types-0.0.9-7fh37Ly4VLPKhwwe0j0lXN -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/crypto-random-0.0.9-0TxQIWRrs6aB9KaxmYuWeZ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/cryptohash-0.11.6-5epyAhdyCoGIBkp2icUC24 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/cryptohash-conduit-0.1.1-LrXfIDoSTwLHIaFoqwuSL2 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/cryptonite-0.5-LBgxU5LCZf90Zr0H5Tt7Xp -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/css-text-0.1.2.1-IweLPKq0KcXKIo2b2UL17G -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/data-default-0.5.3-CezeH4zzjVt9K2zxHCqYv5 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/data-default-class-0.0.1-CgDdtafiXY68XlqDb5IqXw -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/data-default-instances-base-0.0.1-6bNp7ygtVUW3TbxeJU4Irf -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/data-default-instances-containers-0.0.1-2eq6fuwf8Tk14CtKGZXhB5 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/data-default-instances-dlist-0.0.1-IOUiWbb0av0L7SSTC6QavD -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/data-default-instances-old-locale-0.0.1-D3fIWe3ExBN6VISnKTEJV3 -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/deeps_LbCWUlehDDeLxurARKDH5o -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/direc_KowvXytSqazBcvN7MGpFtg -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/distributive-0.4.4-IiTFZxvjHzA0FvKz3AU35Q -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/dlist-0.7.1.1-CWmYfPEEnFvAl2glQ7oHsq -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/dlist-instances-0.1-7DLI1tHFEQX9tx2xhv4Xc0 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/easy-file-0.2.1-FJwrEwDWX67AIqrB5x3TwS -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/email-validate-2.1.3-4SzwgkQYOfl3lKpaizJ9xg -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/enclosed-exceptions-1.0.1.1-If8PKDjmmIx5GJMVs0vIri -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/entropy-0.3.7-BTeyFmIz5b6F1k5rgnvcgO -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/exceptions-0.8.0.2-8GsEeHgaIks3pVGk6GaELJ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/fast-logger-2.3.1-AAGDFtMUG1t2CPYga3kpkj -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/file-embed-0.0.8.2-KprIvj3BZA07AxVO1nKaZe -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/filep_KsGE6pHE5eZHSN90ZVax6A -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/free-4.11-6HqwZ1KaRtb2h4ulQuadmn -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/ghcpr_8TmvWUcS1U1IKHT0levwg3 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/hashable-1.2.3.3-4MQq0aLKvkZKCttKS65lwz -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/hjsmin-0.1.4.7-0hbUSbCnueGBIO6CWCoQEs -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/hourglass-0.2.9-6Wf2z6eXMVzIFxt1igqsEA -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/http-client-0.4.15-FzmVsi1Ggz3863dWD9KXFH -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/http-client-tls-0.2.2-7D9IOfw3zbVHEFWX20tBMy -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/http-conduit-2.1.5.1-9V1hfaB5eRJDCCOmirPsXV -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/http-date-0.0.6.1-1cJZtLfMNET6M02lqHxhMA -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/http-types-0.8.6-3zPkdhdX6JB5a1bkqF7s2S -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/integ_2aU3IZNMF9a7mQ0OzsZ0dS -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/iproute-1.4.0-D4qE7bUp7gALJLwQ8Aj02e -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/kan-extensions-4.2.2-A5Oj0NudnJyL0xnzmHL8ps -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/keys-3.10.2-5MI7przXMAyBksy4CMERPO -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/language-javascript-0.5.13.3-KOmc6vMFEdNJS2iSVDmiCG -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/lifted-base-0.2.3.6-K3cQFA6mRg85rpDaA9numU -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/memory-0.7-ByKf2PUnWbr6V2Z5gsXbfn -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/mime-mail-0.4.9-8XmWaG8yJ8y5DNpZk49ANA -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/mime-types-0.1.0.6-DXxJbnG4wTA82DDy8A0CIL -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/mmorph-1.0.4-8dNpUU8QFPe77rrwKAb20b -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/monad-control-1.0.0.4-3XCDr1mqlERGZgaxuwJF6b -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/monad-logger-0.3.13.1-KRAabxFVqON1cn31Vq9jcb -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/monad-loops-0.4.3-EQoySqNZ2bd85KCgzAOO4M -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/mono-traversable-0.9.2.1-8g8D3FBtMBpHfTgKObx1q6 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/mtl-2.2.1-KMpng31YRYc5JfMWFZ3FCU -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/mutable-containers-0.3.0-5qZyS83gT3O7JPOO54FgNv -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/mwc-random-0.13.3.2-EHoyvQtULlqL3HO0jyND4E -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/network-2.6.2.0-KvSqqXf6W5Y28GW47lByS6 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/network-uri-2.6.0.3-2e26fNA511R9g3HMEacXmi -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/nonce-1.0.2-4EIA0awHkT27v51JdhWuDX -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/old-locale-1.0.0.7-D6X1KPq5Sui5XjrHMwvFwK -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/old-time-1.1.0.3-FBWJJDS5FKr7UKFScBcUW2 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/optparse-applicative-0.11.0.2-LCepxCGhyqd0e6cwQ0HMY5 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/parsec-3.1.9-8w8VdY6Pd4dHZhmHNVw1Kj -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/path-pieces-0.2.0-GGkfzr71ujeEM6ue7TZk4Y -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/pem-0.2.2-FobxOIdj6uGIHonZNFATO6 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/persistent-2.2-0EYzVb667XG2zyxs6YSHNQ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/persistent-sqlite-2.2-90u9PUQHlf331XTrfey0vZ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/persistent-template-2.1.3.4-CsoknNhkyxr9p17Gvs0e0W -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/pointed-4.2.0.2-Gn00mWuDgrI6WzBw5jpdj7 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/prelude-extras-0.4-13F4lGS3Q6l43JZvPq8G4h -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/prett_7UQTOB05U7lIYPkFOVraeR -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/primitive-0.6-3d4UsQu7pJCEtlsxN3gLjk -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/proce_FLTz0SLwyG6LJUpZ52HjkU -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/profunctors-4.4.1-Caeq1ZeMnxWFgC4eMDTmlt -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/random-1.1-1z8Ujelqc6aKgvPnbRUKkP -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/resource-pool-0.2.3.2-Fbt2jzkcsCU5RU41p7fwmy -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/resourcet-1.1.5-IKWk5HWuBgN1c608xCD0ZU -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/safe-0.3.9-BXSoeRP9IFG6t9s3abNgVi -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/scientific-0.3.3.8-7q6fYdhgsoqLF3vFhmr6r5 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/securemem-0.1.9-IVsZrOqGXes1eaVFfLeM4x -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/semigroupoids-4.3-1uQf0tAhGYkEWmX9q9MOKS -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/semigroups-0.16.2.2-5aNoIvddWaV7nqJPqcTZ87 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/setenv-0.1.1.3-AuHTDNoaveDAxwtvx7iZhq -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/shakespeare-2.0.5-J2aQZcF9FJ0LgfTRQdCf0F -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/silently-1.2.4.1-IBAirZekkvvGkclJlTsiH3 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/simple-sendfile-0.2.21-KavagDMqvCKDIje5TPpV6W -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/skein-1.0.9.3-IvDavUTFfZ4JYOyVidCzES -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/socks-0.5.4-0zwMhgna8pQGvSNTPj5sFM -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/stm-2.4.4-C1kFMnPqFjvDhFjgMZGUpr -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/stm-chans-3.0.0.4-7j9sHjGqeHj8Gs1cUILhfw -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/streaming-commons-0.1.12.1-H82mp0iunF3L6WlVRZ7A8s -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/stringsearch-0.3.6.6-LD3tXxltwdY99HXR2kj3px -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/syb-0.4.4-HXdJjHFXhlk7hr6SnBkoe9 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/system-filepath-0.4.13.4-0RbhYx4dC95IHj3yH91JhV -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/tagged-0.8.1-6Tf46oJAk552xT73wGffBW -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/tagsoup-0.13.3-K2E0EEpdIHx0BZ9Grc3nn7 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/tagstream-conduit-0.5.5.3-5ztDcIHsMjy0eXhzCSDlIt -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/templ_1ejK907jvoTHoZ6iZtHeyN -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/text-1.2.1.1-5ldGIIe4b894crzdVbzhau -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/time_AXTdBF9VRQoBOqJT6qtmVH -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/time-locale-compat-0.1.1.0-F3WLOMZDUQn00ovIjyyhhW -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/tls-1.3.1-2GzpFnlJ4RzGWaiKuXZih9 -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/trans_3eG64VdP2vzGjP6wJiCp5X -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/transformers-base-0.4.4-88TAFm21vtn2NrYUppy50c -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/transformers-compat-0.4.0.4-DCQioW2d4vYEa3T0AmFBPv -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/unix_A3WgcI5QiHK4PDo4jSYdwQ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/unix-compat-0.4.1.4-DeAF5HEzYMu4CPLnbGbHUz -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/unix-time-0.3.5-73K7Fnvm6F249PqPxFOg2k -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/unordered-containers-0.2.5.1-BfnKHEzS0vZL1E7Me0Awzh -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/utf8-string-1-829v6sytxoOCoVhDxsM0Nt -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/vault-0.3.0.4-AZXqFVjmJRmIdlFIsQOD29 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/vector-0.10.12.3-1COyUuV1LrA1IjYnWfJnbs -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/vector-algorithms-0.7-3FA4cW5gKHq7fSnqBUN3qK -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/vector-instances-3.3.0.1-BRVeCvKBi133l652K6Ao9M -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/void-0.7-9k1vIRm7nWjCNa4n98KFQ9 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/wai-3.0.2.3-FXx529qbVFh5gSv3oaIdWR -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/wai-app-static-3.1.0-1VqbPSJzzT16FRgZa71ws2 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/wai-extra-3.0.7.1-0WNF8bbdAuYH9AJ9mqP9WT -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/wai-logger-2.2.4.1-3qo0BPc1Yee881KNu8HsCw -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/warp-3.0.13.1-H1DvPGB0SukBdHUQpQLyYF -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/word8-0.1.2-JFinUbIMmjfAdy4qiZBFBe -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/x509-1.6.0-Fdq1SeyhbqTHCc17lipjly -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/x509-store-1.6.0-9AESKoslbpX7fRRSN3VW4v -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/x509-system-1.6.0-4TBoZfWgmMk66wDpyuFe0B -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/x509-validation-1.6.0-JbCIWdt7NVuBLxUjxNFlgR -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/xml-conduit-1.3.0-44pmFvvREkBFnumAU6yvpP -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/xml-types-0.3.5-8h6cSoESi0z0rXRkRTwcll -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/xss-sanitize-0.3.5.5-7O0q97NXTMr63fhqgI7sXx -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yaml-0.8.11-EIYpUmJsZDc2D7JbCr9rXy -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yesod-1.4.1.5-BCHOUfoz0SQJx9JcEmFaR7 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yesod-auth-1.4.6-Gpk8feLvA8I5L6G8QBoa9l -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yesod-core-1.4.12-C66hrBxW73PIDawnzY2TED -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yesod-form-1.4.4.1-AtRbWxO47hp8ARLxj2mjLx -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yesod-newsfeed-1.4.0.1-CwOozF6N42BFIliWwy31F6 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yesod-persistent-1.4.0.3-0PRYa3tv85d2hPGe2xM7JB -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yesod-static-1.5.0-7kikz11Mf3h28uxnckCg42 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/zlib-0.5.4.2-7EfFFsXSCF6JCVS3xlYBS8 -this-package-key snoym_2fEaPyENEJfAlpAiSwzOq0 -no-auto-link-packages -no-user-package-db -package-db /home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/ -package-db /tmp/stack-yesod-issue/.stack-work/install/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/ -package-db .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/package.conf.inplace -package-id aeson-0.8.0.2-a54c56aaf724aa9f6cd1e71d63b464ff -package-id base-4.8.1.0-aa39347261fb4b0f8c1cca2073af62f0 -package-id bytestring-0.10.6.0-1403fae5032034090023845623becea1 -package-id classy-prelude-0.12.1.1-524b2f0df467b18cd356f9a5a59f9c26 -package-id classy-prelude-conduit-0.12.0.1-077a87834569a9ed5ad3ac309e990f78 -package-id classy-prelude-yesod-0.12.0.1-cc396a749f3231839e4a1d7f07303183 -package-id conduit-1.2.4.2-d9bb79ba5620cc26fa5e139bf5fa7bc4 -package-id containers-0.5.6.2-7043afc1ff0692e585e794c250736c3c -package-id data-default-0.5.3-2d65f50226dd65ffac3d490a7d11fc85 -package-id directory-1.2.2.0-6975523db1b363bb9f26a6e0487f8ff4 -package-id fast-logger-2.3.1-b19ee0febc9c01adb8e5ad67e3880884 -package-id file-embed-0.0.8.2-5e1e72961c02cb05b6555ce1fbcdadb0 -package-id hjsmin-0.1.4.7-b0402c3cafeeeb31758d012a07f5241a -package-id http-conduit-2.1.5.1-7695c584e310c76b7c2d0aa6de17bbe0 -package-id monad-control-1.0.0.4-34232a4387530e119aa3148860f40d2f -package-id monad-logger-0.3.13.1-7599650dff884721d2bc0e7fe265545f -package-id persistent-2.2-63d8a5a1dc11c5038b3c8ed4b83e337f -package-id persistent-sqlite-2.2-80de8d0dd46dc84def80b10eaa756f77 -package-id persistent-template-2.1.3.4-cf88718dcf3165e97010d2382b706182 -package-id safe-0.3.9-d529c31a0b6ed28da735f3fecb0205c9 -package-id shakespeare-2.0.5-0f28c65bbbf9e79405c75fac55e1d780 -package-id template-haskell-2.10.0.0-f3b015113e8aa8ecb627b37bd55228d2 -package-id text-1.2.1.1-02d363172c1d63a42784eba9c7e208b7 -package-id time-1.5.0.1-9f9ce8cb20645880e01a53c536247d73 -package-id unordered-containers-0.2.5.1-68701b634833f1f09cefbd81683d478c -package-id vector-0.10.12.3-9965c088b993802b3854d6f5ed8ec420 -package-id wai-extra-3.0.7.1-801dd08377e00929835f0578b7779168 -package-id wai-logger-2.2.4.1-da9c194e1b5695868d94f3eefb8b1de1 -package-id warp-3.0.13.1-bd6c19a95fdf949b697ea28c2af5bf5a -package-id yaml-0.8.11-0be25fff464cfd937ce458285fc1608d -package-id yesod-1.4.1.5-8df7052afb362c23c69b82a7f28368cf -package-id yesod-auth-1.4.6-f308bc79f20364465149c5e90bc58e3b -package-id yesod-core-1.4.12-bd51c8693ca22da9319a44d965a4dc0b -package-id yesod-form-1.4.4.1-610fa3d6cd846351eb46a7bbe4cb1f9e -package-id yesod-static-1.5.0-b003e099df731871514e9f6fc673dc15 .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Application.dyn_o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Foundation.dyn_o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Import.dyn_o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Import/NoFoundation.dyn_o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Model.dyn_o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Settings.dyn_o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Settings/StaticFiles.dyn_o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Handler/Common.dyn_o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/Handler/Home.dyn_o -o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/libHSsnoyman-blog-example-0.0.0-2fEaPyENEJfAlpAiSwzOq0-ghc7.10.1.20150619.so
In-place registering snoyman-blog-example-0.0.0...
/opt/ghc/7.10.2/bin/ghc-pkg update - --global --no-user-package-db '--package-db=/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/' '--package-db=/tmp/stack-yesod-issue/.stack-work/install/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/' '--package-db=.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/package.conf.inplace'
Preprocessing executable 'snoyman-blog-example' for
snoyman-blog-example-0.0.0...
Building executable snoyman-blog-example...
creating
.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example
creating
.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example-tmp
/opt/ghc/7.10.2/bin/ghc --make -no-link -fbuilding-cabal-package -O -static -outputdir .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example-tmp -odir .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example-tmp -hidir .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example-tmp -stubdir .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example-tmp -i -i.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example-tmp -iapp -i.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/autogen -I.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/autogen -I.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example-tmp -optP-include -optP.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/autogen/cabal_macros.h -hide-all-packages -no-user-package-db -package-db /home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/ -package-db /tmp/stack-yesod-issue/.stack-work/install/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/ -package-db .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/package.conf.inplace -package-id base-4.8.1.0-aa39347261fb4b0f8c1cca2073af62f0 -package-id snoyman-blog-example-0.0.0-inplace -XHaskell98 app/main.hs -threaded -O2 -rtsopts '-with-rtsopts=-N'
Linking...
/opt/ghc/7.10.2/bin/ghc --make -fbuilding-cabal-package -O -static -outputdir .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example-tmp -odir .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example-tmp -hidir .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example-tmp -stubdir .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example-tmp -i -i.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example-tmp -iapp -i.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/autogen -I.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/autogen -I.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example-tmp -optP-include -optP.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/autogen/cabal_macros.h '-dynload deploy' -optl-Wl,-rpath,/tmp/stack-yesod-issue/.stack-work/install/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/snoyman-blog-example-0.0.0-2fEaPyENEJfAlpAiSwzOq0 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/ReadArgs-1.2.2-7FclJRQYw5M29LpBmHqHFq -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/StateVar-1.1.0.0-6iqvTorEoPGBvP2zy1zFJg -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/adjunctions-4.2.1-6t7QaKPvDhb15kMHKz8tAa -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/aeson-0.8.0.2-DNMpuKpIa18KPYCUfh993Y -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/ansi-terminal-0.6.2.1-0MG2i0b3psx7kYIvtaxDCd -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/ansi-wl-pprint-0.6.7.2-9Okoc0VAI45CskPbFyVhrx -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/appar-0.1.4-3CaAIJvwfNLEy6bEqQYYYc -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/array_E0sTtauuKsGDLZoT7lTbgZ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/asn1-encoding-0.9.0-9q0RC8DgXtn56xlGqQYfX7 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/asn1-parse-0.9.1-Ah6f0BcikZUHg83TuUTKxB -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/asn1-types-0.3.0-CKmNED3xRaG9fjMP7IurkT -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/async-2.0.2-J3wPtBMkDlC1zlPIsbgEk9 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/attoparsec-0.12.1.6-IhboQRkMY9t6VIDmddGP8t -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/authenticate-1.3.2.11-4f4lZ7hEj4x5iXhxyXnSpi -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/auto-update-0.1.2.1-12gS1qkx8Va36ups8i7uIo -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/base_GDytRqRVSUX7zckgKqJjgw -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/base16-bytestring-0.1.1.6-LGFgY5jaffY4IePNqJx55U -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/base64-bytestring-1.0.0.1-5ombtuUXex39dVe2nth8cH -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/basic-prelude-0.5.0-5rZNtoSOyKPF0hVr1zJPdv -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/bifunctors-4.2.1-AmEz9MY1TG9ITJHGlKRgLr -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/binary-0.7.3.0-I39fR6jGcXOLrHe9FzzBd4 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/blaze-builder-0.4.0.1-6FEL8GbgSBLAAUSNnOi2MQ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/blaze-html-0.8.0.2-1SYOqOBHxZ5AsRDbXqdJgK -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/blaze-markup-0.7.0.2-LHCHhj1b1Wx5HGWD4Uqkqk -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/rts -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/byteable-0.1.1-F2pcQljAfpbDG2panTEyo8 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/byteorder-1.0.4-7FRRspR69KU9KubkPZfm74 -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/bytes_6elQVSg5cWdFrvRnfxTUrH -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/case-insensitive-1.2.0.4-DGpJuVV5kfFGqrUkLt3Upv -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/cereal-0.4.1.1-LMaR4P6lFvNJtmY00msKYH -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/chunked-data-0.2.0-3txK05TblrjEcEiiWNUaB7 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/cipher-aes-0.2.11-2ERQ1dIZixg9tWYPK06AUH -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/classy-prelude-0.12.1.1-FQBUaYOlQp000veWWeifet -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/classy-prelude-conduit-0.12.0.1-DhkRwjm51g2BSpyzMA5o6e -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/classy-prelude-yesod-0.12.0.1-Cg8Jo6eFpEx7l0MgXD332v -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/clientsession-0.9.1.1-Hf4hXTwLtOg2MwVcYPNnGQ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/comonad-4.2.6-F6gRbWcYY13Im1DPQMiQ2W -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/conduit-1.2.4.2-6w6V1jBF4QOLuhdOCVCzZi -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/conduit-combinators-1.0.1-COkoXfXM8Zk8v3HUniwlYT -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/conduit-extra-1.1.9-5p2VY22YRD2LJIvSGGhsiX -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/connection-0.2.5-AQxtXY6bVBa7ogJz42ATXA -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/conta_LKCPrTJwOTOLk4OU37YmeN -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/contravariant-1.3.1.1-BIpkaGmnSTRDR3138g2DUt -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/cookie-0.4.1.6-34AbWtFA4DF9rBxNnyrmbE -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/cprng-aes-0.6.1-0LaU86dtbXt17Fics0zlHW -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/crypto-api-0.13.2-A5WnkM78khp1E9HeFIfO7N -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/crypto-cipher-types-0.0.9-7fh37Ly4VLPKhwwe0j0lXN -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/crypto-random-0.0.9-0TxQIWRrs6aB9KaxmYuWeZ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/cryptohash-0.11.6-5epyAhdyCoGIBkp2icUC24 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/cryptohash-conduit-0.1.1-LrXfIDoSTwLHIaFoqwuSL2 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/cryptonite-0.5-LBgxU5LCZf90Zr0H5Tt7Xp -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/css-text-0.1.2.1-IweLPKq0KcXKIo2b2UL17G -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/data-default-0.5.3-CezeH4zzjVt9K2zxHCqYv5 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/data-default-class-0.0.1-CgDdtafiXY68XlqDb5IqXw -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/data-default-instances-base-0.0.1-6bNp7ygtVUW3TbxeJU4Irf -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/data-default-instances-containers-0.0.1-2eq6fuwf8Tk14CtKGZXhB5 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/data-default-instances-dlist-0.0.1-IOUiWbb0av0L7SSTC6QavD -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/data-default-instances-old-locale-0.0.1-D3fIWe3ExBN6VISnKTEJV3 -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/deeps_LbCWUlehDDeLxurARKDH5o -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/direc_KowvXytSqazBcvN7MGpFtg -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/distributive-0.4.4-IiTFZxvjHzA0FvKz3AU35Q -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/dlist-0.7.1.1-CWmYfPEEnFvAl2glQ7oHsq -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/dlist-instances-0.1-7DLI1tHFEQX9tx2xhv4Xc0 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/easy-file-0.2.1-FJwrEwDWX67AIqrB5x3TwS -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/email-validate-2.1.3-4SzwgkQYOfl3lKpaizJ9xg -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/enclosed-exceptions-1.0.1.1-If8PKDjmmIx5GJMVs0vIri -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/entropy-0.3.7-BTeyFmIz5b6F1k5rgnvcgO -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/exceptions-0.8.0.2-8GsEeHgaIks3pVGk6GaELJ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/fast-logger-2.3.1-AAGDFtMUG1t2CPYga3kpkj -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/file-embed-0.0.8.2-KprIvj3BZA07AxVO1nKaZe -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/filep_KsGE6pHE5eZHSN90ZVax6A -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/free-4.11-6HqwZ1KaRtb2h4ulQuadmn -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/ghcpr_8TmvWUcS1U1IKHT0levwg3 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/hashable-1.2.3.3-4MQq0aLKvkZKCttKS65lwz -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/hjsmin-0.1.4.7-0hbUSbCnueGBIO6CWCoQEs -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/hourglass-0.2.9-6Wf2z6eXMVzIFxt1igqsEA -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/http-client-0.4.15-FzmVsi1Ggz3863dWD9KXFH -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/http-client-tls-0.2.2-7D9IOfw3zbVHEFWX20tBMy -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/http-conduit-2.1.5.1-9V1hfaB5eRJDCCOmirPsXV -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/http-date-0.0.6.1-1cJZtLfMNET6M02lqHxhMA -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/http-types-0.8.6-3zPkdhdX6JB5a1bkqF7s2S -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/integ_2aU3IZNMF9a7mQ0OzsZ0dS -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/iproute-1.4.0-D4qE7bUp7gALJLwQ8Aj02e -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/kan-extensions-4.2.2-A5Oj0NudnJyL0xnzmHL8ps -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/keys-3.10.2-5MI7przXMAyBksy4CMERPO -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/language-javascript-0.5.13.3-KOmc6vMFEdNJS2iSVDmiCG -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/lifted-base-0.2.3.6-K3cQFA6mRg85rpDaA9numU -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/memory-0.7-ByKf2PUnWbr6V2Z5gsXbfn -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/mime-mail-0.4.9-8XmWaG8yJ8y5DNpZk49ANA -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/mime-types-0.1.0.6-DXxJbnG4wTA82DDy8A0CIL -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/mmorph-1.0.4-8dNpUU8QFPe77rrwKAb20b -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/monad-control-1.0.0.4-3XCDr1mqlERGZgaxuwJF6b -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/monad-logger-0.3.13.1-KRAabxFVqON1cn31Vq9jcb -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/monad-loops-0.4.3-EQoySqNZ2bd85KCgzAOO4M -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/mono-traversable-0.9.2.1-8g8D3FBtMBpHfTgKObx1q6 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/mtl-2.2.1-KMpng31YRYc5JfMWFZ3FCU -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/mutable-containers-0.3.0-5qZyS83gT3O7JPOO54FgNv -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/mwc-random-0.13.3.2-EHoyvQtULlqL3HO0jyND4E -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/network-2.6.2.0-KvSqqXf6W5Y28GW47lByS6 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/network-uri-2.6.0.3-2e26fNA511R9g3HMEacXmi -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/nonce-1.0.2-4EIA0awHkT27v51JdhWuDX -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/old-locale-1.0.0.7-D6X1KPq5Sui5XjrHMwvFwK -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/old-time-1.1.0.3-FBWJJDS5FKr7UKFScBcUW2 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/optparse-applicative-0.11.0.2-LCepxCGhyqd0e6cwQ0HMY5 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/parsec-3.1.9-8w8VdY6Pd4dHZhmHNVw1Kj -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/path-pieces-0.2.0-GGkfzr71ujeEM6ue7TZk4Y -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/pem-0.2.2-FobxOIdj6uGIHonZNFATO6 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/persistent-2.2-0EYzVb667XG2zyxs6YSHNQ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/persistent-sqlite-2.2-90u9PUQHlf331XTrfey0vZ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/persistent-template-2.1.3.4-CsoknNhkyxr9p17Gvs0e0W -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/pointed-4.2.0.2-Gn00mWuDgrI6WzBw5jpdj7 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/prelude-extras-0.4-13F4lGS3Q6l43JZvPq8G4h -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/prett_7UQTOB05U7lIYPkFOVraeR -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/primitive-0.6-3d4UsQu7pJCEtlsxN3gLjk -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/proce_FLTz0SLwyG6LJUpZ52HjkU -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/profunctors-4.4.1-Caeq1ZeMnxWFgC4eMDTmlt -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/random-1.1-1z8Ujelqc6aKgvPnbRUKkP -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/resource-pool-0.2.3.2-Fbt2jzkcsCU5RU41p7fwmy -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/resourcet-1.1.5-IKWk5HWuBgN1c608xCD0ZU -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/safe-0.3.9-BXSoeRP9IFG6t9s3abNgVi -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/scientific-0.3.3.8-7q6fYdhgsoqLF3vFhmr6r5 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/securemem-0.1.9-IVsZrOqGXes1eaVFfLeM4x -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/semigroupoids-4.3-1uQf0tAhGYkEWmX9q9MOKS -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/semigroups-0.16.2.2-5aNoIvddWaV7nqJPqcTZ87 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/setenv-0.1.1.3-AuHTDNoaveDAxwtvx7iZhq -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/shakespeare-2.0.5-J2aQZcF9FJ0LgfTRQdCf0F -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/silently-1.2.4.1-IBAirZekkvvGkclJlTsiH3 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/simple-sendfile-0.2.21-KavagDMqvCKDIje5TPpV6W -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/skein-1.0.9.3-IvDavUTFfZ4JYOyVidCzES -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/socks-0.5.4-0zwMhgna8pQGvSNTPj5sFM -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/stm-2.4.4-C1kFMnPqFjvDhFjgMZGUpr -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/stm-chans-3.0.0.4-7j9sHjGqeHj8Gs1cUILhfw -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/streaming-commons-0.1.12.1-H82mp0iunF3L6WlVRZ7A8s -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/stringsearch-0.3.6.6-LD3tXxltwdY99HXR2kj3px -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/syb-0.4.4-HXdJjHFXhlk7hr6SnBkoe9 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/system-filepath-0.4.13.4-0RbhYx4dC95IHj3yH91JhV -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/tagged-0.8.1-6Tf46oJAk552xT73wGffBW -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/tagsoup-0.13.3-K2E0EEpdIHx0BZ9Grc3nn7 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/tagstream-conduit-0.5.5.3-5ztDcIHsMjy0eXhzCSDlIt -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/templ_1ejK907jvoTHoZ6iZtHeyN -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/text-1.2.1.1-5ldGIIe4b894crzdVbzhau -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/time_AXTdBF9VRQoBOqJT6qtmVH -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/time-locale-compat-0.1.1.0-F3WLOMZDUQn00ovIjyyhhW -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/tls-1.3.1-2GzpFnlJ4RzGWaiKuXZih9 -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/trans_3eG64VdP2vzGjP6wJiCp5X -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/transformers-base-0.4.4-88TAFm21vtn2NrYUppy50c -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/transformers-compat-0.4.0.4-DCQioW2d4vYEa3T0AmFBPv -optl-Wl,-rpath,/opt/ghc/7.10.2/lib/ghc-7.10.1.20150619/unix_A3WgcI5QiHK4PDo4jSYdwQ -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/unix-compat-0.4.1.4-DeAF5HEzYMu4CPLnbGbHUz -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/unix-time-0.3.5-73K7Fnvm6F249PqPxFOg2k -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/unordered-containers-0.2.5.1-BfnKHEzS0vZL1E7Me0Awzh -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/utf8-string-1-829v6sytxoOCoVhDxsM0Nt -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/vault-0.3.0.4-AZXqFVjmJRmIdlFIsQOD29 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/vector-0.10.12.3-1COyUuV1LrA1IjYnWfJnbs -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/vector-algorithms-0.7-3FA4cW5gKHq7fSnqBUN3qK -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/vector-instances-3.3.0.1-BRVeCvKBi133l652K6Ao9M -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/void-0.7-9k1vIRm7nWjCNa4n98KFQ9 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/wai-3.0.2.3-FXx529qbVFh5gSv3oaIdWR -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/wai-app-static-3.1.0-1VqbPSJzzT16FRgZa71ws2 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/wai-extra-3.0.7.1-0WNF8bbdAuYH9AJ9mqP9WT -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/wai-logger-2.2.4.1-3qo0BPc1Yee881KNu8HsCw -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/warp-3.0.13.1-H1DvPGB0SukBdHUQpQLyYF -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/word8-0.1.2-JFinUbIMmjfAdy4qiZBFBe -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/x509-1.6.0-Fdq1SeyhbqTHCc17lipjly -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/x509-store-1.6.0-9AESKoslbpX7fRRSN3VW4v -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/x509-system-1.6.0-4TBoZfWgmMk66wDpyuFe0B -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/x509-validation-1.6.0-JbCIWdt7NVuBLxUjxNFlgR -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/xml-conduit-1.3.0-44pmFvvREkBFnumAU6yvpP -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/xml-types-0.3.5-8h6cSoESi0z0rXRkRTwcll -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/xss-sanitize-0.3.5.5-7O0q97NXTMr63fhqgI7sXx -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yaml-0.8.11-EIYpUmJsZDc2D7JbCr9rXy -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yesod-1.4.1.5-BCHOUfoz0SQJx9JcEmFaR7 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yesod-auth-1.4.6-Gpk8feLvA8I5L6G8QBoa9l -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yesod-core-1.4.12-C66hrBxW73PIDawnzY2TED -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yesod-form-1.4.4.1-AtRbWxO47hp8ARLxj2mjLx -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yesod-newsfeed-1.4.0.1-CwOozF6N42BFIliWwy31F6 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yesod-persistent-1.4.0.3-0PRYa3tv85d2hPGe2xM7JB -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/yesod-static-1.5.0-7kikz11Mf3h28uxnckCg42 -optl-Wl,-rpath,/home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/lib/x86_64-linux-ghc-7.10.1.20150619/zlib-0.5.4.2-7EfFFsXSCF6JCVS3xlYBS8 -hide-all-packages -no-user-package-db -package-db /home/cody/.stack/snapshots/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/ -package-db /tmp/stack-yesod-issue/.stack-work/install/x86_64-linux/nightly-2015-07-03/7.10.1.20150619/pkgdb/ -package-db .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/package.conf.inplace -package-id base-4.8.1.0-aa39347261fb4b0f8c1cca2073af62f0 -package-id snoyman-blog-example-0.0.0-inplace -XHaskell98 app/main.hs -o .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example -threaded -O2 -rtsopts '-with-rtsopts=-N'
Linking .stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/snoyman-blog-example/snoyman-blog-example ...
/tmp/stack-yesod-issue/.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/libHSsnoyman-blog-example-0.0.0-2fEaPyENEJfAlpAiSwzOq0.a(Application.o):(.text+0x7bb0): undefined reference to `snoymzu2fEaPyENEJfAlpAiSwzzOq0_HandlerziEcho_getEchoR1_info'
/tmp/stack-yesod-issue/.stack-work/dist/x86_64-linux/Cabal-1.22.4.0/build/libHSsnoyman-blog-example-0.0.0-2fEaPyENEJfAlpAiSwzOq0.a(Application.o):(.data+0xed8): undefined reference to `snoymzu2fEaPyENEJfAlpAiSwzzOq0_HandlerziEcho_getEchoR1_closure'
collect2: error: ld returned 1 exit status
Also experienced the issue with stack Version 0.1.1.0, Git revision 38fa3cf7eb61017a321e91b5367ad49bae50d3a9. I'm beginning to wonder if this is a Cabal or GHC issue, so trying out building this with cabal-install.
This is because I need to add the module to my cabal file I think :S
Yep, my issue was that I didn't export the module. Sure is a confusing error though :S
Yup, I agree, this error sucks. We have an open issue to detect that a module was compiled by Cabal but not included in the .cabal file. Unfortunately, Cabal doesn't make this easy for us...
Yeah, lost a good 3 hours to it :/
On Jul 4, 2015 11:47 PM, "Michael Snoyman" [email protected] wrote:
Yup, I agree, this error sucks. We have an open issue to detect that a
module was compiled by Cabal but not included in the .cabal file.
Unfortunately, Cabal doesn't make this easy for us...—
Reply to this email directly or view it on GitHub
https://github.com/commercialhaskell/stack/issues/515#issuecomment-118579489
.
Most helpful comment
Yep, my issue was that I didn't export the module. Sure is a confusing error though :S