Advertisement
Guest User

lens does not build

a guest
Dec 16th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 49.59 KB | None | 0 0
  1. % cabal new-build
  2. Build profile: -w ghc-8.6.3 -O1
  3. In order, the following will be built (use -v for more details):
  4. - StateVar-1.1.1.1 (lib) (requires build)
  5. - base-orphans-0.8 (lib) (requires build)
  6. - cabal-doctest-1.0.6 (lib) (requires build)
  7. - call-stack-0.1.0 (lib) (requires build)
  8. - hashable-1.2.7.0 (lib) (requires build)
  9. - parallel-3.2.2.0 (lib) (requires build)
  10. - primitive-0.6.4.0 (lib) (requires build)
  11. - reflection-2.1.4 (lib) (requires build)
  12. - semigroups-0.18.5 (lib) (requires build)
  13. - tagged-0.8.6 (lib) (requires build)
  14. - th-abstraction-0.2.8.0 (lib) (requires build)
  15. - transformers-compat-0.6.2 (lib) (requires build)
  16. - void-0.7.2 (lib) (requires build)
  17. - contravariant-1.5 (lib:contravariant) (requires build)
  18. - unordered-containers-0.2.9.0 (lib) (requires build)
  19. - vector-0.12.0.2 (lib) (requires build)
  20. - distributive-0.6 (lib:distributive) (requires build)
  21. - transformers-base-0.4.5.2 (lib) (requires build)
  22. - exceptions-0.10.0 (lib) (requires build)
  23. - comonad-5.0.4 (lib:comonad) (requires build)
  24. - bifunctors-5.5.3 (lib) (requires build)
  25. - semigroupoids-5.3.1 (lib:semigroupoids) (requires build)
  26. - profunctors-5.3 (lib) (requires build)
  27. - invariant-0.5.1 (lib) (requires build)
  28. - free-5.1 (lib) (requires build)
  29. - adjunctions-4.4 (lib) (requires build)
  30. - kan-extensions-5.2 (lib:kan-extensions) (requires build)
  31. - lens-4.17 (lib:lens) (first run)
  32. Starting StateVar-1.1.1.1 (lib)
  33. Starting cabal-doctest-1.0.6 (lib)
  34. Starting call-stack-0.1.0 (lib)
  35. Starting parallel-3.2.2.0 (lib)
  36. Starting hashable-1.2.7.0 (lib)
  37. Starting reflection-2.1.4 (lib)
  38. Starting base-orphans-0.8 (lib)
  39. Starting primitive-0.6.4.0 (lib)
  40. Building StateVar-1.1.1.1 (lib)
  41. Building hashable-1.2.7.0 (lib)
  42. Building cabal-doctest-1.0.6 (lib)
  43. Building reflection-2.1.4 (lib)
  44. Building call-stack-0.1.0 (lib)
  45. Building primitive-0.6.4.0 (lib)
  46. Building parallel-3.2.2.0 (lib)
  47. Building base-orphans-0.8 (lib)
  48. Starting semigroups-0.18.5 (lib)
  49. Building semigroups-0.18.5 (lib)
  50.  
  51. Failed to build StateVar-1.1.1.1.
  52. Build log (
  53. /home/eod/.cabal/logs/ghc-8.6.3/StateVar-1.1.1.1-8f0e8835c92d26c5a7fcee981919c7148bf8cca9b14c05584c14c2392f6580a3.log
  54. ):
  55. Configuring library for StateVar-1.1.1.1..
  56. Preprocessing library for StateVar-1.1.1.1..
  57. Building library for StateVar-1.1.1.1..
  58. [1 of 1] Compiling Data.StateVar ( src/Data/StateVar.hs, dist/build/Data/StateVar.o )
  59.  
  60. src/Data/StateVar.hs:66:8: error:
  61. Could not find module ‘Prelude’
  62. There are files missing in the ‘base-4.12.0.0’ package,
  63. try running 'ghc-pkg check'.
  64. Use -v to see a list of the files searched for.
  65. |
  66. 66 | module Data.StateVar
  67. | ^^^^^^^^^^^^^
  68.  
  69. src/Data/StateVar.hs:80:1: error:
  70. Could not find module ‘Control.Concurrent.STM’
  71. There are files missing in the ‘stm-2.5.0.0’ package,
  72. try running 'ghc-pkg check'.
  73. Use -v to see a list of the files searched for.
  74. |
  75. 80 | import Control.Concurrent.STM
  76. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  77.  
  78. src/Data/StateVar.hs:81:1: error:
  79. Could not find module ‘Control.Monad.IO.Class’
  80. There are files missing in the ‘base-4.12.0.0’ package,
  81. try running 'ghc-pkg check'.
  82. Use -v to see a list of the files searched for.
  83. |
  84. 81 | import Control.Monad.IO.Class
  85. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  86.  
  87. src/Data/StateVar.hs:82:1: error:
  88. Could not find module ‘Data.IORef’
  89. There are files missing in the ‘base-4.12.0.0’ package,
  90. try running 'ghc-pkg check'.
  91. Use -v to see a list of the files searched for.
  92. |
  93. 82 | import Data.IORef
  94. | ^^^^^^^^^^^^^^^^^
  95.  
  96. src/Data/StateVar.hs:83:1: error:
  97. Could not find module ‘Data.Typeable’
  98. There are files missing in the ‘base-4.12.0.0’ package,
  99. try running 'ghc-pkg check'.
  100. Use -v to see a list of the files searched for.
  101. |
  102. 83 | import Data.Typeable
  103. | ^^^^^^^^^^^^^^^^^^^^
  104.  
  105. src/Data/StateVar.hs:84:1: error:
  106. Could not find module ‘Foreign.Ptr’
  107. There are files missing in the ‘base-4.12.0.0’ package,
  108. try running 'ghc-pkg check'.
  109. Use -v to see a list of the files searched for.
  110. |
  111. 84 | import Foreign.Ptr
  112. | ^^^^^^^^^^^^^^^^^^
  113.  
  114. src/Data/StateVar.hs:85:1: error:
  115. Could not find module ‘Foreign.Storable’
  116. There are files missing in the ‘base-4.12.0.0’ package,
  117. try running 'ghc-pkg check'.
  118. Use -v to see a list of the files searched for.
  119. |
  120. 85 | import Foreign.Storable
  121. | ^^^^^^^^^^^^^^^^^^^^^^^
  122.  
  123. src/Data/StateVar.hs:87:1: error:
  124. Could not find module ‘Data.Functor.Contravariant’
  125. There are files missing in the ‘base-4.12.0.0’ package,
  126. try running 'ghc-pkg check'.
  127. Use -v to see a list of the files searched for.
  128. |
  129. 87 | import Data.Functor.Contravariant
  130. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  131.  
  132. Failed to build base-orphans-0.8.
  133. Build log (
  134. /home/eod/.cabal/logs/ghc-8.6.3/base-orphans-0.8-381b6ccfe0f0a3f6dc773e70dc2ef3a0117215a3333937320a20fab64eb5ca97.log
  135. ):
  136. Configuring library for base-orphans-0.8..
  137. Preprocessing library for base-orphans-0.8..
  138. Building library for base-orphans-0.8..
  139. [1 of 2] Compiling Data.Orphans ( src/Data/Orphans.hs, dist/build/Data/Orphans.o )
  140.  
  141. src/Data/Orphans.hs:38:8: error:
  142. Could not find module ‘Prelude’
  143. There are files missing in the ‘base-4.12.0.0’ package,
  144. try running 'ghc-pkg check'.
  145. Use -v to see a list of the files searched for.
  146. |
  147. 38 | module Data.Orphans () where
  148. | ^^^^^^^^^^^^
  149.  
  150. Failed to build cabal-doctest-1.0.6.
  151. Build log (
  152. /home/eod/.cabal/logs/ghc-8.6.3/cabal-doctest-1.0.6-8170a537c6b5b3d99fa64967b8fde41c27e87491236cf91a8b54353fff0e601b.log
  153. ):
  154. Configuring library for cabal-doctest-1.0.6..
  155. Preprocessing library for cabal-doctest-1.0.6..
  156. Building library for cabal-doctest-1.0.6..
  157. [1 of 1] Compiling Distribution.Extra.Doctest ( src/Distribution/Extra/Doctest.hs, dist/build/Distribution/Extra/Doctest.o )
  158.  
  159. src/Distribution/Extra/Doctest.hs:34:8: error:
  160. Could not find module ‘Prelude’
  161. There are files missing in the ‘base-4.12.0.0’ package,
  162. try running 'ghc-pkg check'.
  163. Use -v to see a list of the files searched for.
  164. |
  165. 34 | module Distribution.Extra.Doctest (
  166. | ^^^^^^^^^^^^^^^^^^^^^^^^^^
  167.  
  168. src/Distribution/Extra/Doctest.hs:47:1: error:
  169. Could not find module ‘Control.Monad’
  170. There are files missing in the ‘base-4.12.0.0’ package,
  171. try running 'ghc-pkg check'.
  172. Use -v to see a list of the files searched for.
  173. |
  174. 47 | import Control.Monad
  175. | ^^^^^^^^^^^^^^^^^^^^...
  176.  
  177. src/Distribution/Extra/Doctest.hs:49:1: error:
  178. Could not find module ‘Data.List’
  179. There are files missing in the ‘base-4.12.0.0’ package,
  180. try running 'ghc-pkg check'.
  181. Use -v to see a list of the files searched for.
  182. |
  183. 49 | import Data.List
  184. | ^^^^^^^^^^^^^^^^...
  185.  
  186. src/Distribution/Extra/Doctest.hs:51:1: error:
  187. Could not find module ‘Data.Maybe’
  188. There are files missing in the ‘base-4.12.0.0’ package,
  189. try running 'ghc-pkg check'.
  190. Use -v to see a list of the files searched for.
  191. |
  192. 51 | import Data.Maybe
  193. | ^^^^^^^^^^^^^^^^^...
  194.  
  195. src/Distribution/Extra/Doctest.hs:53:1: error:
  196. Could not find module ‘Data.String’
  197. There are files missing in the ‘base-4.12.0.0’ package,
  198. try running 'ghc-pkg check'.
  199. Use -v to see a list of the files searched for.
  200. |
  201. 53 | import Data.String
  202. | ^^^^^^^^^^^^^^^^^^...
  203.  
  204. src/Distribution/Extra/Doctest.hs:55:1: error:
  205. Could not find module ‘Data.Foldable’
  206. There are files missing in the ‘base-4.12.0.0’ package,
  207. try running 'ghc-pkg check'.
  208. Use -v to see a list of the files searched for.
  209. |
  210. 55 | import qualified Data.Foldable as F
  211. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  212.  
  213. src/Distribution/Extra/Doctest.hs:57:1: error:
  214. Could not find module ‘Data.Traversable’
  215. There are files missing in the ‘base-4.12.0.0’ package,
  216. try running 'ghc-pkg check'.
  217. Use -v to see a list of the files searched for.
  218. |
  219. 57 | import qualified Data.Traversable as T
  220. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  221.  
  222. src/Distribution/Extra/Doctest.hs:59:1: error:
  223. Could not find module ‘Distribution.ModuleName’
  224. There are files missing in the ‘Cabal-2.4.0.1’ package,
  225. try running 'ghc-pkg check'.
  226. Use -v to see a list of the files searched for.
  227. |
  228. 59 | import qualified Distribution.ModuleName as ModuleName
  229. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  230.  
  231. src/Distribution/Extra/Doctest.hs:61:1: error:
  232. Could not find module ‘Distribution.ModuleName’
  233. There are files missing in the ‘Cabal-2.4.0.1’ package,
  234. try running 'ghc-pkg check'.
  235. Use -v to see a list of the files searched for.
  236. |
  237. 61 | import Distribution.ModuleName
  238. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  239.  
  240. src/Distribution/Extra/Doctest.hs:63:1: error:
  241. Could not find module ‘Distribution.Package’
  242. There are files missing in the ‘Cabal-2.4.0.1’ package,
  243. try running 'ghc-pkg check'.
  244. Use -v to see a list of the files searched for.
  245. |
  246. 63 | import Distribution.Package
  247. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  248.  
  249. src/Distribution/Extra/Doctest.hs:65:1: error:
  250. Could not find module ‘Distribution.Package’
  251. There are files missing in the ‘Cabal-2.4.0.1’ package,
  252. try running 'ghc-pkg check'.
  253. Use -v to see a list of the files searched for.
  254. |
  255. 65 | import Distribution.Package
  256. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  257.  
  258. src/Distribution/Extra/Doctest.hs:67:1: error:
  259. Could not find module ‘Distribution.PackageDescription’
  260. There are files missing in the ‘Cabal-2.4.0.1’ package,
  261. try running 'ghc-pkg check'.
  262. Use -v to see a list of the files searched for.
  263. |
  264. 67 | import Distribution.PackageDescription
  265. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  266.  
  267. src/Distribution/Extra/Doctest.hs:70:1: error:
  268. Could not find module ‘Distribution.Simple’
  269. There are files missing in the ‘Cabal-2.4.0.1’ package,
  270. try running 'ghc-pkg check'.
  271. Use -v to see a list of the files searched for.
  272. |
  273. 70 | import Distribution.Simple
  274. | ^^^^^^^^^^^^^^^^^^^^^^^^^^...
  275.  
  276. src/Distribution/Extra/Doctest.hs:72:1: error:
  277. Could not find module ‘Distribution.Simple.BuildPaths’
  278. There are files missing in the ‘Cabal-2.4.0.1’ package,
  279. try running 'ghc-pkg check'.
  280. Use -v to see a list of the files searched for.
  281. |
  282. 72 | import Distribution.Simple.BuildPaths
  283. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  284.  
  285. src/Distribution/Extra/Doctest.hs:74:1: error:
  286. Could not find module ‘Distribution.Simple.Compiler’
  287. There are files missing in the ‘Cabal-2.4.0.1’ package,
  288. try running 'ghc-pkg check'.
  289. Use -v to see a list of the files searched for.
  290. |
  291. 74 | import Distribution.Simple.Compiler
  292. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  293.  
  294. src/Distribution/Extra/Doctest.hs:76:1: error:
  295. Could not find module ‘Distribution.Simple.LocalBuildInfo’
  296. There are files missing in the ‘Cabal-2.4.0.1’ package,
  297. try running 'ghc-pkg check'.
  298. Use -v to see a list of the files searched for.
  299. |
  300. 76 | import Distribution.Simple.LocalBuildInfo
  301. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  302.  
  303. src/Distribution/Extra/Doctest.hs:79:1: error:
  304. Could not find module ‘Distribution.Simple.Setup’
  305. There are files missing in the ‘Cabal-2.4.0.1’ package,
  306. try running 'ghc-pkg check'.
  307. Use -v to see a list of the files searched for.
  308. |
  309. 79 | import Distribution.Simple.Setup
  310. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  311.  
  312. src/Distribution/Extra/Doctest.hs:81:1: error:
  313. Could not find module ‘Distribution.Simple.Utils’
  314. There are files missing in the ‘Cabal-2.4.0.1’ package,
  315. try running 'ghc-pkg check'.
  316. Use -v to see a list of the files searched for.
  317. |
  318. 81 | import Distribution.Simple.Utils
  319. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  320.  
  321. src/Distribution/Extra/Doctest.hs:83:1: error:
  322. Could not find module ‘Distribution.Text’
  323. There are files missing in the ‘Cabal-2.4.0.1’ package,
  324. try running 'ghc-pkg check'.
  325. Use -v to see a list of the files searched for.
  326. |
  327. 83 | import Distribution.Text
  328. | ^^^^^^^^^^^^^^^^^^^^^^^^...
  329.  
  330. src/Distribution/Extra/Doctest.hs:85:1: error:
  331. Could not find module ‘System.FilePath’
  332. There are files missing in the ‘filepath-1.4.2.1’ package,
  333. try running 'ghc-pkg check'.
  334. Use -v to see a list of the files searched for.
  335. |
  336. 85 | import System.FilePath
  337. | ^^^^^^^^^^^^^^^^^^^^^^...
  338.  
  339. src/Distribution/Extra/Doctest.hs:88:1: error:
  340. Could not find module ‘Data.IORef’
  341. There are files missing in the ‘base-4.12.0.0’ package,
  342. try running 'ghc-pkg check'.
  343. Use -v to see a list of the files searched for.
  344. |
  345. 88 | import Data.IORef (newIORef, modifyIORef, readIORef)
  346. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  347.  
  348. src/Distribution/Extra/Doctest.hs:91:1: error:
  349. Could not find module ‘Distribution.Simple.BuildPaths’
  350. There are files missing in the ‘Cabal-2.4.0.1’ package,
  351. try running 'ghc-pkg check'.
  352. Use -v to see a list of the files searched for.
  353. |
  354. 91 | import Distribution.Simple.BuildPaths
  355. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  356.  
  357. src/Distribution/Extra/Doctest.hs:95:1: error:
  358. Could not find module ‘Distribution.Types.MungedPackageId’
  359. There are files missing in the ‘Cabal-2.4.0.1’ package,
  360. try running 'ghc-pkg check'.
  361. Use -v to see a list of the files searched for.
  362. |
  363. 95 | import Distribution.Types.MungedPackageId
  364. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  365.  
  366. src/Distribution/Extra/Doctest.hs:97:1: error:
  367. Could not find module ‘Distribution.Types.UnqualComponentName’
  368. There are files missing in the ‘Cabal-2.4.0.1’ package,
  369. try running 'ghc-pkg check'.
  370. Use -v to see a list of the files searched for.
  371. |
  372. 97 | import Distribution.Types.UnqualComponentName
  373. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  374.  
  375. src/Distribution/Extra/Doctest.hs:101:1: error:
  376. Could not find module ‘Distribution.Types.GenericPackageDescription’
  377. There are files missing in the ‘Cabal-2.4.0.1’ package,
  378. try running 'ghc-pkg check'.
  379. Use -v to see a list of the files searched for.
  380. |
  381. 101 | import Distribution.Types.GenericPackageDescription
  382. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  383.  
  384. src/Distribution/Extra/Doctest.hs:103:1: error:
  385. Could not find module ‘Distribution.PackageDescription’
  386. There are files missing in the ‘Cabal-2.4.0.1’ package,
  387. try running 'ghc-pkg check'.
  388. Use -v to see a list of the files searched for.
  389. |
  390. 103 | import Distribution.PackageDescription
  391. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  392.  
  393. src/Distribution/Extra/Doctest.hs:108:1: error:
  394. Could not find module ‘System.Directory’
  395. There are files missing in the ‘directory-1.3.3.0’ package,
  396. try running 'ghc-pkg check'.
  397. Use -v to see a list of the files searched for.
  398. |
  399. 108 | import System.Directory
  400. | ^^^^^^^^^^^^^^^^^^^^^^^...
  401.  
  402. Failed to build call-stack-0.1.0.
  403. Build log (
  404. /home/eod/.cabal/logs/ghc-8.6.3/call-stack-0.1.0-9fabd3eb5afde65f854dc11fea624c87d957af8a2c40ef580419040f602f56ca.log
  405. ):
  406. Configuring library for call-stack-0.1.0..
  407. Preprocessing library for call-stack-0.1.0..
  408. Building library for call-stack-0.1.0..
  409. [1 of 3] Compiling Data.SrcLoc ( src/Data/SrcLoc.hs, dist/build/Data/SrcLoc.o )
  410.  
  411. src/Data/SrcLoc.hs:2:8: error:
  412. Could not find module ‘Prelude’
  413. There are files missing in the ‘base-4.12.0.0’ package,
  414. try running 'ghc-pkg check'.
  415. Use -v to see a list of the files searched for.
  416. |
  417. 2 | module Data.SrcLoc (SrcLoc(..)) where
  418. | ^^^^^^^^^^^
  419.  
  420. src/Data/SrcLoc.hs:5:1: error:
  421. Could not find module ‘GHC.Stack’
  422. There are files missing in the ‘base-4.12.0.0’ package,
  423. try running 'ghc-pkg check'.
  424. Use -v to see a list of the files searched for.
  425. |
  426. 5 | import GHC.Stack (SrcLoc(..))
  427. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  428.  
  429. Failed to build hashable-1.2.7.0.
  430. Build log (
  431. /home/eod/.cabal/logs/ghc-8.6.3/hashable-1.2.7.0-edf954d95fb874233214dcf191cff737e245ca17cd4b700de18cfa2040556d05.log
  432. ):
  433. Configuring library for hashable-1.2.7.0..
  434. Preprocessing library for hashable-1.2.7.0..
  435. Building library for hashable-1.2.7.0..
  436. [1 of 4] Compiling Data.Hashable.Class ( Data/Hashable/Class.hs, dist/build/Data/Hashable/Class.o )
  437.  
  438. Data/Hashable/Class.hs:33:8: error:
  439. Could not find module ‘Prelude’
  440. There are files missing in the ‘base-4.12.0.0’ package,
  441. try running 'ghc-pkg check'.
  442. Use -v to see a list of the files searched for.
  443. |
  444. 33 | module Data.Hashable.Class
  445. | ^^^^^^^^^^^^^^^^^^^
  446.  
  447. Data/Hashable/Class.hs:66:1: error:
  448. Could not find module ‘Control.Applicative’
  449. There are files missing in the ‘base-4.12.0.0’ package,
  450. try running 'ghc-pkg check'.
  451. Use -v to see a list of the files searched for.
  452. |
  453. 66 | import Control.Applicative (Const(..))
  454. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  455.  
  456. Data/Hashable/Class.hs:67:1: error:
  457. Could not find module ‘Control.Exception’
  458. There are files missing in the ‘base-4.12.0.0’ package,
  459. try running 'ghc-pkg check'.
  460. Use -v to see a list of the files searched for.
  461. |
  462. 67 | import Control.Exception (assert)
  463. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  464.  
  465. Data/Hashable/Class.hs:68:1: error:
  466. Could not find module ‘Control.DeepSeq’
  467. There are files missing in the ‘deepseq-1.4.4.0’ package,
  468. try running 'ghc-pkg check'.
  469. Use -v to see a list of the files searched for.
  470. |
  471. 68 | import Control.DeepSeq (NFData(rnf))
  472. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  473.  
  474. Data/Hashable/Class.hs:69:1: error:
  475. Could not find module ‘Data.Bits’
  476. There are files missing in the ‘base-4.12.0.0’ package,
  477. try running 'ghc-pkg check'.
  478. Use -v to see a list of the files searched for.
  479. |
  480. 69 | import Data.Bits (shiftL, shiftR, xor)
  481. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  482.  
  483. Data/Hashable/Class.hs:70:1: error:
  484. Could not find module ‘Data.ByteString’
  485. There are files missing in the ‘bytestring-0.10.8.2’ package,
  486. try running 'ghc-pkg check'.
  487. Use -v to see a list of the files searched for.
  488. |
  489. 70 | import qualified Data.ByteString as B
  490. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  491.  
  492. Data/Hashable/Class.hs:71:1: error:
  493. Could not find module ‘Data.ByteString.Lazy’
  494. There are files missing in the ‘bytestring-0.10.8.2’ package,
  495. try running 'ghc-pkg check'.
  496. Use -v to see a list of the files searched for.
  497. |
  498. 71 | import qualified Data.ByteString.Lazy as BL
  499. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  500.  
  501. Data/Hashable/Class.hs:72:1: error:
  502. Could not find module ‘Data.ByteString.Unsafe’
  503. There are files missing in the ‘bytestring-0.10.8.2’ package,
  504. try running 'ghc-pkg check'.
  505. Use -v to see a list of the files searched for.
  506. |
  507. 72 | import qualified Data.ByteString.Unsafe as B
  508. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  509.  
  510. Data/Hashable/Class.hs:73:1: error:
  511. Could not find module ‘Data.Complex’
  512. There are files missing in the ‘base-4.12.0.0’ package,
  513. try running 'ghc-pkg check'.
  514. Use -v to see a list of the files searched for.
  515. |
  516. 73 | import Data.Complex (Complex(..))
  517. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  518.  
  519. Data/Hashable/Class.hs:74:1: error:
  520. Could not find module ‘Data.Int’
  521. There are files missing in the ‘base-4.12.0.0’ package,
  522. try running 'ghc-pkg check'.
  523. Use -v to see a list of the files searched for.
  524. |
  525. 74 | import Data.Int (Int8, Int16, Int32, Int64)
  526. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  527.  
  528. Data/Hashable/Class.hs:75:1: error:
  529. Could not find module ‘Data.List’
  530. There are files missing in the ‘base-4.12.0.0’ package,
  531. try running 'ghc-pkg check'.
  532. Use -v to see a list of the files searched for.
  533. |
  534. 75 | import Data.List (foldl')
  535. | ^^^^^^^^^^^^^^^^^^^^^^^^^
  536.  
  537. Data/Hashable/Class.hs:76:1: error:
  538. Could not find module ‘Data.Ratio’
  539. There are files missing in the ‘base-4.12.0.0’ package,
  540. try running 'ghc-pkg check'.
  541. Use -v to see a list of the files searched for.
  542. |
  543. 76 | import Data.Ratio (Ratio, denominator, numerator)
  544. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  545.  
  546. Data/Hashable/Class.hs:77:1: error:
  547. Could not find module ‘Data.Text’
  548. There are files missing in the ‘text-1.2.3.1’ package,
  549. try running 'ghc-pkg check'.
  550. Use -v to see a list of the files searched for.
  551. |
  552. 77 | import qualified Data.Text as T
  553. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  554.  
  555. Data/Hashable/Class.hs:78:1: error:
  556. Could not find module ‘Data.Text.Array’
  557. There are files missing in the ‘text-1.2.3.1’ package,
  558. try running 'ghc-pkg check'.
  559. Use -v to see a list of the files searched for.
  560. |
  561. 78 | import qualified Data.Text.Array as TA
  562. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  563.  
  564. Data/Hashable/Class.hs:79:1: error:
  565. Could not find module ‘Data.Text.Internal’
  566. There are files missing in the ‘text-1.2.3.1’ package,
  567. try running 'ghc-pkg check'.
  568. Use -v to see a list of the files searched for.
  569. |
  570. 79 | import qualified Data.Text.Internal as T
  571. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  572.  
  573. Data/Hashable/Class.hs:80:1: error:
  574. Could not find module ‘Data.Text.Lazy’
  575. There are files missing in the ‘text-1.2.3.1’ package,
  576. try running 'ghc-pkg check'.
  577. Use -v to see a list of the files searched for.
  578. |
  579. 80 | import qualified Data.Text.Lazy as TL
  580. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  581.  
  582. Data/Hashable/Class.hs:81:1: error:
  583. Could not find module ‘Data.Version’
  584. There are files missing in the ‘base-4.12.0.0’ package,
  585. try running 'ghc-pkg check'.
  586. Use -v to see a list of the files searched for.
  587. |
  588. 81 | import Data.Version (Version(..))
  589. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  590.  
  591. Data/Hashable/Class.hs:82:1: error:
  592. Could not find module ‘Data.Word’
  593. There are files missing in the ‘base-4.12.0.0’ package,
  594. try running 'ghc-pkg check'.
  595. Use -v to see a list of the files searched for.
  596. |
  597. 82 | import Data.Word (Word8, Word16, Word32, Word64)
  598. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  599.  
  600. Data/Hashable/Class.hs:83:1: error:
  601. Could not find module ‘Foreign.C’
  602. There are files missing in the ‘base-4.12.0.0’ package,
  603. try running 'ghc-pkg check'.
  604. Use -v to see a list of the files searched for.
  605. |
  606. 83 | import Foreign.C (CString)
  607. | ^^^^^^^^^^^^^^^^^^^^^^^^^^
  608.  
  609. Data/Hashable/Class.hs:84:1: error:
  610. Could not find module ‘Foreign.Marshal.Utils’
  611. There are files missing in the ‘base-4.12.0.0’ package,
  612. try running 'ghc-pkg check'.
  613. Use -v to see a list of the files searched for.
  614. |
  615. 84 | import Foreign.Marshal.Utils (with)
  616. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  617.  
  618. Data/Hashable/Class.hs:85:1: error:
  619. Could not find module ‘Foreign.Ptr’
  620. There are files missing in the ‘base-4.12.0.0’ package,
  621. try running 'ghc-pkg check'.
  622. Use -v to see a list of the files searched for.
  623. |
  624. 85 | import Foreign.Ptr (Ptr, FunPtr, IntPtr, WordPtr, castPtr, castFunPtrToPtr, ptrToIntPtr)
  625. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  626.  
  627. Data/Hashable/Class.hs:86:1: error:
  628. Could not find module ‘Foreign.Storable’
  629. There are files missing in the ‘base-4.12.0.0’ package,
  630. try running 'ghc-pkg check'.
  631. Use -v to see a list of the files searched for.
  632. |
  633. 86 | import Foreign.Storable (alignment, peek, sizeOf)
  634. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  635.  
  636. Data/Hashable/Class.hs:87:1: error:
  637. Could not find module ‘GHC.Base’
  638. There are files missing in the ‘base-4.12.0.0’ package,
  639. try running 'ghc-pkg check'.
  640. Use -v to see a list of the files searched for.
  641. |
  642. 87 | import GHC.Base (ByteArray#)
  643. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  644.  
  645. Data/Hashable/Class.hs:88:1: error:
  646. Could not find module ‘GHC.Conc’
  647. There are files missing in the ‘base-4.12.0.0’ package,
  648. try running 'ghc-pkg check'.
  649. Use -v to see a list of the files searched for.
  650. |
  651. 88 | import GHC.Conc (ThreadId(..))
  652. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  653.  
  654. Data/Hashable/Class.hs:90:1: error:
  655. Could not find module ‘System.IO.Unsafe’
  656. There are files missing in the ‘base-4.12.0.0’ package,
  657. try running 'ghc-pkg check'.
  658. Use -v to see a list of the files searched for.
  659. |
  660. 90 | import System.IO.Unsafe (unsafeDupablePerformIO)
  661. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  662.  
  663. Data/Hashable/Class.hs:91:1: error:
  664. Could not find module ‘System.Mem.StableName’
  665. There are files missing in the ‘base-4.12.0.0’ package,
  666. try running 'ghc-pkg check'.
  667. Use -v to see a list of the files searched for.
  668. |
  669. 91 | import System.Mem.StableName
  670. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  671.  
  672. Data/Hashable/Class.hs:92:1: error:
  673. Could not find module ‘Data.Unique’
  674. There are files missing in the ‘base-4.12.0.0’ package,
  675. try running 'ghc-pkg check'.
  676. Use -v to see a list of the files searched for.
  677. |
  678. 92 | import Data.Unique (Unique, hashUnique)
  679. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  680.  
  681. Data/Hashable/Class.hs:95:1: error:
  682. Could not find module ‘Data.Foldable’
  683. There are files missing in the ‘base-4.12.0.0’ package,
  684. try running 'ghc-pkg check'.
  685. Use -v to see a list of the files searched for.
  686. |
  687. 95 | import qualified Data.Foldable as F
  688. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  689.  
  690. Data/Hashable/Class.hs:98:1: error:
  691. Could not find module ‘Data.Proxy’
  692. There are files missing in the ‘base-4.12.0.0’ package,
  693. try running 'ghc-pkg check'.
  694. Use -v to see a list of the files searched for.
  695. |
  696. 98 | import Data.Proxy (Proxy)
  697. | ^^^^^^^^^^^^^^^^^^^^^^^^^
  698.  
  699. Data/Hashable/Class.hs:102:1: error:
  700. Could not find module ‘Data.Fixed’
  701. There are files missing in the ‘base-4.12.0.0’ package,
  702. try running 'ghc-pkg check'.
  703. Use -v to see a list of the files searched for.
  704. |
  705. 102 | import Data.Fixed (Fixed(..))
  706. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  707.  
  708. Data/Hashable/Class.hs:106:1: error:
  709. Could not find module ‘Data.Functor.Identity’
  710. There are files missing in the ‘base-4.12.0.0’ package,
  711. try running 'ghc-pkg check'.
  712. Use -v to see a list of the files searched for.
  713. |
  714. 106 | import Data.Functor.Identity (Identity(..))
  715. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  716.  
  717. Data/Hashable/Class.hs:110:1: error:
  718. Could not find module ‘GHC.Generics’
  719. There are files missing in the ‘base-4.12.0.0’ package,
  720. try running 'ghc-pkg check'.
  721. Use -v to see a list of the files searched for.
  722. |
  723. 110 | import GHC.Generics
  724. | ^^^^^^^^^^^^^^^^^^^
  725.  
  726. Data/Hashable/Class.hs:114:1: error:
  727. Could not find module ‘Type.Reflection’
  728. There are files missing in the ‘base-4.12.0.0’ package,
  729. try running 'ghc-pkg check'.
  730. Use -v to see a list of the files searched for.
  731. |
  732. 114 | import Type.Reflection (Typeable, TypeRep, SomeTypeRep(..))
  733. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  734.  
  735. Data/Hashable/Class.hs:115:1: error:
  736. Could not find module ‘Type.Reflection.Unsafe’
  737. There are files missing in the ‘base-4.12.0.0’ package,
  738. try running 'ghc-pkg check'.
  739. Use -v to see a list of the files searched for.
  740. |
  741. 115 | import Type.Reflection.Unsafe (typeRepFingerprint)
  742. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  743.  
  744. Data/Hashable/Class.hs:116:1: error:
  745. Could not find module ‘GHC.Fingerprint.Type’
  746. There are files missing in the ‘base-4.12.0.0’ package,
  747. try running 'ghc-pkg check'.
  748. Use -v to see a list of the files searched for.
  749. |
  750. 116 | import GHC.Fingerprint.Type(Fingerprint(..))
  751. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  752.  
  753. Data/Hashable/Class.hs:128:1: error:
  754. Could not find module ‘Foreign.C’
  755. There are files missing in the ‘base-4.12.0.0’ package,
  756. try running 'ghc-pkg check'.
  757. Use -v to see a list of the files searched for.
  758. |
  759. 128 | import Foreign.C (CLong(..))
  760. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  761.  
  762. Data/Hashable/Class.hs:129:1: error:
  763. Could not find module ‘Foreign.C.Types’
  764. There are files missing in the ‘base-4.12.0.0’ package,
  765. try running 'ghc-pkg check'.
  766. Use -v to see a list of the files searched for.
  767. |
  768. 129 | import Foreign.C.Types (CInt(..))
  769. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  770.  
  771. Data/Hashable/Class.hs:140:1: error:
  772. Could not find module ‘Data.Bits’
  773. There are files missing in the ‘base-4.12.0.0’ package,
  774. try running 'ghc-pkg check'.
  775. Use -v to see a list of the files searched for.
  776. |
  777. 140 | import Data.Bits (finiteBitSize)
  778. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  779.  
  780. Data/Hashable/Class.hs:150:1: error:
  781. Could not find module ‘Data.ByteString.Short.Internal’
  782. There are files missing in the ‘bytestring-0.10.8.2’ package,
  783. try running 'ghc-pkg check'.
  784. Use -v to see a list of the files searched for.
  785. |
  786. 150 | import qualified Data.ByteString.Short.Internal as BSI
  787. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  788.  
  789. Data/Hashable/Class.hs:159:1: error:
  790. Could not find module ‘GHC.Exts’
  791. There are files missing in the ‘base-4.12.0.0’ package,
  792. try running 'ghc-pkg check'.
  793. Use -v to see a list of the files searched for.
  794. |
  795. 159 | import GHC.Exts (Int(..))
  796. | ^^^^^^^^^^^^^^^^^^^^^^^^^
  797.  
  798. Data/Hashable/Class.hs:160:1: error:
  799. Could not find module ‘GHC.Integer.GMP.Internals’
  800. There are files missing in the ‘integer-gmp-1.0.2.0’ package,
  801. try running 'ghc-pkg check'.
  802. Use -v to see a list of the files searched for.
  803. |
  804. 160 | import GHC.Integer.GMP.Internals (Integer(..))
  805. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  806.  
  807. Data/Hashable/Class.hs:162:1: error:
  808. Could not find module ‘GHC.Exts’
  809. There are files missing in the ‘base-4.12.0.0’ package,
  810. try running 'ghc-pkg check'.
  811. Use -v to see a list of the files searched for.
  812. |
  813. 162 | import GHC.Exts (sizeofByteArray#)
  814. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  815.  
  816. Data/Hashable/Class.hs:163:1: error:
  817. Could not find module ‘GHC.Integer.GMP.Internals’
  818. There are files missing in the ‘integer-gmp-1.0.2.0’ package,
  819. try running 'ghc-pkg check'.
  820. Use -v to see a list of the files searched for.
  821. |
  822. 163 | import GHC.Integer.GMP.Internals (BigNat(BN#))
  823. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  824.  
  825. Data/Hashable/Class.hs:168:1: error:
  826. Could not find module ‘Data.Void’
  827. There are files missing in the ‘base-4.12.0.0’ package,
  828. try running 'ghc-pkg check'.
  829. Use -v to see a list of the files searched for.
  830. |
  831. 168 | import Data.Void (Void, absurd)
  832. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  833.  
  834. Data/Hashable/Class.hs:169:1: error:
  835. Could not find module ‘GHC.Natural’
  836. There are files missing in the ‘base-4.12.0.0’ package,
  837. try running 'ghc-pkg check'.
  838. Use -v to see a list of the files searched for.
  839. |
  840. 169 | import GHC.Natural (Natural(..))
  841. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  842.  
  843. Data/Hashable/Class.hs:170:1: error:
  844. Could not find module ‘GHC.Exts’
  845. There are files missing in the ‘base-4.12.0.0’ package,
  846. try running 'ghc-pkg check'.
  847. Use -v to see a list of the files searched for.
  848. |
  849. 170 | import GHC.Exts (Word(..))
  850. | ^^^^^^^^^^^^^^^^^^^^^^^^^^
  851.  
  852. Data/Hashable/Class.hs:174:1: error:
  853. Could not find module ‘Data.List.NonEmpty’
  854. There are files missing in the ‘base-4.12.0.0’ package,
  855. try running 'ghc-pkg check'.
  856. Use -v to see a list of the files searched for.
  857. |
  858. 174 | import qualified Data.List.NonEmpty as NE
  859. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  860.  
  861. Data/Hashable/Class.hs:175:1: error:
  862. Could not find module ‘Data.Semigroup’
  863. There are files missing in the ‘base-4.12.0.0’ package,
  864. try running 'ghc-pkg check'.
  865. Use -v to see a list of the files searched for.
  866. |
  867. 175 | import Data.Semigroup
  868. | ^^^^^^^^^^^^^^^^^^^^^
  869.  
  870. Data/Hashable/Class.hs:176:1: error:
  871. Could not find module ‘Data.Functor.Classes’
  872. There are files missing in the ‘base-4.12.0.0’ package,
  873. try running 'ghc-pkg check'.
  874. Use -v to see a list of the files searched for.
  875. |
  876. 176 | import Data.Functor.Classes (Eq1(..),Ord1(..),Show1(..),showsUnaryWith)
  877. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  878.  
  879. Data/Hashable/Class.hs:178:1: error:
  880. Could not find module ‘Data.Functor.Compose’
  881. There are files missing in the ‘base-4.12.0.0’ package,
  882. try running 'ghc-pkg check'.
  883. Use -v to see a list of the files searched for.
  884. |
  885. 178 | import Data.Functor.Compose (Compose(..))
  886. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  887.  
  888. Data/Hashable/Class.hs:179:1: error:
  889. Could not find module ‘Data.Functor.Product’
  890. There are files missing in the ‘base-4.12.0.0’ package,
  891. try running 'ghc-pkg check'.
  892. Use -v to see a list of the files searched for.
  893. |
  894. 179 | import qualified Data.Functor.Product as FP
  895. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  896.  
  897. Data/Hashable/Class.hs:180:1: error:
  898. Could not find module ‘Data.Functor.Sum’
  899. There are files missing in the ‘base-4.12.0.0’ package,
  900. try running 'ghc-pkg check'.
  901. Use -v to see a list of the files searched for.
  902. |
  903. 180 | import qualified Data.Functor.Sum as FS
  904. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  905.  
  906. Data/Hashable/Class.hs:183:1: error:
  907. Could not find module ‘Data.String’
  908. There are files missing in the ‘base-4.12.0.0’ package,
  909. try running 'ghc-pkg check'.
  910. Use -v to see a list of the files searched for.
  911. |
  912. 183 | import Data.String (IsString(..))
  913. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  914.  
  915. Failed to build parallel-3.2.2.0.
  916. Build log (
  917. /home/eod/.cabal/logs/ghc-8.6.3/parallel-3.2.2.0-34caa6f2f46e262f13afed27578f59bc8f8a73f7042529c4c7283d68c2465058.log
  918. ):
  919. Configuring library for parallel-3.2.2.0..
  920. Preprocessing library for parallel-3.2.2.0..
  921. Building library for parallel-3.2.2.0..
  922. [1 of 3] Compiling Control.Parallel ( Control/Parallel.hs, dist/build/Control/Parallel.o )
  923.  
  924. Control/Parallel.hs:17:8: error:
  925. Could not find module ‘Prelude’
  926. There are files missing in the ‘base-4.12.0.0’ package,
  927. try running 'ghc-pkg check'.
  928. Use -v to see a list of the files searched for.
  929. |
  930. 17 | module Control.Parallel (
  931. | ^^^^^^^^^^^^^^^^
  932.  
  933. Control/Parallel.hs:22:1: error:
  934. Could not find module ‘GHC.Conc’
  935. There are files missing in the ‘base-4.12.0.0’ package,
  936. try running 'ghc-pkg check'.
  937. Use -v to see a list of the files searched for.
  938. |
  939. 22 | import qualified GHC.Conc ( par, pseq )
  940. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  941.  
  942. Failed to build primitive-0.6.4.0.
  943. Build log (
  944. /home/eod/.cabal/logs/ghc-8.6.3/primitive-0.6.4.0-8653f498667506b1752b3331aa6031a34d31fd0c8a451e8b44414537289c1def.log
  945. ):
  946. Configuring library for primitive-0.6.4.0..
  947. Preprocessing library for primitive-0.6.4.0..
  948. Building library for primitive-0.6.4.0..
  949. [ 1 of 15] Compiling Control.Monad.Primitive ( Control/Monad/Primitive.hs, dist/build/Control/Monad/Primitive.o )
  950.  
  951. Control/Monad/Primitive.hs:17:8: error:
  952. Could not find module ‘Prelude’
  953. There are files missing in the ‘base-4.12.0.0’ package,
  954. try running 'ghc-pkg check'.
  955. Use -v to see a list of the files searched for.
  956. |
  957. 17 | module Control.Monad.Primitive (
  958. | ^^^^^^^^^^^^^^^^^^^^^^^
  959.  
  960. Control/Monad/Primitive.hs:27:1: error:
  961. Could not find module ‘GHC.Base’
  962. There are files missing in the ‘base-4.12.0.0’ package,
  963. try running 'ghc-pkg check'.
  964. Use -v to see a list of the files searched for.
  965. |
  966. 27 | import GHC.Base ( unsafeCoerce#, realWorld# )
  967. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  968.  
  969. Control/Monad/Primitive.hs:29:1: error:
  970. Could not find module ‘GHC.Base’
  971. There are files missing in the ‘base-4.12.0.0’ package,
  972. try running 'ghc-pkg check'.
  973. Use -v to see a list of the files searched for.
  974. |
  975. 29 | import GHC.Base ( seq# )
  976. | ^^^^^^^^^^^^^^^^^^^^^^^^^^
  977.  
  978. Control/Monad/Primitive.hs:34:1: error:
  979. Could not find module ‘GHC.IO’
  980. There are files missing in the ‘base-4.12.0.0’ package,
  981. try running 'ghc-pkg check'.
  982. Use -v to see a list of the files searched for.
  983. |
  984. 34 | import GHC.IO ( IO(..) )
  985. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  986.  
  987. Control/Monad/Primitive.hs:38:1: error:
  988. Could not find module ‘GHC.ST’
  989. There are files missing in the ‘base-4.12.0.0’ package,
  990. try running 'ghc-pkg check'.
  991. Use -v to see a list of the files searched for.
  992. |
  993. 38 | import GHC.ST ( ST(..) )
  994. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  995.  
  996. Control/Monad/Primitive.hs:40:1: error:
  997. Could not find module ‘Control.Monad.Trans.Class’
  998. There are files missing in the ‘transformers-0.5.5.0’ package,
  999. try running 'ghc-pkg check'.
  1000. Use -v to see a list of the files searched for.
  1001. |
  1002. 40 | import Control.Monad.Trans.Class (lift)
  1003. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1004.  
  1005. Control/Monad/Primitive.hs:45:1: error:
  1006. Could not find module ‘Control.Monad.Trans.Cont’
  1007. There are files missing in the ‘transformers-0.5.5.0’ package,
  1008. try running 'ghc-pkg check'.
  1009. Use -v to see a list of the files searched for.
  1010. |
  1011. 45 | import Control.Monad.Trans.Cont ( ContT )
  1012. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1013.  
  1014. Control/Monad/Primitive.hs:46:1: error:
  1015. Could not find module ‘Control.Monad.Trans.Identity’
  1016. There are files missing in the ‘transformers-0.5.5.0’ package,
  1017. try running 'ghc-pkg check'.
  1018. Use -v to see a list of the files searched for.
  1019. |
  1020. 46 | import Control.Monad.Trans.Identity ( IdentityT (IdentityT) )
  1021. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1022.  
  1023. Control/Monad/Primitive.hs:47:1: error:
  1024. Could not find module ‘Control.Monad.Trans.List’
  1025. There are files missing in the ‘transformers-0.5.5.0’ package,
  1026. try running 'ghc-pkg check'.
  1027. Use -v to see a list of the files searched for.
  1028. |
  1029. 47 | import Control.Monad.Trans.List ( ListT )
  1030. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1031.  
  1032. Control/Monad/Primitive.hs:48:1: error:
  1033. Could not find module ‘Control.Monad.Trans.Maybe’
  1034. There are files missing in the ‘transformers-0.5.5.0’ package,
  1035. try running 'ghc-pkg check'.
  1036. Use -v to see a list of the files searched for.
  1037. |
  1038. 48 | import Control.Monad.Trans.Maybe ( MaybeT )
  1039. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1040.  
  1041. Control/Monad/Primitive.hs:49:1: error:
  1042. Could not find module ‘Control.Monad.Trans.Error’
  1043. There are files missing in the ‘transformers-0.5.5.0’ package,
  1044. try running 'ghc-pkg check'.
  1045. Use -v to see a list of the files searched for.
  1046. |
  1047. 49 | import Control.Monad.Trans.Error ( ErrorT, Error)
  1048. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1049.  
  1050. Control/Monad/Primitive.hs:50:1: error:
  1051. Could not find module ‘Control.Monad.Trans.Reader’
  1052. There are files missing in the ‘transformers-0.5.5.0’ package,
  1053. try running 'ghc-pkg check'.
  1054. Use -v to see a list of the files searched for.
  1055. |
  1056. 50 | import Control.Monad.Trans.Reader ( ReaderT )
  1057. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1058.  
  1059. Control/Monad/Primitive.hs:51:1: error:
  1060. Could not find module ‘Control.Monad.Trans.State’
  1061. There are files missing in the ‘transformers-0.5.5.0’ package,
  1062. try running 'ghc-pkg check'.
  1063. Use -v to see a list of the files searched for.
  1064. |
  1065. 51 | import Control.Monad.Trans.State ( StateT )
  1066. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1067.  
  1068. Control/Monad/Primitive.hs:52:1: error:
  1069. Could not find module ‘Control.Monad.Trans.Writer’
  1070. There are files missing in the ‘transformers-0.5.5.0’ package,
  1071. try running 'ghc-pkg check'.
  1072. Use -v to see a list of the files searched for.
  1073. |
  1074. 52 | import Control.Monad.Trans.Writer ( WriterT )
  1075. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1076.  
  1077. Control/Monad/Primitive.hs:53:1: error:
  1078. Could not find module ‘Control.Monad.Trans.RWS’
  1079. There are files missing in the ‘transformers-0.5.5.0’ package,
  1080. try running 'ghc-pkg check'.
  1081. Use -v to see a list of the files searched for.
  1082. |
  1083. 53 | import Control.Monad.Trans.RWS ( RWST )
  1084. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1085.  
  1086. Control/Monad/Primitive.hs:56:1: error:
  1087. Could not find module ‘Control.Monad.Trans.Except’
  1088. There are files missing in the ‘transformers-0.5.5.0’ package,
  1089. try running 'ghc-pkg check'.
  1090. Use -v to see a list of the files searched for.
  1091. |
  1092. 56 | import Control.Monad.Trans.Except ( ExceptT )
  1093. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1094.  
  1095. Control/Monad/Primitive.hs:60:1: error:
  1096. Could not find module ‘Control.Monad.Trans.Accum’
  1097. There are files missing in the ‘transformers-0.5.5.0’ package,
  1098. try running 'ghc-pkg check'.
  1099. Use -v to see a list of the files searched for.
  1100. |
  1101. 60 | import Control.Monad.Trans.Accum ( AccumT )
  1102. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1103.  
  1104. Control/Monad/Primitive.hs:61:1: error:
  1105. Could not find module ‘Control.Monad.Trans.Select’
  1106. There are files missing in the ‘transformers-0.5.5.0’ package,
  1107. try running 'ghc-pkg check'.
  1108. Use -v to see a list of the files searched for.
  1109. |
  1110. 61 | import Control.Monad.Trans.Select ( SelectT )
  1111. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1112.  
  1113. Control/Monad/Primitive.hs:64:1: error:
  1114. Could not find module ‘Control.Monad.Trans.RWS.Strict’
  1115. There are files missing in the ‘transformers-0.5.5.0’ package,
  1116. try running 'ghc-pkg check'.
  1117. Use -v to see a list of the files searched for.
  1118. |
  1119. 64 | import qualified Control.Monad.Trans.RWS.Strict as Strict ( RWST )
  1120. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1121.  
  1122. Control/Monad/Primitive.hs:65:1: error:
  1123. Could not find module ‘Control.Monad.Trans.State.Strict’
  1124. There are files missing in the ‘transformers-0.5.5.0’ package,
  1125. try running 'ghc-pkg check'.
  1126. Use -v to see a list of the files searched for.
  1127. |
  1128. 65 | import qualified Control.Monad.Trans.State.Strict as Strict ( StateT )
  1129. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1130.  
  1131. Control/Monad/Primitive.hs:66:1: error:
  1132. Could not find module ‘Control.Monad.Trans.Writer.Strict’
  1133. There are files missing in the ‘transformers-0.5.5.0’ package,
  1134. try running 'ghc-pkg check'.
  1135. Use -v to see a list of the files searched for.
  1136. |
  1137. 66 | import qualified Control.Monad.Trans.Writer.Strict as Strict ( WriterT )
  1138. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1139.  
  1140. Failed to build reflection-2.1.4.
  1141. Build log (
  1142. /home/eod/.cabal/logs/ghc-8.6.3/reflection-2.1.4-aa963f990dbef47d1000291cc257fa6ed794ae0172e9b581e835cd506eacfc2f.log
  1143. ):
  1144. Configuring library for reflection-2.1.4..
  1145. Preprocessing library for reflection-2.1.4..
  1146. Building library for reflection-2.1.4..
  1147. [1 of 1] Compiling Data.Reflection ( fast/Data/Reflection.hs, dist/build/Data/Reflection.o )
  1148.  
  1149. fast/Data/Reflection.hs:75:8: error:
  1150. Could not find module ‘Prelude’
  1151. There are files missing in the ‘base-4.12.0.0’ package,
  1152. try running 'ghc-pkg check'.
  1153. Use -v to see a list of the files searched for.
  1154. |
  1155. 75 | module Data.Reflection
  1156. | ^^^^^^^^^^^^^^^
  1157.  
  1158. fast/Data/Reflection.hs:110:1: error:
  1159. Could not find module ‘Control.Applicative’
  1160. There are files missing in the ‘base-4.12.0.0’ package,
  1161. try running 'ghc-pkg check'.
  1162. Use -v to see a list of the files searched for.
  1163. |
  1164. 110 | import Control.Applicative
  1165. | ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1166.  
  1167. fast/Data/Reflection.hs:113:1: error:
  1168. Could not find module ‘Control.Monad’
  1169. There are files missing in the ‘base-4.12.0.0’ package,
  1170. try running 'ghc-pkg check'.
  1171. Use -v to see a list of the files searched for.
  1172. |
  1173. 113 | import Control.Monad
  1174. | ^^^^^^^^^^^^^^^^^^^^
  1175.  
  1176. fast/Data/Reflection.hs:116:1: error:
  1177. Could not find module ‘Data.Bits’
  1178. There are files missing in the ‘base-4.12.0.0’ package,
  1179. try running 'ghc-pkg check'.
  1180. Use -v to see a list of the files searched for.
  1181. |
  1182. 116 | import Data.Bits
  1183. | ^^^^^^^^^^^^^^^^
  1184.  
  1185. fast/Data/Reflection.hs:122:1: error:
  1186. Could not find module ‘Data.Semigroup’
  1187. There are files missing in the ‘base-4.12.0.0’ package,
  1188. try running 'ghc-pkg check'.
  1189. Use -v to see a list of the files searched for.
  1190. |
  1191. 122 | import Data.Semigroup as Sem
  1192. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1193.  
  1194. fast/Data/Reflection.hs:123:1: error:
  1195. Could not find module ‘Data.Proxy’
  1196. There are files missing in the ‘base-4.12.0.0’ package,
  1197. try running 'ghc-pkg check'.
  1198. Use -v to see a list of the files searched for.
  1199. |
  1200. 123 | import Data.Proxy
  1201. | ^^^^^^^^^^^^^^^^^
  1202.  
  1203. fast/Data/Reflection.hs:129:1: error:
  1204. Could not find module ‘Data.Typeable’
  1205. There are files missing in the ‘base-4.12.0.0’ package,
  1206. try running 'ghc-pkg check'.
  1207. Use -v to see a list of the files searched for.
  1208. |
  1209. 129 | import Data.Typeable
  1210. | ^^^^^^^^^^^^^^^^^^^^
  1211.  
  1212. fast/Data/Reflection.hs:130:1: error:
  1213. Could not find module ‘Data.Word’
  1214. There are files missing in the ‘base-4.12.0.0’ package,
  1215. try running 'ghc-pkg check'.
  1216. Use -v to see a list of the files searched for.
  1217. |
  1218. 130 | import Data.Word
  1219. | ^^^^^^^^^^^^^^^^
  1220.  
  1221. fast/Data/Reflection.hs:131:1: error:
  1222. Could not find module ‘Foreign.Ptr’
  1223. There are files missing in the ‘base-4.12.0.0’ package,
  1224. try running 'ghc-pkg check'.
  1225. Use -v to see a list of the files searched for.
  1226. |
  1227. 131 | import Foreign.Ptr
  1228. | ^^^^^^^^^^^^^^^^^^
  1229.  
  1230. fast/Data/Reflection.hs:132:1: error:
  1231. Could not find module ‘Foreign.StablePtr’
  1232. There are files missing in the ‘base-4.12.0.0’ package,
  1233. try running 'ghc-pkg check'.
  1234. Use -v to see a list of the files searched for.
  1235. |
  1236. 132 | import Foreign.StablePtr
  1237. | ^^^^^^^^^^^^^^^^^^^^^^^^
  1238.  
  1239. fast/Data/Reflection.hs:135:1: error:
  1240. Could not find module ‘GHC.TypeLits’
  1241. There are files missing in the ‘base-4.12.0.0’ package,
  1242. try running 'ghc-pkg check'.
  1243. Use -v to see a list of the files searched for.
  1244. |
  1245. 135 | import GHC.TypeLits
  1246. | ^^^^^^^^^^^^^^^^^^^
  1247.  
  1248. fast/Data/Reflection.hs:143:1: error:
  1249. Could not find module ‘Language.Haskell.TH’
  1250. There are files missing in the ‘template-haskell-2.14.0.0’ package,
  1251. try running 'ghc-pkg check'.
  1252. Use -v to see a list of the files searched for.
  1253. |
  1254. 143 | import Language.Haskell.TH hiding (reify)
  1255. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1256.  
  1257. fast/Data/Reflection.hs:146:1: error:
  1258. Could not find module ‘System.IO.Unsafe’
  1259. There are files missing in the ‘base-4.12.0.0’ package,
  1260. try running 'ghc-pkg check'.
  1261. Use -v to see a list of the files searched for.
  1262. |
  1263. 146 | import System.IO.Unsafe
  1264. | ^^^^^^^^^^^^^^^^^^^^^^^
  1265.  
  1266. fast/Data/Reflection.hs:149:1: error:
  1267. Could not find module ‘Unsafe.Coerce’
  1268. There are files missing in the ‘base-4.12.0.0’ package,
  1269. try running 'ghc-pkg check'.
  1270. Use -v to see a list of the files searched for.
  1271. |
  1272. 149 | import Unsafe.Coerce
  1273. | ^^^^^^^^^^^^^^^^^^^^
  1274.  
  1275. Failed to build semigroups-0.18.5.
  1276. Build log (
  1277. /home/eod/.cabal/logs/ghc-8.6.3/semigroups-0.18.5-5da20fa87bd6fe35be2fd7abda6498883b974c5c53a291808fd4d371d2893e2d.log
  1278. ):
  1279. Configuring library for semigroups-0.18.5..
  1280. Preprocessing library for semigroups-0.18.5..
  1281. Building library for semigroups-0.18.5..
  1282. [1 of 1] Compiling Data.Semigroup.Generic ( src/Data/Semigroup/Generic.hs, dist/build/Data/Semigroup/Generic.o )
  1283.  
  1284. src/Data/Semigroup/Generic.hs:23:8: error:
  1285. Could not find module ‘Prelude’
  1286. There are files missing in the ‘base-4.12.0.0’ package,
  1287. try running 'ghc-pkg check'.
  1288. Use -v to see a list of the files searched for.
  1289. |
  1290. 23 | module Data.Semigroup.Generic
  1291. | ^^^^^^^^^^^^^^^^^^^^^^
  1292.  
  1293. src/Data/Semigroup/Generic.hs:33:1: error:
  1294. Could not find module ‘GHC.Generics’
  1295. There are files missing in the ‘base-4.12.0.0’ package,
  1296. try running 'ghc-pkg check'.
  1297. Use -v to see a list of the files searched for.
  1298. |
  1299. 33 | import GHC.Generics
  1300. | ^^^^^^^^^^^^^^^^^^^
  1301. cabal: Failed to build StateVar-1.1.1.1 (which is required by lens-4.17). See
  1302. the build log above for details.
  1303. Failed to build base-orphans-0.8 (which is required by lens-4.17). See the
  1304. build log above for details.
  1305. Failed to build cabal-doctest-1.0.6 (which is required by lens-4.17). See the
  1306. build log above for details.
  1307. Failed to build call-stack-0.1.0 (which is required by lens-4.17). See the
  1308. build log above for details.
  1309. Failed to build hashable-1.2.7.0 (which is required by lens-4.17). See the
  1310. build log above for details.
  1311. Failed to build parallel-3.2.2.0 (which is required by lens-4.17). See the
  1312. build log above for details.
  1313. Failed to build primitive-0.6.4.0 (which is required by lens-4.17). See the
  1314. build log above for details.
  1315. Failed to build reflection-2.1.4 (which is required by lens-4.17). See the
  1316. build log above for details.
  1317. Failed to build semigroups-0.18.5 (which is required by lens-4.17). See the
  1318. build log above for details.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement