Commit 91bcf0b8 authored by James Almer's avatar James Almer

Merge commit '17ee5b0c'

* commit '17ee5b0c':
  configure: Use indirection for the -o assembler flag also for x86asm
Merged-by: 's avatarJames Almer <jamrial@gmail.com>
parents 3bbec8e7 17ee5b0c
......@@ -1027,12 +1027,16 @@ check_insn(){
check_as ${1}_external "$2"
}
x86asm_o(){
eval printf '%s\\n' $X86ASM_O
}
test_x86asm(){
log test_x86asm "$@"
echo "$1" > $TMPASM
log_file $TMPASM
shift 1
test_cmd $x86asmexe $X86ASMFLAGS -Werror "$@" -o $TMPO $TMPASM
test_cmd $x86asmexe $X86ASMFLAGS -Werror "$@" $(x86asm_o $TMPO) $TMPASM
}
ld_o(){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment