-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial support for subproject's (acr|meson)-wrap files ##build
* Use sdb.wrap from meson instead of shlr/sdb
- Loading branch information
Showing
10 changed files
with
149 additions
and
108 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
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 @@ | ||
#define SDB_VERSION "2.0.1" |
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,9 @@ | ||
DEPS=sdb capstone-v5 | ||
|
||
all: $(DEPS) | ||
|
||
clean: | ||
rm -rf $(DEPS) | ||
|
||
include sdb.mk | ||
include capstone-v5.mk |
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,9 @@ | ||
#!/bin/sh | ||
ACR_WRAP=/tmp/acr-wrap | ||
#ACR_WRAP=acr-wrap | ||
|
||
for i in *.wrap ; do | ||
o=`echo $i | sed -e 's,.wrap,.mk,'` | ||
echo "[ACR] Wrapping $i" | ||
${ACR_WRAP} $i > $o | ||
done |
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,19 @@ | ||
# This file is autogenerated by acr-wrap | ||
|
||
WRAP_wrap_git_url:=https://github.com/capstone-engine/capstone.git | ||
# revision = v5 | ||
WRAP_wrap_git_revision:=8455b3c5a53b02e524494c7e72a3946a32518170 | ||
# patch_directory = capstone-5.0.1 | ||
WRAP_wrap_git_directory:=capstone-v5 | ||
WRAP_wrap_git_depth:=1 | ||
|
||
capstone-v5_all: capstone-v5 | ||
@echo "Nothing to do" | ||
|
||
capstone-v5: | ||
git clone --no-checkout --depth=1 https://github.com/capstone-engine/capstone.git capstone-v5 | ||
cd capstone-v5 && git fetch --depth=1 origin 8455b3c5a53b02e524494c7e72a3946a32518170 | ||
cd capstone-v5 && git checkout | ||
|
||
capstone-v5_clean: | ||
rm -rf capstone-v5 |
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,7 @@ | ||
[wrap-git] | ||
url = https://github.com/capstone-engine/capstone.git | ||
# revision = v5 | ||
revision = 8455b3c5a53b02e524494c7e72a3946a32518170 | ||
# patch_directory = capstone-5.0.1 | ||
directory = capstone-v5 | ||
depth = 1 |
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,18 @@ | ||
# This file is autogenerated by acr-wrap | ||
|
||
WRAP_wrap_git_url:=https://github.com/radareorg/sdb.git | ||
WRAP_wrap_git_revision:=2e24eb0616dfce5e28130660313b56db9252dd5c | ||
# revision = 2.0.1 | ||
WRAP_wrap_git_directory:=sdb | ||
WRAP_wrap_git_depth:=1 | ||
|
||
sdb_all: sdb | ||
@echo "Nothing to do" | ||
|
||
sdb: | ||
git clone --no-checkout --depth=1 https://github.com/radareorg/sdb.git sdb | ||
cd sdb && git fetch --depth=1 origin 2e24eb0616dfce5e28130660313b56db9252dd5c | ||
cd sdb && git checkout | ||
|
||
sdb_clean: | ||
rm -rf sdb |
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,6 @@ | ||
[wrap-git] | ||
url = https://github.com/radareorg/sdb.git | ||
revision = 2e24eb0616dfce5e28130660313b56db9252dd5c | ||
# revision = 2.0.1 | ||
directory = sdb | ||
depth = 1 |