-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Add solc binaries and transient storage lock library #395
Changes from 6 commits
5f8af98
727ef1a
3bc0ba3
17f559e
2f61eb9
94398f2
95d57a4
9e93826
3ac24ef
16150c1
b140d43
1b9e227
04401e1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
FOUNDRY_FUZZ_SEED=0x4444 | ||
|
||
if [[ "$OSTYPE" == "linux-gnu"* ]]; then | ||
FOUNDRY_SOLC="./bin/solc-static-linux" | ||
elif [[ "$OSTYPE" == "darwin"* ]]; then | ||
FOUNDRY_SOLC="./bin/solc" | ||
fi |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
197447 | ||
172021 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
184082 | ||
158656 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
95906 | ||
76947 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
153271 | ||
134745 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
25011 | ||
25033 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
58439 | ||
14918 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
38079 | ||
38101 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
307014 | ||
264055 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
275044 | ||
232085 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
293680 | ||
250721 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
36677 | ||
36699 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
24366 | ||
24630 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
151298 | ||
129248 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
124939 | ||
106413 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
109627 | ||
91101 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
126356 | ||
107809 |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
166380 | ||
147831 |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
196682 | ||
171256 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
109605 | ||
91079 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
203277 | ||
177851 |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ optimizer_runs = 800 | |
via_ir = false | ||
ffi = true | ||
fs_permissions = [{ access = "read-write", path = ".forge-snapshots/"}, { access = "read", path = "./out"}] | ||
evm_version = 'paris' | ||
cancun = true | ||
|
||
[profile.default.fuzz] | ||
runs = 100 | ||
|
@@ -13,4 +13,8 @@ seed = "0x4444" | |
[profile.ci.fuzz] | ||
runs = 1000 | ||
|
||
[profile.ci] | ||
fuzz_runs = 100000 | ||
solc = "./bin/solc-static-linux" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. wait so does the other one only work on mac? thats awk for people who run non-mac locally There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah there are different binaries for diff machines :/ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what if we made .env set the solc binary environment variable depending on os?
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. windows users have questions? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. if youre a windows user can you |
||
|
||
# See more config options https://github.com/foundry-rs/foundry/tree/master/config |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: rename to solc-mac for clarity