Quellcode durchsuchen

Add some debugging to v8pp project

master
Ray Burgemeestre vor 5 Jahren
Ursprung
Commit
a2a0744552
2 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      benchmarklib/Makefile
  2. +5
    -0
      v8pp/Makefile

+ 1
- 1
benchmarklib/Makefile Datei anzeigen

SHELL:=/bin/bash SHELL:=/bin/bash


caf:
benchmarklib:
git clone https://bitbucket.org/rayburgemeestre/benchmarklib git clone https://bitbucket.org/rayburgemeestre/benchmarklib
pushd benchmarklib && git checkout master pushd benchmarklib && git checkout master
bash ../ubuntu1804.sh make impl bash ../ubuntu1804.sh make impl

+ 5
- 0
v8pp/Makefile Datei anzeigen

SHELL:=/bin/bash SHELL:=/bin/bash


v8pp: v8pp:
env
git clone https://github.com/rayburgemeestre/v8pp git clone https://github.com/rayburgemeestre/v8pp
bash ../ubuntu1804.sh make build bash ../ubuntu1804.sh make build
bash ../ubuntu1804.sh make archive # outside container not enough permissions bash ../ubuntu1804.sh make archive # outside container not enough permissions
archive: archive:
rm -rf v8.a 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')
echo all included object files listed below
cat v8-include.txt |xargs -n 1 -I{} find {} -name '*.o'
echo all .so files listed below
find ./ -name '*.so'


package: package:
rm -rf out rm -rf out

Laden…
Abbrechen
Speichern