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.

22 lines
408B

  1. SHELL:=/bin/bash
  2. v8pp:
  3. git clone https://github.com/rayburgemeestre/v8pp
  4. bash ../ubuntu1804.sh make build
  5. bash ../ubuntu1804.sh make archive
  6. build:
  7. apt-get update
  8. apt-get install pkg-config -y
  9. cd v8pp && ./build-v8.sh
  10. archive:
  11. rm -rf v8.a
  12. ar rvs v8.a $$(cat v8-include.txt |xargs -n 1 -I{} find {} -name '*.o')
  13. clean:
  14. rm -rf v8pp
  15. shell:
  16. FLAGS="-i --privileged" bash ../ubuntu1804.sh /bin/bash