Changes between Version 34 and Version 35 of BuildMacApp
- Timestamp:
- Jul 31, 2008, 3:28:03 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildMacApp
v34 v35 50 50 * All 64-bit BOINC software for Intel Macs must be built using GCC 4.0 and MacOS10.5 SDK. 51 51 52 The example_app found in boinc _samples has examples of 3 different ways to build the application for all 3 platforms using cross-development:52 The example_app found in boinc/samples has examples of 3 different ways to build the application for all 3 platforms using cross-development: 53 53 * Create an XCode project 54 54 * Use a generic Makefile with a custom shell script … … 128 128 == Build Any Other Needed Libraries == 129 129 130 If you are building a third-party library (such as JPEG), you will need to take the steps listed above in the section Cross-Platform Development. See the files `boinc _samples/example_app/Makefile_mac2` and `boinc_samples/example_app/MakeMacExample.sh` for examples of how to accomplish this.130 If you are building a third-party library (such as JPEG), you will need to take the steps listed above in the section Cross-Platform Development. See the files `boinc/samples/example_app/Makefile_mac2` and `boinc/samples/example_app/MakeMacExample.sh` for examples of how to accomplish this. 131 131 132 132 == Build Your Application Using Cross-Development == … … 134 134 We will use the example_app to illustrate the 3 methods of cross-compiling. 135 135 136 Download this sample project from Subversion, and put it in the same BOINC_dev folder. To do this, type the following in Terminal:137 138 {{{139 cd {path}/BOINC_dev/140 mkdir boinc_samples141 cd boinc_samples/142 svn co http://boinc.berkeley.edu/svn/trunk/boinc_samples143 }}}144 145 136 === Using an XCode Project === 146 137 147 Double-click on the project file `boinc _samples/mac_build/UpperCase2.xcodeproj`. At the top of the main window, select '''Build_All''' for the ''Active Target'', and '''ppc_Deployment''' for the ''Active Build Configuration''. Then click on the Build icon (or select Build from the Build menu.) Repeat for ''Active Build Configurations'' '''i386_Deployment''' and '''x86_64_Deployment'''.138 Double-click on the project file `boinc/samples/mac_build/UpperCase2.xcodeproj`. At the top of the main window, select '''Build_All''' for the ''Active Target'', and '''ppc_Deployment''' for the ''Active Build Configuration''. Then click on the Build icon (or select Build from the Build menu.) Repeat for ''Active Build Configurations'' '''i386_Deployment''' and '''x86_64_Deployment'''. 148 139 149 140 Use the example XCode project as a guide or a starting point to create an XCode project for your own application. Pay special attention to the XCode build settings. For more information on using XCode, see [http://developer.apple.com/documentation/DeveloperTools/Conceptual/XcodeUserGuide/Contents/Resources/en.lproj/00_00_intro/chapter_1_section_1.html XCode User Guide] and [http://developer.apple.com/documentation/DeveloperTools/Conceptual/XcodeUserGuide/Contents/Resources/en.lproj/05_04_bs_build_settings/chapter_33_section_1.html XCode Build Settings]. … … 154 145 155 146 {{{ 156 cd {path}/BOINC_dev/boinc _samples/example_app/Mac/147 cd {path}/BOINC_dev/boinc/samples/example_app/Mac/ 157 148 sh MakeMacExample.sh -clean 158 149 }}} … … 198 189 199 190 {{{ 200 cd {path}/BOINC_dev/boinc _samples/example_app/191 cd {path}/BOINC_dev/boinc/samples/example_app/ 201 192 make -f Makefile_mac2 clean all 202 193 }}}