Bladeren bron

Fix v8 build and archive v8.a properly.

master
Ray Burgemeestre 5 jaren geleden
bovenliggende
commit
c2943da0ea
2 gewijzigde bestanden met toevoegingen van 3 en 1 verwijderingen
  1. +2
    -1
      v8pp/Makefile
  2. +1
    -0
      v8pp/build-v8.sh

+ 2
- 1
v8pp/Makefile Bestand weergeven

@@ -26,7 +26,8 @@ build:

archive:
rm -rf v8.a
ar rvs v8.a $$(cat v8-include.txt |xargs -n 1 -I{} find {} -name '*.o')
#ar rvs v8.a $$(cat v8-include.txt |xargs -n 1 -I{} find {} -name '*.o')
ar rvs v8.a $$(find ./v8/out/x64.release/ -type f -name '*.o')
echo all included object files listed below
cat v8-include.txt |xargs -n 1 -I{} find {} -name '*.o'
echo all .so files listed below

+ 1
- 0
v8pp/build-v8.sh Bestand weergeven

@@ -3,6 +3,7 @@
export PATH=`pwd`/depot_tools:"$PATH"

# https://github.com/prahladyeri/tuxdrive/issues/3
apt-get install python3-pip -y
pip3 install httplib2 --upgrade



Laden…
Annuleren
Opslaan