-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README to list 9.6 properly (#2665)
Plus, test on 9.6 on Windows/macOS CI (cherry picked from commit cb331a8) # Conflicts: # .github/workflows/ci.yml # README.md
- Loading branch information
1 parent
1f33914
commit 4835bb9
Showing
7 changed files
with
88 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
SIMPLE_PATH=$(echo dist-newstyle/build/*/*/"$1"-*/"$3"/"$2"/build/"$2"/"$2") | ||
CUSTOM_PATH=$(echo dist-newstyle/build/*/*/"$1"-*/build/"$2"/"$2") | ||
|
||
if [ -x "$SIMPLE_PATH" ]; then | ||
echo "$SIMPLE_PATH" | ||
elif [ -x "$CUSTOM_PATH" ]; then | ||
echo "$CUSTOM_PATH" | ||
else | ||
echo "find_cabal_bin.sh: Could not find $1 $2" >/dev/stderr | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
resolver: lts-22.9 | ||
|
||
ghc-options: | ||
"$locals": -Wall -Wcompat | ||
|
||
packages: | ||
- clash-prelude | ||
- clash-prelude-hedgehog | ||
- clash-lib | ||
- clash-lib-hedgehog | ||
- clash-ghc | ||
- clash-cores | ||
- tests | ||
|
||
extra-deps: | ||
- ansi-terminal-0.11.5@sha256:2fe3d006b9ea0dc1a5537a029edb0bc2bbe56a33a6d95264b38b54c58e931e51,3752 | ||
- hedgehog-1.2@sha256:cb20b0f1dad7a7e4461085ea2d8ef084a19d0d5f137133bf88d1fd2f7ce9a5aa,4561 | ||
- hedgehog-fakedata-0.0.1.5@sha256:d8059e4ef9b7b4112bef9791300118f3a2d776bb191e50b41635a411af609428,1424 | ||
- tasty-1.5@sha256:c62c96da1e9d65bf61ce583e9f7085eed1daeb62a45f3106ca252bf9ef87025b,2763 | ||
|
||
# TODO: Remove this workaround. See: | ||
# | ||
# https://github.com/clash-lang/clash-compiler/pull/2665#issuecomment-1939044550 | ||
- git: https://github.com/haskell/cabal.git | ||
commit: a3865991986361b3a736007f620b6a8878d178e3 | ||
subdirs: | ||
- Cabal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,10 @@ maintainer: [email protected] | |
copyright: Copyright © 2019 , Foamspace Corp., | ||
2022-2023, QBayLogic B.V. | ||
category: Hardware | ||
build-type: Simple | ||
-- TODO: Revert to "Simple". See: | ||
-- | ||
-- https://github.com/clash-lang/clash-compiler/pull/2665#issuecomment-1939044550 | ||
build-type: Custom | ||
extra-source-files: CHANGELOG.md | ||
|
||
flag doctests | ||
|
@@ -39,6 +42,14 @@ flag nix | |
default: False | ||
manual: True | ||
|
||
-- TODO: Remove this workaround. See: | ||
-- | ||
-- https://github.com/clash-lang/clash-compiler/pull/2665#issuecomment-1939044550 | ||
custom-setup | ||
setup-depends: | ||
base, | ||
Cabal | ||
|
||
common basic-config | ||
default-language: Haskell2010 | ||
|
||
|