disable ifunc on *-musl by default
gcc/ * config.gcc (*-*-*musl*): Disable gnu-indirect-function. From-SVN: r239859
This commit is contained in:
parent
8fa372320a
commit
5aadf16cbe
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2016-08-30 Szabolcs Nagy <szabolcs.nagy@arm.com>
|
||||
|
||||
* config.gcc (*-*-*musl*): Disable gnu-indirect-function.
|
||||
|
||||
2016-08-30 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* postreload-gcse.c (bb_has_well_behaved_predecessors): Tweak criterion
|
||||
|
|
|
@ -1465,7 +1465,7 @@ i[34567]86-*-linux* | i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-gnu* | i[34567]8
|
|||
extra_options="${extra_options} linux-android.opt"
|
||||
# Assume modern glibc if not targeting Android nor uclibc.
|
||||
case ${target} in
|
||||
*-*-*android*|*-*-*uclibc*)
|
||||
*-*-*android*|*-*-*uclibc*|*-*-*musl*)
|
||||
;;
|
||||
*)
|
||||
default_gnu_indirect_function=yes
|
||||
|
@ -1531,7 +1531,7 @@ x86_64-*-linux* | x86_64-*-kfreebsd*-gnu)
|
|||
extra_options="${extra_options} linux-android.opt"
|
||||
# Assume modern glibc if not targeting Android nor uclibc.
|
||||
case ${target} in
|
||||
*-*-*android*|*-*-*uclibc*)
|
||||
*-*-*android*|*-*-*uclibc*|*-*-*musl*)
|
||||
;;
|
||||
*)
|
||||
default_gnu_indirect_function=yes
|
||||
|
|
Loading…
Add table
Reference in a new issue