@@ -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 |
@@ -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 |