Skip to content

Commit

Permalink
Merge pull request #894 from basile-henry/enable-shared-executables
Browse files Browse the repository at this point in the history
Enable shared executables
  • Loading branch information
martijnbastiaan committed Nov 1, 2019
2 parents 1f40633 + fde227e commit d7fe89f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions clash-ghc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
* Fix blackbox issues causing Clash to generate invalid HDL ([#865](https://github.com/clash-lang/clash-compiler/pull/865))
* Treat types with a zero-width custom bit representation like other zero-width constructs ([#874](https://github.com/clash-lang/clash-compiler/pull/874))
* TH code for auto deriving bit representations now produces nicer error messages ([7190793](https://github.com/clash-lang/clash-compiler/commit/7190793928545f85157f9b8d4b8ec2edb2cd8a26))
* Adds '--enable-shared-executables' for nix builds; this should make Clash run _much_ faster ([#894](https://github.com/clash-lang/clash-compiler/pull/894))

* Deprecations & removals:
* Removed support for GHC 8.2 ([#842](https://github.com/clash-lang/clash-compiler/pull/842))
Expand Down
3 changes: 2 additions & 1 deletion clash-ghc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
with nixpkgs.pkgs;
with gitignore;

haskellPackages.callCabal2nix "clash-ghc" (gitignoreSource ./.) {}
haskell.lib.enableSharedExecutables
(haskellPackages.callCabal2nix "clash-ghc" (gitignoreSource ./.) {})

0 comments on commit d7fe89f

Please sign in to comment.