Bridges the worlds of .NET with the native APIs of macOS, iOS, tvOS, and watchOS.
Перейти к файлу
Rolf Bjarne Kvinge 5c9c058dde Add Xamarin.iOS solution file. (#11) 2016-04-27 15:36:08 -04:00
builds [builds] Add a DISABLE_BUILDS_MAKEFILE_DEP Make.config.local variable which can be used to disable the rebuilding of mono trees under builds/ when builds/Makefile changes. 2016-04-25 18:15:01 -04:00
external Bump mono to bring in fixes for #40624 2016-04-26 10:20:27 -04:00
fsharp Build F#. 2016-04-24 14:47:24 -04:00
mk Bump maccore to get updated mlaunch. (#8) 2016-04-27 14:27:31 -04:00
mono/4.5 Add our mono runtimes to the build. 2016-04-24 14:47:24 -04:00
msbuild [msbuild] Added LinkDescription support for iOS 2016-04-26 16:15:18 -04:00
opentk Build the platform assemblies. 2016-04-24 14:47:26 -04:00
runtime [runtime] Disable the GC pump for watchOS for now. 2016-04-26 12:48:11 -04:00
src [mmp/mtouch] Don't mkbundle anymore. 2016-04-25 18:14:56 -04:00
tests [tests] Add bindings-framework-test. 2016-04-26 17:48:55 -04:00
tools Add Xamarin.iOS solution file. (#11) 2016-04-27 15:36:08 -04:00
.gitignore Store configure configuration in configure.inc. 2016-04-26 12:39:21 -04:00
.gitmodules Build MSBuild targets & assemblies. 2016-04-24 14:48:44 -04:00
LICENSE Adjust license to match requested format 2016-04-25 16:38:57 -04:00
Make.config Store configure configuration in configure.inc. 2016-04-26 12:39:21 -04:00
Makefile Add an optional dependency on xamarin-specific build logic. 2016-04-24 14:48:45 -04:00
README.md [README] Add a Contributing section. (#5) 2016-04-27 11:35:53 -04:00
Xamarin.iOS.sln Add Xamarin.iOS solution file. (#11) 2016-04-27 15:36:08 -04:00
configure Store configure configuration in configure.inc. 2016-04-26 12:39:21 -04:00
product.snk Add our mono runtimes to the build. 2016-04-24 14:47:24 -04:00
system-dependencies.sh Add a script / makefile target to verify the system and any required dependencies. 2016-04-24 14:47:24 -04:00

README.md

Xamarin.iOS & Xamarin.Mac

This module is the main repository for both Xamarin.iOS and Xamarin.Mac.

Build requirements

  • Autoconf, automake and libtool.

    You can use brew, or this script to get it directly from gnu.org (you'll have to edit your PATH to include /opt/bin if you use the script)

    To install brew and all the tool dependencies:

    $ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    $ brew update
    $ brew install libtool autoconf automake bison flex
    
  • Xcode

    To build the Xamarin.iOS and Xamarin.Mac SDKs you need a certain version of Xcode. The build will tell you exactly which version you need.

    You can download the Xcode version you need from Apple's Developer Center (requires an Apple Developer account).

    To ease development with different versions of the SDK that require different versions of Xcode, we require Xcode to be in a non-standard location (based on the Xcode version).

    For example Xcode 7.0 must be installed in /Applications/Xcode7.app.

    The recommended procedure is to download the corresponding Xcode dmg from Apple's Developer Center, extract Xcode.app to your system, and rename it before launching it the first time. Renaming Xcode.app after having launched it once may confuse Xcode, and strange errors start occuring.

  • Mono MDK.

    The build will tell you if you need to update, and where to get it.

  • Xamarin Studio.

    The build will tell you if you need to update, and where to get it.

  • You can also provision some of the dependencies with an included script:

      $ ./system-dependencies.sh --provision-[xs|mono]
    

## Quick build & install ##

Follow the following steps to build and install Xamarin.iOS and Xamarin.Mac:

  1. Clone this repository and its submodules

     $ git clone --recursive git@github.com:xamarin/xamarin-macios.git
     $ cd xamarin-macios
    
  2. Fetch dependencies and build everything

     $ make world
    
  3. Make sure permissions are OK to install into system directories (this will ask for your password)

     $ make fix-install-permissions
    
  4. Install into the system

     $ make install-system
    

Configure

There is a configure script that can optionally be used to configure the build. By default, everything required for both Xamarin.iOS and Xamarin.Mac will be built.

  • --disable-mac: Disable Mac-related parts.

  • --disable-ios: Disable iOS-related parts.

    In both cases the resulting build will contain both iOS and Mac bits because:

    • Parts of the iOS build depends on Mac parts (in particular mtouch uses Xamarin.Mac).

    • The class libraries builds can not be disabled because a very common error is to end up with code that only works/builds in either iOS or Mac.

  • --enable-ccache: Enables cached builds with ccache (default if ccache is found in the path).

  • --disable-ccache: Disables cached builds with ccache, even if it is present.

  • --disable-strip: If executables should be stripped or not. This makes it easier to debug native executables using lldb.

  • --help: Show the help.

Contributing