-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from wenlinlee/evm-cancun
add solc 0.8.26
- Loading branch information
Showing
34 changed files
with
143 additions
and
8 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 |
---|---|---|
|
@@ -87,15 +87,15 @@ test { | |
} | ||
|
||
jar { | ||
dependsOn(['jarAll', 'jar0425', 'jar052', 'jar0610', 'jar0811', 'jarLinux', 'jarMac', 'jarWin']) | ||
dependsOn(['jarAll', 'jar0425', 'jar052', 'jar0610', 'jar0811', 'jar0826', 'jarLinux', 'jarMac', 'jarWin']) | ||
} | ||
|
||
task jarAll(type: Jar) { | ||
manifest { | ||
attributes(["Implementation-Timestamp": date, | ||
"Git-Branch" : branch, | ||
"Git-Commit" : commit, | ||
"Solidity-Version" : "0.4.25, 0.5.2, 0.6.10, 0.8.11", | ||
"Solidity-Version" : "0.4.25, 0.5.2, 0.6.10, 0.8.11, 0.8.26", | ||
"Crypto" : "ecdsa, sm", | ||
"OS-Name" : "linux, mac, win", | ||
"OS-Arch" : "x86, arm", | ||
|
@@ -122,9 +122,11 @@ task jar0425(type: Jar) { | |
exclude "native/ecdsa/linux/0.5.2", "native/ecdsa/mac/0.5.2", "native/ecdsa/win/0.5.2" | ||
exclude "native/ecdsa/linux/0.6.10", "native/ecdsa/mac/0.6.10", "native/ecdsa/win/0.6.10" | ||
exclude "native/ecdsa/linux/0.8.11", "native/ecdsa/mac/0.8.11", "native/ecdsa/win/0.8.11" | ||
exclude "native/ecdsa/linux/0.8.26", "native/ecdsa/mac/0.8.26", "native/ecdsa/win/0.8.26" | ||
exclude "native/sm/linux/0.5.2", "native/sm/mac/0.5.2", "native/sm/win/0.5.2" | ||
exclude "native/sm/linux/0.6.10", "native/sm/mac/0.6.10", "native/sm/win/0.6.10" | ||
exclude "native/sm/linux/0.8.11", "native/sm/mac/0.8.11", "native/sm/win/0.8.11" | ||
exclude "native/sm/linux/0.8.26", "native/sm/mac/0.8.26", "native/sm/win/0.8.26" | ||
|
||
archiveFileName = project.name + '-0.4.25-' + project.version + '.jar'; | ||
} | ||
|
@@ -145,9 +147,11 @@ task jar052(type: Jar) { | |
exclude "native/ecdsa/linux/0.4.25", "native/ecdsa/mac/0.4.25", "native/ecdsa/win/0.4.25" | ||
exclude "native/ecdsa/linux/0.6.10", "native/ecdsa/mac/0.6.10", "native/ecdsa/win/0.6.10" | ||
exclude "native/ecdsa/linux/0.8.11", "native/ecdsa/mac/0.8.11", "native/ecdsa/win/0.8.11" | ||
exclude "native/ecdsa/linux/0.8.26", "native/ecdsa/mac/0.8.26", "native/ecdsa/win/0.8.26" | ||
exclude "native/sm/linux/0.4.25", "native/sm/mac/0.4.25", "native/sm/win/0.4.25" | ||
exclude "native/sm/linux/0.6.10", "native/sm/mac/0.6.10", "native/sm/win/0.6.10" | ||
exclude "native/sm/linux/0.8.11", "native/sm/mac/0.8.11", "native/sm/win/0.8.11" | ||
exclude "native/sm/linux/0.8.26", "native/sm/mac/0.8.26", "native/sm/win/0.8.26" | ||
|
||
archiveFileName = project.name + '-0.5.2-' + project.version + '.jar'; | ||
} | ||
|
@@ -168,9 +172,11 @@ task jar0610(type: Jar) { | |
exclude "native/ecdsa/linux/0.4.25", "native/ecdsa/mac/0.4.25", "native/ecdsa/win/0.4.25" | ||
exclude "native/ecdsa/linux/0.5.2", "native/ecdsa/mac/0.5.2", "native/ecdsa/win/0.5.2" | ||
exclude "native/ecdsa/linux/0.8.11", "native/ecdsa/mac/0.8.11", "native/ecdsa/win/0.8.11" | ||
exclude "native/ecdsa/linux/0.8.26", "native/ecdsa/mac/0.8.26", "native/ecdsa/win/0.8.26" | ||
exclude "native/sm/linux/0.4.25", "native/sm/mac/0.4.25", "native/sm/win/0.4.25" | ||
exclude "native/sm/linux/0.5.2", "native/sm/mac/0.5.2", "native/sm/win/0.5.2" | ||
exclude "native/sm/linux/0.8.11", "native/sm/mac/0.8.11", "native/sm/win/0.8.11" | ||
exclude "native/sm/linux/0.8.26", "native/sm/mac/0.8.26", "native/sm/win/0.8.26" | ||
|
||
archiveFileName = project.name + '-0.6.10-' + project.version + '.jar'; | ||
} | ||
|
@@ -191,19 +197,46 @@ task jar0811(type: Jar) { | |
exclude "native/ecdsa/linux/0.4.25", "native/ecdsa/mac/0.4.25", "native/ecdsa/win/0.4.25" | ||
exclude "native/ecdsa/linux/0.5.2", "native/ecdsa/mac/0.5.2", "native/ecdsa/win/0.5.2" | ||
exclude "native/ecdsa/linux/0.6.10", "native/ecdsa/mac/0.6.10", "native/ecdsa/win/0.6.10" | ||
exclude "native/ecdsa/linux/0.8.26", "native/ecdsa/mac/0.8.26", "native/ecdsa/win/0.8.26" | ||
exclude "native/sm/linux/0.4.25", "native/sm/mac/0.4.25", "native/sm/win/0.4.25" | ||
exclude "native/sm/linux/0.5.2", "native/sm/mac/0.5.2", "native/sm/win/0.5.2" | ||
exclude "native/sm/linux/0.6.10", "native/sm/mac/0.6.10", "native/sm/win/0.6.10" | ||
exclude "native/sm/linux/0.8.26", "native/sm/mac/0.8.26", "native/sm/win/0.8.26" | ||
|
||
archiveFileName = project.name + '-0.8.11-' + project.version + '.jar'; | ||
} | ||
|
||
task jar0826(type: Jar) { | ||
manifest { | ||
attributes(["Implementation-Timestamp": date, | ||
"Git-Branch" : branch, | ||
"Git-Commit" : commit, | ||
"Solidity-Version" : "0.8.26", | ||
"Crypto" : "ecdsa, sm", | ||
"OS-Name" : "linux, mac, win", | ||
"OS-Arch" : "x86, arm", | ||
]) | ||
} | ||
|
||
from sourceSets.main.output | ||
exclude "native/ecdsa/linux/0.4.25", "native/ecdsa/mac/0.4.25", "native/ecdsa/win/0.4.25" | ||
exclude "native/ecdsa/linux/0.5.2", "native/ecdsa/mac/0.5.2", "native/ecdsa/win/0.5.2" | ||
exclude "native/ecdsa/linux/0.6.10", "native/ecdsa/mac/0.6.10", "native/ecdsa/win/0.6.10" | ||
exclude "native/ecdsa/linux/0.8.11", "native/ecdsa/mac/0.8.11", "native/ecdsa/win/0.8.11" | ||
exclude "native/sm/linux/0.4.25", "native/sm/mac/0.4.25", "native/sm/win/0.4.25" | ||
exclude "native/sm/linux/0.5.2", "native/sm/mac/0.5.2", "native/sm/win/0.5.2" | ||
exclude "native/sm/linux/0.6.10", "native/sm/mac/0.6.10", "native/sm/win/0.6.10" | ||
exclude "native/sm/linux/0.8.11", "native/sm/mac/0.8.11", "native/sm/win/0.8.11" | ||
|
||
archiveFileName = project.name + '-0.8.26-' + project.version + '.jar'; | ||
} | ||
|
||
task jarLinux(type: Jar) { | ||
manifest { | ||
attributes(["Implementation-Timestamp": date, | ||
"Git-Branch" : branch, | ||
"Git-Commit" : commit, | ||
"Solidity-Version" : "0.4.25, 0.5.2, 0.6.10, 0.8.11", | ||
"Solidity-Version" : "0.4.25, 0.5.2, 0.6.10, 0.8.11, 0.8.26", | ||
"Crypto" : "ecdsa, sm", | ||
"OS-Name" : "linux", | ||
"OS-Arch" : "x86, arm", | ||
|
@@ -222,7 +255,7 @@ task jarMac(type: Jar) { | |
attributes(["Implementation-Timestamp": date, | ||
"Git-Branch" : branch, | ||
"Git-Commit" : commit, | ||
"Solidity-Version" : "0.4.25, 0.5.2, 0.6.10, 0.8.11", | ||
"Solidity-Version" : "0.4.25, 0.5.2, 0.6.10, 0.8.11, 0.8.26", | ||
"Crypto" : "ecdsa, sm", | ||
"OS-Name" : "mac", | ||
"OS-Arch" : "x86, arm", | ||
|
@@ -241,7 +274,7 @@ task jarWin(type: Jar) { | |
attributes(["Implementation-Timestamp": date, | ||
"Git-Branch" : branch, | ||
"Git-Commit" : commit, | ||
"Solidity-Version" : "0.4.25, 0.5.2, 0.6.10, 0.8.11", | ||
"Solidity-Version" : "0.4.25, 0.5.2, 0.6.10, 0.8.11, 0.8.26", | ||
"Crypto" : "ecdsa, sm", | ||
"OS-Name" : "win", | ||
"OS-Arch" : "x86", | ||
|
@@ -448,6 +481,41 @@ publishing { | |
} | ||
} | ||
|
||
solc0826(MavenPublication) { | ||
|
||
artifactId project.name + '-0.8.26' | ||
groupId project.group | ||
version project.version | ||
|
||
artifact jar0826 | ||
artifact sourcesJar | ||
artifact javadocJar | ||
|
||
pom { | ||
name = 'fisco-bcos' | ||
description = 'fisco-bcos solcJ' | ||
url = 'http://www.fisco-bcos.org' | ||
|
||
licenses { | ||
license { | ||
name = 'The Apache License, Version 2.0' | ||
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt' | ||
} | ||
} | ||
developers { | ||
developer { | ||
id = 'zhangsan' | ||
name = 'zhangsan' | ||
email = '[email protected]' | ||
} | ||
} | ||
scm { | ||
connection = 'https://github.com/FISCO-BCOS/solcJ.git' | ||
url = 'https://github.com/FISCO-BCOS/solcJ.git' | ||
} | ||
} | ||
} | ||
|
||
solcLinux(MavenPublication) { | ||
|
||
artifactId project.name + '-linux' | ||
|
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
1 change: 1 addition & 0 deletions
1
src/main/resources/native/ecdsa/linux/0.8.26/arm/solc/file.list
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 @@ | ||
solc |
Binary file not shown.
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 @@ | ||
solc |
Binary file not shown.
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 @@ | ||
solc |
Binary file not shown.
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 @@ | ||
solc |
Binary file not shown.
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,4 @@ | ||
solc.exe | ||
msvcp140.dll | ||
msvcp140_1.dll | ||
msvcp140_2.dll |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 @@ | ||
solc |
Binary file not shown.
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 @@ | ||
solc |
Binary file not shown.
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 @@ | ||
solc |
Binary file not shown.
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 @@ | ||
solc |
Binary file not shown.
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,4 @@ | ||
solc.exe | ||
msvcp140.dll | ||
msvcp140_1.dll | ||
msvcp140_2.dll |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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