0xDE5

Trying to solve and expand 0xde5 exercises in assembly (or C)
git clone git://git.mdnr.space/0xDE5
Log | Files | Refs | README | LICENSE

build.sh (219B)


      1 #!/bin/sh
      2 mkdir -p ./bin
      3 as --64 -g -o ./bin/elf-struct.o ./elf-struct.s
      4 as --64 -g -o ./bin/elfer-hello.o ./elfer-hello.s && 
      5 ld -m elf_x86_64 ./bin/elfer-hello.o ./bin/elf-struct.o -o ./bin/elfer-hello.elf
      6 ctags -R .