Changeset 5513 for pjproject/branches/projects/uwp/configure-iphone
- Timestamp:
- Dec 28, 2016 3:40:07 AM (8 years ago)
- Location:
- pjproject/branches/projects/uwp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/uwp
- Property svn:mergeinfo changed
/pjproject/trunk (added) merged: 5209,5212-5234,5237-5253,5255,5257-5292,5294-5297,5299-5332,5334-5394,5396-5438,5440-5469,5471-5496,5498-5510
- Property svn:mergeinfo changed
-
pjproject/branches/projects/uwp/configure-iphone
r5150 r5513 19 19 echo " SDK." 20 20 echo " ARCH Optional flags to specify target architecture, e.g." 21 echo " ARCH='-arch armv6'. Default is armv7." 21 echo " ARCH=\"-arch armv6\". Default is armv7." 22 echo " MIN_IOS Optional flags to specify minimum supported iOS" 23 echo " versions, e.g. MIN_IOS=\"-miphoneos-version-min=10.0\". " 24 echo " Default is 7.0." 22 25 echo "" 23 26 exit 0 … … 116 119 export ARCH_VAL=`echo ${ARCH} | sed 's/\-arch //' | sed -e 's/^[ \t]*//;s/[ \t]*$//' ` 117 120 121 if test "${MIN_IOS}" = ""; then 122 MIN_IOS="7.0" 123 echo "$F: MIN_IOS is not specified, choosing ${MIN_IOS}" 124 CFLAGS="${CFLAGS} -miphoneos-version-min=${MIN_IOS}" 125 LDFLAGS="${LDFLAGS} -miphoneos-version-min=${MIN_IOS}" 126 fi 127 118 128 # Set CXX if not set 119 129 if test "${CXX}" = ""; then
Note: See TracChangeset
for help on using the changeset viewer.