Browse Source

Merge commit '5691c746cf62e69806aae1baf0a6e8252d519444'

* commit '5691c746cf62e69806aae1baf0a6e8252d519444':
  configure: Group toolchain parameter mangling functions together

Merged-by: James Almer <jamrial@gmail.com>
tags/n4.1
James Almer 6 years ago
parent
commit
9a88a47be4
1 changed files with 22 additions and 22 deletions
  1. +22
    -22
      configure

+ 22
- 22
configure View File

@@ -955,12 +955,32 @@ test_stat(){
stat "$1" >> $logfile 2>&1
}

cc_e(){
eval printf '%s\\n' $CC_E
}

cc_o(){
eval printf '%s\\n' $CC_O
}

cc_e(){
eval printf '%s\\n' $CC_E
as_o(){
eval printf '%s\\n' $AS_O
}

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

ld_o(){
eval printf '%s\\n' $LD_O
}

hostcc_e(){
eval printf '%s\\n' $HOSTCC_E
}

hostcc_o(){
eval printf '%s\\n' $HOSTCC_O
}

test_cc(){
@@ -991,10 +1011,6 @@ test_cpp(){
test_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
}

as_o(){
eval printf '%s\\n' $AS_O
}

test_as(){
log test_as "$@"
cat > $TMPS
@@ -1002,10 +1018,6 @@ test_as(){
test_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPS
}

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

test_x86asm(){
log test_x86asm "$@"
echo "$1" > $TMPASM
@@ -1077,10 +1089,6 @@ check_x86asm(){
test_x86asm "$@" && enable $name
}

ld_o(){
eval printf '%s\\n' $LD_O
}

test_ld(){
log test_ld "$@"
type=$1
@@ -1513,14 +1521,6 @@ require_pkg_config(){
check_pkg_config "$@" || die "ERROR: $pkg_version not found using pkg-config$pkg_config_fail_message"
}

hostcc_e(){
eval printf '%s\\n' $HOSTCC_E
}

hostcc_o(){
eval printf '%s\\n' $HOSTCC_O
}

test_host_cc(){
log test_host_cc "$@"
cat > $TMPC


Loading…
Cancel
Save