Explorar el Código

Add some debugging to v8pp project

master
Ray Burgemeestre hace 5 años
padre
commit
a2a0744552
Se han modificado 2 ficheros con 6 adiciones y 1 borrados
  1. +1
    -1
      benchmarklib/Makefile
  2. +5
    -0
      v8pp/Makefile

+ 1
- 1
benchmarklib/Makefile Ver fichero

@@ -1,6 +1,6 @@
SHELL:=/bin/bash

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

+ 5
- 0
v8pp/Makefile Ver fichero

@@ -1,6 +1,7 @@
SHELL:=/bin/bash

v8pp:
env
git clone https://github.com/rayburgemeestre/v8pp
bash ../ubuntu1804.sh make build
bash ../ubuntu1804.sh make archive # outside container not enough permissions
@@ -19,6 +20,10 @@ build:
archive:
rm -rf v8.a
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:
rm -rf out

Cargando…
Cancelar
Guardar