Esempio n. 1
0
def cxx_ios50_apple_llvm50_armv7(conf):
    """
    Detect and setup the Apple LLVM 5.0 compiler for iOS 5.0 armv7
    """
    conf.mkspec_clang_ios_configure(5, 0, '5.0', 'armv7')
    conf.env['DEST_CPU'] = 'arm'
Esempio n. 2
0
def cxx_ios50_clang32_armv7(conf):
    """
    Detect and setup the clang 3.2 compiler for iOS 5.0 armv7
    """
    conf.mkspec_clang_ios_configure(3, 2, '5.0', 'armv7')
    conf.env['DEST_CPU'] = 'arm'
def cxx_ios50_apple_llvm50_armv7(conf):
    """
    Detect and setup the Apple LLVM 5.0 compiler for iOS 5.0 armv7
    """
    conf.mkspec_clang_ios_configure(5, 0, '5.0', 'armv7')
    conf.env['DEST_CPU'] = 'arm'
def cxx_ios50_clang32_armv7(conf):
    """
    Detect and setup the clang 3.2 compiler for iOS 5.0 armv7
    """
    conf.mkspec_clang_ios_configure(3, 2, '5.0', 'armv7')
    conf.env['DEST_CPU'] = 'arm'
Esempio n. 5
0
def cxx_ios70_apple_llvm_arm64(conf):
    """
    Detect and setup the Apple LLVM compiler for iOS 7.0 arm64
    """
    conf.mkspec_clang_ios_configure(6, 1, '7.0', 'arm64', minimum=True)
    conf.env['DEST_CPU'] = 'arm'
Esempio n. 6
0
def cxx_ios70_apple_llvm_x86_64(conf):
    """
    Detect and setup the Apple LLVM compiler for iOS 7.0 x86_64 (simulator)
    """
    conf.mkspec_clang_ios_configure(6, 1, '7.0', 'x86_64', minimum=True)
Esempio n. 7
0
def cxx_ios50_apple_llvm_armv7(conf):
    """
    Detect and setup the default Apple LLVM compiler for iOS 5.0 armv7
    """
    conf.mkspec_clang_ios_configure(6, 1, '5.0', 'armv7', minimum=True)
    conf.env['DEST_CPU'] = 'arm'
Esempio n. 8
0
def cxx_ios70_apple_llvm_x86_64(conf):
    """
    Detect and setup the Apple LLVM compiler for iOS 7.0 x86_64 (simulator)
    """
    conf.mkspec_clang_ios_configure(6, 1, "7.0", "x86_64", minimum=True)
Esempio n. 9
0
def cxx_ios70_apple_llvm_arm64(conf):
    """
    Detect and setup the Apple LLVM compiler for iOS 7.0 arm64
    """
    conf.mkspec_clang_ios_configure(6, 1, "7.0", "arm64", minimum=True)
    conf.env["DEST_CPU"] = "arm64"
Esempio n. 10
0
def cxx_ios70_apple_llvm_i386(conf):
    """
    Detect and setup the Apple LLVM compiler for iOS 7.0 i386 (simulator)
    """
    conf.mkspec_clang_ios_configure(6, 1, '7.0', 'i386', minimum=True)
Esempio n. 11
0
def cxx_ios70_apple_llvm_arm64(conf):
    """
    Detect and setup the Apple LLVM compiler for iOS 7.0 arm64
    """
    conf.mkspec_clang_ios_configure(6, 1, '7.0', 'arm64', minimum=True)
    conf.env['DEST_CPU'] = 'arm64'