Browse Source

Merge commit '17ee5b0c13bc17465b71bc9ca1cde9f0eed8b3ff'

* commit '17ee5b0c13bc17465b71bc9ca1cde9f0eed8b3ff':
  configure: Use indirection for the -o assembler flag also for x86asm

Merged-by: James Almer <jamrial@gmail.com>
tags/n4.0
James Almer 8 years ago
parent
commit
91bcf0b8cd
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      configure

+ 5
- 1
configure View File

@@ -1027,12 +1027,16 @@ check_insn(){
check_as ${1}_external "$2" check_as ${1}_external "$2"
} }


x86asm_o(){
eval printf '%s\\n' $X86ASM_O
}

test_x86asm(){ test_x86asm(){
log test_x86asm "$@" log test_x86asm "$@"
echo "$1" > $TMPASM echo "$1" > $TMPASM
log_file $TMPASM log_file $TMPASM
shift 1 shift 1
test_cmd $x86asmexe $X86ASMFLAGS -Werror "$@" -o $TMPO $TMPASM
test_cmd $x86asmexe $X86ASMFLAGS -Werror "$@" $(x86asm_o $TMPO) $TMPASM
} }


ld_o(){ ld_o(){


Loading…
Cancel
Save