mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
Support bitrig in autoconf build system.
Patch by Dave Huseby. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230669 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
783f7f989e
commit
298988eb79
2
autoconf/config.sub
vendored
2
autoconf/config.sub
vendored
@ -1354,7 +1354,7 @@ case $os in
|
||||
| -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
|
||||
| -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
|
||||
| -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
|
||||
| -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*)
|
||||
| -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -bitrig*)
|
||||
# Remember, each alternative MUST END IN *, to match a version number.
|
||||
;;
|
||||
-qnx*)
|
||||
|
@ -267,6 +267,11 @@ AC_CACHE_CHECK([type of operating system we're going to host on],
|
||||
llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
|
||||
llvm_cv_os_type="DragonFly"
|
||||
llvm_cv_platform_type="Unix" ;;
|
||||
*-*-bitrig*)
|
||||
llvm_cv_link_all_option="-Wl,--whole-archive"
|
||||
llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
|
||||
llvm_cv_os_type="Bitrig"
|
||||
llvm_cv_platform_type="Unix" ;;
|
||||
*-*-hpux*)
|
||||
llvm_cv_link_all_option="-Wl,--whole-archive"
|
||||
llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
|
||||
@ -347,6 +352,8 @@ AC_CACHE_CHECK([type of operating system we're going to target],
|
||||
llvm_cv_target_os_type="NetBSD" ;;
|
||||
*-*-dragonfly*)
|
||||
llvm_cv_target_os_type="DragonFly" ;;
|
||||
*-*-bitrig*)
|
||||
llvm_cv_target_os_type="Bitrig" ;;
|
||||
*-*-hpux*)
|
||||
llvm_cv_target_os_type="HP-UX" ;;
|
||||
*-*-interix*)
|
||||
|
7
configure
vendored
7
configure
vendored
@ -3966,6 +3966,11 @@ else
|
||||
llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
|
||||
llvm_cv_os_type="DragonFly"
|
||||
llvm_cv_platform_type="Unix" ;;
|
||||
*-*-bitrig*)
|
||||
llvm_cv_link_all_option="-Wl,--whole-archive"
|
||||
llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
|
||||
llvm_cv_os_type="Bitrig"
|
||||
llvm_cv_platform_type="Unix" ;;
|
||||
*-*-hpux*)
|
||||
llvm_cv_link_all_option="-Wl,--whole-archive"
|
||||
llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
|
||||
@ -4052,6 +4057,8 @@ else
|
||||
llvm_cv_target_os_type="NetBSD" ;;
|
||||
*-*-dragonfly*)
|
||||
llvm_cv_target_os_type="DragonFly" ;;
|
||||
*-*-bitrig*)
|
||||
llvm_cv_target_os_type="Bitrig" ;;
|
||||
*-*-hpux*)
|
||||
llvm_cv_target_os_type="HP-UX" ;;
|
||||
*-*-interix*)
|
||||
|
Loading…
Reference in New Issue
Block a user