mirror of
https://github.com/rgaufman/live555.git
synced 2026-01-12 00:04:30 +08:00
29 lines
1.4 KiB
Plaintext
29 lines
1.4 KiB
Plaintext
# **Note: You must install the relevant "Command line tools (OSX *.*) for Xcode - Xcode *.*"
|
|
# for this configuration file to work.
|
|
|
|
# Change the following version number, if necessary, before running "genMakefiles iphone-simulator"
|
|
IOS_VERSION = 8.3
|
|
MIN_IOS_VERSION = 7.0
|
|
|
|
DEVELOPER_PATH = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer
|
|
TOOL_PATH = $(DEVELOPER_PATH)/usr/bin
|
|
SDK_PATH = $(DEVELOPER_PATH)/SDKs
|
|
SDK = $(SDK_PATH)/iPhoneSimulator$(IOS_VERSION).sdk
|
|
COMPILE_OPTS = $(INCLUDES) -I/usr/local/include -I. $(EXTRA_LDFLAGS) -DBSD=1 -O2 -DSOCKLEN_T=socklen_t -DHAVE_SOCKADDR_LEN=1 -miphoneos-version-min=$(MIN_IOS_VERSION) -D_LARGEFILE_SOURCE=1 -D_FILE_OFFSET_BITS=64 -fPIC -arch i386 --sysroot=$(SDK) -isysroot $(SDK)
|
|
C = c
|
|
C_COMPILER = /usr/bin/xcrun clang
|
|
C_FLAGS = $(COMPILE_OPTS)
|
|
CPP = cpp
|
|
CPLUSPLUS_COMPILER = /usr/bin/xcrun clang
|
|
CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall
|
|
OBJ = o
|
|
LINK = /usr/bin/xcrun clang -o
|
|
LINK_OPTS = -L. -arch i386 -miphoneos-version-min=$(MIN_IOS_VERSION) --sysroot=$(SDK) -isysroot -L$(SDK)/usr/lib/system -I$(SDK)/usr/lib /usr/lib/libc++.dylib
|
|
CONSOLE_LINK_OPTS = $(LINK_OPTS)
|
|
LIBRARY_LINK = /usr/bin/xcrun libtool -static -o
|
|
LIBRARY_LINK_OPTS =
|
|
LIB_SUFFIX = a
|
|
LIBS_FOR_CONSOLE_APPLICATION = -lssl -lcrypto
|
|
LIBS_FOR_GUI_APPLICATION =
|
|
EXE =
|