mirror of
https://github.com/bitdefender/bddisasm.git
synced 2024-12-23 06:28:13 +00:00
Try to build disasmtool_lix
This should clone Tencent/rapidjson, build it, install it, and then build disasmtool_lix
This commit is contained in:
parent
af8a0cc52f
commit
21d20ba584
26
.github/workflows/c-cpp.yml
vendored
26
.github/workflows/c-cpp.yml
vendored
@ -13,5 +13,29 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: build-bddisasm
|
- name: Build bddisasm and bdshemu
|
||||||
run: make -j$(nproc)
|
run: make -j$(nproc)
|
||||||
|
- name: Install rapidjson
|
||||||
|
uses: actions/checkout@master
|
||||||
|
with:
|
||||||
|
repository: Tencent/rapidjson
|
||||||
|
- name: Build dependencies
|
||||||
|
run: |
|
||||||
|
cd rapidjson
|
||||||
|
mkdir _build
|
||||||
|
cd _build
|
||||||
|
cmake ..
|
||||||
|
make -j$(nproc)
|
||||||
|
sudo make install
|
||||||
|
cd ..
|
||||||
|
cd ..
|
||||||
|
- name: Build disasmtool_lix
|
||||||
|
run: |
|
||||||
|
cd disasmtool_lix
|
||||||
|
mkdir _build
|
||||||
|
cd _build
|
||||||
|
cmake ..
|
||||||
|
make -j$(nproc)
|
||||||
|
cd ..
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user