Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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
|