forked from ethereum/hevm
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ghc 9.6 v2 #4
Closed
Closed
Ghc 9.6 v2 #4
Conversation
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
Added `startPrank()` and `stopPrank()` cheatcodes to hevm.
Rationale: solc releases prior to 0.8.24 did not contain an executable for arm64 chips. Without Rosetta, the part of `hevm` that requires calling `solc` wouldn't work on arm-based OSX. Upgrading solc also showed that `hevm` loops if the bytecode contains infinite recursion using only `JUMP` (and not `JUMPI`) instructions. For this reason we now skip a few tests that contain infinite recursion.
On arm Mac, the GHC is trying to locate libc++, but during that it also searches for c++ (without the lib prefix), which is an alias for a clang executable. It tries to load an executable as a static library which results in an error. I have no idea why these changes work, but they seem to work.
Foundry does not depend on DS tests anymore, they provide their own cheatcodes directly in their VM now, so that the `lib` directory no longer exists.
This shell only sets up the test dependencies, but keeps the Haskell environment setup from the system. This is a temporary workaround until the nix/ghc issue on MacOS is fixed upstream.
Use matrix for release configuration
Adding MacOS-ARM64 release build
cli: fix --initial-storage option for hevm symbolic
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Checklist