You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- SHELL:=/bin/bash
-
- v8pp:
- git clone https://github.com/rayburgemeestre/v8pp
- bash ../ubuntu1804.sh make build
- bash ../ubuntu1804.sh make archive
-
- build:
- apt-get update
- apt-get install pkg-config -y
- cd v8pp && ./build-v8.sh
-
- archive:
- rm -rf v8.a
- ar rvs v8.a $$(cat v8-include.txt |xargs -n 1 -I{} find {} -name '*.o')
-
- clean:
- rm -rf v8pp
-
- shell:
- FLAGS="-i --privileged" bash ../ubuntu1804.sh /bin/bash
|