Files
swift-mirror/test/IRGen/linker_options_objc.swift
2016-09-02 21:36:45 -07:00

16 lines
515 B
Swift

// RUN: rm -rf %t
// RUN: mkdir -p %t
// RUN: %target-swiftc_driver -emit-module -o %t -module-name Empty -module-link-name swiftEmpty %S/../Inputs/empty.swift
// RUN: %target-swiftc_driver %s -I %t -emit-ir | %FileCheck %s
// REQUIRES: objc_interop
import Empty
// Check that libobjc is always autolinked together with libswiftCore on
// platforms that support Objective-C.
// CHECK: !{{.*}} = !{i32 6, !"Linker Options", !{{.*}}}
// CHECK-DAG: !{{.*}} = !{!"-lswiftCore"}
// CHECK-DAG: !{{.*}} = !{!"-lobjc"}