mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-16 16:58:35 +00:00
Merge pull request #73 from signalwire/osx-catalina-build
[build] fix libvpx osx build detection on newer compilers and osx versions so we use sse extensions on newer versions
This commit is contained in:
commit
0e3d8c00ba
@ -757,6 +757,18 @@ process_common_toolchain() {
|
|||||||
tgt_isa=x86_64
|
tgt_isa=x86_64
|
||||||
tgt_os=darwin16
|
tgt_os=darwin16
|
||||||
;;
|
;;
|
||||||
|
*darwin17*)
|
||||||
|
tgt_isa=x86_64
|
||||||
|
tgt_os=darwin17
|
||||||
|
;;
|
||||||
|
*darwin18*)
|
||||||
|
tgt_isa=x86_64
|
||||||
|
tgt_os=darwin18
|
||||||
|
;;
|
||||||
|
*darwin19*)
|
||||||
|
tgt_isa=x86_64
|
||||||
|
tgt_os=darwin19
|
||||||
|
;;
|
||||||
x86_64*mingw32*)
|
x86_64*mingw32*)
|
||||||
tgt_os=win64
|
tgt_os=win64
|
||||||
;;
|
;;
|
||||||
@ -885,6 +897,18 @@ process_common_toolchain() {
|
|||||||
add_cflags "-mmacosx-version-min=10.12"
|
add_cflags "-mmacosx-version-min=10.12"
|
||||||
add_ldflags "-mmacosx-version-min=10.12"
|
add_ldflags "-mmacosx-version-min=10.12"
|
||||||
;;
|
;;
|
||||||
|
*-darwin17-*)
|
||||||
|
add_cflags "-mmacosx-version-min=10.13"
|
||||||
|
add_ldflags "-mmacosx-version-min=10.13"
|
||||||
|
;;
|
||||||
|
*-darwin18-*)
|
||||||
|
add_cflags "-mmacosx-version-min=10.14"
|
||||||
|
add_ldflags "-mmacosx-version-min=10.14"
|
||||||
|
;;
|
||||||
|
*-darwin19-*)
|
||||||
|
add_cflags "-mmacosx-version-min=10.15"
|
||||||
|
add_ldflags "-mmacosx-version-min=10.15"
|
||||||
|
;;
|
||||||
*-iphonesimulator-*)
|
*-iphonesimulator-*)
|
||||||
add_cflags "-miphoneos-version-min=${IOS_VERSION_MIN}"
|
add_cflags "-miphoneos-version-min=${IOS_VERSION_MIN}"
|
||||||
add_ldflags "-miphoneos-version-min=${IOS_VERSION_MIN}"
|
add_ldflags "-miphoneos-version-min=${IOS_VERSION_MIN}"
|
||||||
|
@ -35,8 +35,8 @@ ARM_TARGETS="arm64-darwin-gcc
|
|||||||
armv7s-darwin-gcc"
|
armv7s-darwin-gcc"
|
||||||
SIM_TARGETS="x86-iphonesimulator-gcc
|
SIM_TARGETS="x86-iphonesimulator-gcc
|
||||||
x86_64-iphonesimulator-gcc"
|
x86_64-iphonesimulator-gcc"
|
||||||
OSX_TARGETS="x86-darwin16-gcc
|
OSX_TARGETS="x86-darwin18-gcc
|
||||||
x86_64-darwin16-gcc"
|
x86_64-darwin18-gcc"
|
||||||
TARGETS="${ARM_TARGETS} ${SIM_TARGETS}"
|
TARGETS="${ARM_TARGETS} ${SIM_TARGETS}"
|
||||||
|
|
||||||
# Configures for the target specified by $1, and invokes make with the dist
|
# Configures for the target specified by $1, and invokes make with the dist
|
||||||
@ -271,7 +271,7 @@ cat << EOF
|
|||||||
--help: Display this message and exit.
|
--help: Display this message and exit.
|
||||||
--enable-shared: Build a dynamic framework for use on iOS 8 or later.
|
--enable-shared: Build a dynamic framework for use on iOS 8 or later.
|
||||||
--extra-configure-args <args>: Extra args to pass when configuring libvpx.
|
--extra-configure-args <args>: Extra args to pass when configuring libvpx.
|
||||||
--macosx: Uses darwin16 targets instead of iphonesimulator targets for x86
|
--macosx: Uses darwin18 targets instead of iphonesimulator targets for x86
|
||||||
and x86_64. Allows linking to framework when builds target MacOSX
|
and x86_64. Allows linking to framework when builds target MacOSX
|
||||||
instead of iOS.
|
instead of iOS.
|
||||||
--preserve-build-output: Do not delete the build directory.
|
--preserve-build-output: Do not delete the build directory.
|
||||||
|
5
libs/libvpx/configure
vendored
5
libs/libvpx/configure
vendored
@ -129,6 +129,8 @@ all_platforms="${all_platforms} x86-darwin13-gcc"
|
|||||||
all_platforms="${all_platforms} x86-darwin14-gcc"
|
all_platforms="${all_platforms} x86-darwin14-gcc"
|
||||||
all_platforms="${all_platforms} x86-darwin15-gcc"
|
all_platforms="${all_platforms} x86-darwin15-gcc"
|
||||||
all_platforms="${all_platforms} x86-darwin16-gcc"
|
all_platforms="${all_platforms} x86-darwin16-gcc"
|
||||||
|
all_platforms="${all_platforms} x86-darwin17-gcc"
|
||||||
|
all_platforms="${all_platforms} x86-darwin18-gcc"
|
||||||
all_platforms="${all_platforms} x86-iphonesimulator-gcc"
|
all_platforms="${all_platforms} x86-iphonesimulator-gcc"
|
||||||
all_platforms="${all_platforms} x86-linux-gcc"
|
all_platforms="${all_platforms} x86-linux-gcc"
|
||||||
all_platforms="${all_platforms} x86-linux-icc"
|
all_platforms="${all_platforms} x86-linux-icc"
|
||||||
@ -149,6 +151,9 @@ all_platforms="${all_platforms} x86_64-darwin13-gcc"
|
|||||||
all_platforms="${all_platforms} x86_64-darwin14-gcc"
|
all_platforms="${all_platforms} x86_64-darwin14-gcc"
|
||||||
all_platforms="${all_platforms} x86_64-darwin15-gcc"
|
all_platforms="${all_platforms} x86_64-darwin15-gcc"
|
||||||
all_platforms="${all_platforms} x86_64-darwin16-gcc"
|
all_platforms="${all_platforms} x86_64-darwin16-gcc"
|
||||||
|
all_platforms="${all_platforms} x86_64-darwin17-gcc"
|
||||||
|
all_platforms="${all_platforms} x86_64-darwin18-gcc"
|
||||||
|
all_platforms="${all_platforms} x86_64-darwin19-gcc"
|
||||||
all_platforms="${all_platforms} x86_64-iphonesimulator-gcc"
|
all_platforms="${all_platforms} x86_64-iphonesimulator-gcc"
|
||||||
all_platforms="${all_platforms} x86_64-linux-gcc"
|
all_platforms="${all_platforms} x86_64-linux-gcc"
|
||||||
all_platforms="${all_platforms} x86_64-linux-icc"
|
all_platforms="${all_platforms} x86_64-linux-icc"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user