view dyncall/gen-masm.sh @ 254:9d70178c1ded

- better cpp checking whether dlinfo() is available, to also cover GLIBC based systems that don't identify as Linux (e.g. debian/k*BSD)
author Tassilo Philipp
date Mon, 15 May 2017 13:06:04 +0200
parents 572aff021627
children ab2d78e48ca2
line wrap: on
line source

#!/bin/sh

# Uses portasm to generates MASM sources for intel platforms.
printf "; auto-generated by `basename $0`\r\n" > dyncall_call_x86_generic_masm.asm
printf "; auto-generated by `basename $0`\r\n" > dyncall_call_x64_generic_masm.asm
gcc -E -P -DGEN_MASM dyncall_call_x86.S | awk '{printf "%s\r\n", $0}' >> dyncall_call_x86_generic_masm.asm
gcc -E -P -DGEN_MASM dyncall_call_x64.S | awk '{printf "%s\r\n", $0}' >> dyncall_call_x64_generic_masm.asm