forked from cmu-sei/kaiju
-
Notifications
You must be signed in to change notification settings - Fork 23
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 #91 from CERTCC/z3mac
Improve Z3 support on ARM Macs
- Loading branch information
Showing
4 changed files
with
68 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,8 @@ jobs: | |
- name: Unzip Ghidra ${{ matrix.ghidra_version }} | ||
run: 7z x 3rdparty/ghidra_${{ matrix.ghidra_version }}_*.zip -o3rdparty/ | ||
|
||
# ejs: Ummm, macro anyone? | ||
|
||
- name: Download Z3 for Linux x64 (glibc) | ||
uses: robinraju/[email protected] | ||
with: | ||
|
@@ -74,7 +76,20 @@ jobs: | |
cp z3-4.12.1-x64-osx-10.16/bin/*.dylib ${{ github.workspace }}/os/mac_x86_64/ | ||
rm z3-4.12.1-x64-osx-10.16.zip | ||
rm -r z3-4.12.1-x64-osx-10.16/ | ||
- name: Download Z3 for MacOS arm64 | ||
uses: robinraju/[email protected] | ||
with: | ||
repository: "Z3Prover/z3" | ||
tag: "z3-4.12.1" | ||
fileName: "z3-4.12.1-arm64-osx-11.0.zip" | ||
- name: Unzip Z3 for MacOS arm64 | ||
run: | | ||
7z x z3-4.12.1-arm64-osx-11.0.zip | ||
cp z3-4.12.1-arm64-osx-11.0/bin/*.dylib ${{ github.workspace }}/os/mac_arm_64/ | ||
rm z3-4.12.1-arm64-osx-11.0.zip | ||
rm -r z3-4.12.1-arm64-osx-11.0/ | ||
- name: Set up Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
The "os/mac_arm_64" directory is intended to hold macOS (OS X) native binaries | ||
which this module is dependent upon. This directory may be eliminated for a specific | ||
module if native binaries are not provided for the corresponding platform. |