2025-10-08 20:59:51 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
source tools/build.sh
|
2025-10-14 21:22:45 +00:00
|
|
|
|
2025-11-12 23:29:48 +00:00
|
|
|
objdump -d -j .text src/copapy/obj/stencils_x86_64_O3.o > build/stencils/stencils_x86_64_O3.asm
|
2025-10-14 21:22:45 +00:00
|
|
|
|
2025-10-14 21:06:34 +00:00
|
|
|
python3 tools/make_example.py
|
2025-11-12 23:29:48 +00:00
|
|
|
python3 tools/extract_code.py "build/runner/test.copapy" "build/runner/test.copapy.bin"
|
|
|
|
|
objdump -D -b binary -m i386:x86-64 --adjust-vma=0x1000 build/runner/test.copapy.bin > build/runner/test.copapy.asm
|