mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This changes the Swift resource directory from looking like
lib/
swift/
macosx/
libswiftCore.dylib
libswiftDarwin.dylib
x86_64/
Swift.swiftmodule
Swift.swiftdoc
Darwin.swiftmodule
Darwin.swiftdoc
to
lib/
swift/
macosx/
libswiftCore.dylib
libswiftDarwin.dylib
Swift.swiftmodule/
x86_64.swiftmodule
x86_64.swiftdoc
Darwin.swiftmodule/
x86_64.swiftmodule
x86_64.swiftdoc
matching the layout we use for multi-architecture swiftmodules
everywhere else (particularly frameworks).
There's no change in this commit to how Linux swiftmodules are
packaged. There's been past interest in going the /opposite/ direction
for Linux, since there's not standard support for fat
(multi-architecture) .so libraries. Moving the .so search path /down/
to an architecture-specific directory on Linux would allow the same
resource directory to be used for both host-compiling and
cross-compiling.
rdar://problem/43545560
36 lines
1.6 KiB
Swift
36 lines
1.6 KiB
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend -emit-module-path %t/basic.swiftmodule %S/basic.swift
|
|
|
|
// RUN: %target-swift-frontend -emit-ir -module-name Foo %s -I %t -g -o - | %FileCheck %s
|
|
// RUN: %target-swift-frontend -c -module-name Foo %s -I %t -g -o %t.o
|
|
// RUN: %llvm-dwarfdump -a %t.o | %FileCheck --check-prefix=DWARF %s
|
|
|
|
// CHECK-DAG: ![[FOOMODULE:[0-9]+]] = !DIModule({{.*}}, name: "Foo", includePath: "{{.*}}test{{.*}}DebugInfo{{.*}}"
|
|
// CHECK-DAG: !DIImportedEntity(tag: DW_TAG_imported_module, scope: ![[THISFILE:[0-9]+]], entity: ![[FOOMODULE]]
|
|
// CHECK-DAG: ![[THISFILE]] = !DIFile(filename: "{{.*}}test{{/|\\5C}}DebugInfo{{/|\\5C}}Imports.swift",
|
|
// CHECK-DAG: ![[SWIFTFILE:[0-9]+]] = !DIFile(filename: "{{.*}}Swift.swiftmodule{{(/.+[.]swiftmodule)?}}"
|
|
// CHECK-DAG: ![[SWIFTMODULE:[0-9]+]] = !DIModule({{.*}}, name: "Swift"
|
|
// CHECK-DAG: !DIImportedEntity(tag: DW_TAG_imported_module, scope: ![[THISFILE]], entity: ![[SWIFTMODULE]]
|
|
// CHECK-DAG: ![[BASICMODULE:[0-9]+]] = !DIModule({{.*}}, name: "basic"
|
|
// CHECK-DAG: !DIImportedEntity(tag: DW_TAG_imported_module, scope: ![[THISFILE]], entity: ![[BASICMODULE]]
|
|
import basic
|
|
import typealias Swift.Optional
|
|
|
|
func markUsed<T>(_ t: T) {}
|
|
markUsed(basic.foo(1, 2))
|
|
|
|
// DWARF: .debug_info
|
|
// DWARF: DW_TAG_module
|
|
// DWARF: DW_AT_name ("Foo")
|
|
// DWARF: DW_AT_LLVM_include_path
|
|
// DWARF: DW_TAG_module
|
|
// DWARF: DW_AT_name ("Swift")
|
|
// DWARF: DW_AT_LLVM_include_path
|
|
// DWARF: DW_TAG_module
|
|
// DWARF: DW_AT_name ("basic")
|
|
|
|
// DWARF-NOT: "Swift.Optional"
|
|
|
|
// DWARF-DAG: file_names{{.*}}
|
|
// DWARF-NEXT: "Imports.swift"
|