MacOSX-Framework 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. #!/usr/bin/env bash
  2. #***************************************************************************
  3. # _ _ ____ _
  4. # Project ___| | | | _ \| |
  5. # / __| | | | |_) | |
  6. # | (__| |_| | _ <| |___
  7. # \___|\___/|_| \_\_____|
  8. #
  9. # Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  10. #
  11. # This software is licensed as described in the file COPYING, which
  12. # you should have received as part of this distribution. The terms
  13. # are also available at https://curl.se/docs/copyright.html.
  14. #
  15. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  16. # copies of the Software, and permit persons to whom the Software is
  17. # furnished to do so, under the terms of the COPYING file.
  18. #
  19. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  20. # KIND, either express or implied.
  21. #
  22. # SPDX-License-Identifier: curl
  23. #
  24. ###########################################################################
  25. # This script performs all of the steps needed to build a
  26. # universal binary libcurl.framework for Mac OS X 10.4 or greater.
  27. #
  28. # Hendrik Visage:
  29. # Generalizations added since Snowleopard (10.6) do not include
  30. # the 10.4u SDK.
  31. #
  32. # Also note:
  33. # 10.5 is the *ONLY* SDK that support PPC64 :( -- 10.6 do not have ppc64 support
  34. #If you need to have PPC64 support then change below to 1
  35. PPC64_NEEDED=0
  36. # Apple does not support building for PPC anymore in Xcode 4 and later.
  37. # If you're using Xcode 3 or earlier and need PPC support, then change
  38. # the setting below to 1
  39. PPC_NEEDED=0
  40. # For me the default is to develop for the platform I am on, and if you
  41. #desire compatibility with older versions then change USE_OLD to 1 :)
  42. USE_OLD=0
  43. VERSION=`/usr/bin/sed -ne 's/^#define LIBCURL_VERSION "\(.*\)"/\1/p' include/curl/curlver.h`
  44. FRAMEWORK_VERSION=Versions/Release-$VERSION
  45. #I also wanted to "copy over" the system, and thus the reason I added the
  46. # version to Versions/Release-7.20.1 etc.
  47. # now a simple rsync -vaP libcurl.framework /Library/Frameworks will install it
  48. # and setup the right paths to this version, leaving the system version
  49. # "intact", so you can "fix" it later with the links to Versions/A/...
  50. DEVELOPER_PATH=`xcode-select --print-path`
  51. # Around Xcode 4.3, SDKs were moved from the Developer folder into the
  52. # MacOSX.platform folder
  53. if test -d "$DEVELOPER_PATH/Platforms/MacOSX.platform/Developer/SDKs"; then
  54. SDK_PATH="$DEVELOPER_PATH/Platforms/MacOSX.platform/Developer/SDKs"
  55. else
  56. SDK_PATH="$DEVELOPER_PATH/SDKs"
  57. fi
  58. OLD_SDK=`ls $SDK_PATH|head -1`
  59. NEW_SDK=`ls -r $SDK_PATH|head -1`
  60. if test "0"$USE_OLD -gt 0
  61. then
  62. SDK32=$OLD_SDK
  63. else
  64. SDK32=$NEW_SDK
  65. fi
  66. MACVER=`echo $SDK32|sed -e s/[a-zA-Z]//g -e s/.\$//`
  67. SDK32_DIR=$SDK_PATH/$SDK32
  68. MINVER32='-mmacosx-version-min='$MACVER
  69. if test $PPC_NEEDED -gt 0; then
  70. ARCHES32='-arch i386 -arch ppc'
  71. else
  72. ARCHES32='-arch i386'
  73. fi
  74. if test $PPC64_NEEDED -gt 0
  75. then
  76. SDK64=10.5
  77. ARCHES64='-arch x86_64 -arch ppc64'
  78. SDK64=`ls $SDK_PATH | grep "10\.5" | head -1`
  79. else
  80. ARCHES64='-arch x86_64'
  81. #We "know" that 10.4 and earlier do not support 64bit
  82. OLD_SDK64=`ls $SDK_PATH | grep -v "10\.[0-4]" | head -1`
  83. NEW_SDK64=`ls -r $SDK_PATH | grep -v "10\.[0-4][^0-9]" | head -1`
  84. if test $USE_OLD -gt 0
  85. then
  86. SDK64=$OLD_SDK64
  87. else
  88. SDK64=$NEW_SDK64
  89. fi
  90. fi
  91. SDK64_DIR=$SDK_PATH/$SDK64
  92. MACVER64=`echo $SDK64|sed -e s/[a-zA-Z]//g -e s/.\$//`
  93. MINVER64='-mmacosx-version-min='$MACVER64
  94. if test ! -z $SDK32; then
  95. echo "----Configuring libcurl for 32 bit universal framework..."
  96. make clean
  97. ./configure --disable-dependency-tracking --disable-static --with-gssapi --with-secure-transport \
  98. CFLAGS="-Os -isysroot $SDK32_DIR $ARCHES32" \
  99. LDFLAGS="-Wl,-syslibroot,$SDK32_DIR $ARCHES32 -Wl,-headerpad_max_install_names" \
  100. CC=$CC
  101. echo "----Building 32 bit libcurl..."
  102. make -j `sysctl -n hw.logicalcpu_max`
  103. echo "----Creating 32 bit framework..."
  104. rm -r libcurl.framework
  105. mkdir -p libcurl.framework/${FRAMEWORK_VERSION}/Resources
  106. cp lib/.libs/libcurl.dylib libcurl.framework/${FRAMEWORK_VERSION}/libcurl
  107. install_name_tool -id @rpath/libcurl.framework/${FRAMEWORK_VERSION}/libcurl libcurl.framework/${FRAMEWORK_VERSION}/libcurl
  108. cp lib/libcurl.plist libcurl.framework/${FRAMEWORK_VERSION}/Resources/Info.plist
  109. mkdir -p libcurl.framework/${FRAMEWORK_VERSION}/Headers/curl
  110. cp include/curl/*.h libcurl.framework/${FRAMEWORK_VERSION}/Headers/curl
  111. pushd libcurl.framework
  112. ln -fs ${FRAMEWORK_VERSION}/libcurl libcurl
  113. ln -fs ${FRAMEWORK_VERSION}/Resources Resources
  114. ln -fs ${FRAMEWORK_VERSION}/Headers Headers
  115. cd Versions
  116. ln -fs $(basename "${FRAMEWORK_VERSION}") Current
  117. echo Testing for SDK64
  118. if test -d $SDK64_DIR; then
  119. echo entering...
  120. popd
  121. make clean
  122. echo "----Configuring libcurl for 64 bit universal framework..."
  123. ./configure --disable-dependency-tracking --disable-static --with-gssapi --with-secure-transport \
  124. CFLAGS="-Os -isysroot $SDK64_DIR $ARCHES64" \
  125. LDFLAGS="-Wl,-syslibroot,$SDK64_DIR $ARCHES64 -Wl,-headerpad_max_install_names" \
  126. CC=$CC
  127. echo "----Building 64 bit libcurl..."
  128. make -j `sysctl -n hw.logicalcpu_max`
  129. echo "----Appending 64 bit framework to 32 bit framework..."
  130. cp lib/.libs/libcurl.dylib libcurl.framework/${FRAMEWORK_VERSION}/libcurl64
  131. install_name_tool -id @rpath/libcurl.framework/${FRAMEWORK_VERSION}/libcurl libcurl.framework/${FRAMEWORK_VERSION}/libcurl64
  132. cp libcurl.framework/${FRAMEWORK_VERSION}/libcurl libcurl.framework/${FRAMEWORK_VERSION}/libcurl32
  133. pwd
  134. lipo libcurl.framework/${FRAMEWORK_VERSION}/libcurl32 libcurl.framework/${FRAMEWORK_VERSION}/libcurl64 -create -output libcurl.framework/${FRAMEWORK_VERSION}/libcurl
  135. rm libcurl.framework/${FRAMEWORK_VERSION}/libcurl32 libcurl.framework/${FRAMEWORK_VERSION}/libcurl64
  136. fi
  137. pwd
  138. lipo -info libcurl.framework/${FRAMEWORK_VERSION}/libcurl
  139. echo "libcurl.framework is built and can now be included in other projects."
  140. echo "Copy libcurl.framework to your bundle's Contents/Frameworks folder, ~/Library/Frameworks or /Library/Frameworks."
  141. else
  142. echo "Building libcurl.framework requires Mac OS X 10.4 or later with the MacOSX10.4/5/6 SDK installed."
  143. fi