mirror of https://github.com/Nonannet/copapy.git
changed python to python3 in bash scripts
This commit is contained in:
parent
1a8a738640
commit
963976fe90
|
|
@ -4,7 +4,7 @@ set -v
|
|||
mkdir -p bin
|
||||
SRC=bin/stencils.c
|
||||
DEST=src/copapy/obj
|
||||
python tools/generate_stencils.py $SRC
|
||||
python3 tools/generate_stencils.py $SRC
|
||||
mkdir -p $DEST
|
||||
gcc --version
|
||||
#gcc -c $SRC -O0 -o $DEST/stencils_x86_64_O0.o
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
source tools/build.sh
|
||||
objdump -d -x src/copapy/obj/stencils_x86_64_O3.o > bin/stencils_x86_64_O3.asm
|
||||
python tools/make_example.py
|
||||
python tools/extract_code.py "bin/test.copapy" "bin/test.copapy.bin"
|
||||
python3 tools/make_example.py
|
||||
python3 tools/extract_code.py "bin/test.copapy" "bin/test.copapy.bin"
|
||||
objdump -D -b binary -m i386:x86-64 --adjust-vma=0x1000 bin/test.copapy.bin > bin/test.copapy.asm
|
||||
|
|
|
|||
Loading…
Reference in New Issue