mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
configure: set nasm format correctly on Darwin
This commit is contained in:
parent
6a1600b354
commit
2ee94bc161
|
|
@ -137,7 +137,13 @@ if test x"$ASM" = x"yes"; then
|
|||
i?86-*)
|
||||
ASM_OPT="$ASM_OPT -g -f elf" ;;
|
||||
x86_64-*)
|
||||
case "${host_os}" in
|
||||
darwin*)
|
||||
ASM_OPT="$ASM_OPT -Dx64 -g -f macho64" ;;
|
||||
*)
|
||||
ASM_OPT="$ASM_OPT -Dx64 -g -f elf64" ;;
|
||||
esac
|
||||
;;
|
||||
*) ASM_OPT= ;;
|
||||
esac
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in a new issue