Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions Runtimes/Core/core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ gyb_expand(UnsafeBufferPointer.swift.gyb UnsafeBufferPointer.swift
gyb_expand(UnsafeRawBufferPointer.swift.gyb UnsafeRawBufferPointer.swift
FLAGS "-DCMAKE_SIZEOF_VOID_P=${SwiftCore_SIZEOF_POINTER}")

gyb_expand(Tuple.swift.gyb Tuple.swift
FLAGS "-DCMAKE_SIZEOF_VOID_P=${SwiftCore_SIZEOF_POINTER}")

# These sources are not strictly sorted alphabetically because the compiler
# crashes if they are.
add_library(swiftCore
Expand Down Expand Up @@ -194,6 +191,7 @@ add_library(swiftCore
SwiftNativeNSArray.swift
TemporaryAllocation.swift
ThreadLocalStorage.swift
Tuple.swift
UIntBuffer.swift
UnavailableStringAPIs.swift
UnicodeData.swift
Expand Down
2 changes: 1 addition & 1 deletion stdlib/public/core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ split_embedded_sources(
NORMAL CommandLine.swift
EMBEDDED SliceBuffer.swift
EMBEDDED StaticBigInt.swift
EMBEDDED Tuple.swift
EMBEDDED UInt128.swift
EMBEDDED UnfoldSequence.swift
EMBEDDED UnsafeBufferPointerSlice.swift
Expand All @@ -268,7 +269,6 @@ split_embedded_sources(
EMBEDDED LegacyInt128.swift.gyb
EMBEDDED UnsafeBufferPointer.swift.gyb
EMBEDDED UnsafeRawBufferPointer.swift.gyb
EMBEDDED Tuple.swift.gyb
)

if(SWIFT_STDLIB_ENABLE_VECTOR_TYPES)
Expand Down
Loading