您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

22 行
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