mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
`SWIFT_BUILD_STATIC_STDLIB` is not mutually exclusive with `SWIFT_BUILD_DYNAMIC_STDLIB`, and Linux sets both, so we can't use `SWIFT_BUILD_STATIC_STDLIB` to conditionalise things. The linker error about duplicate definitions for the threading error handler was happening because we were forced to include the object containing that symbol; moving it to another object should fix that. And it turns out there's a way to get CMake to include the threading object library only when building a shared object, so use that too. rdar://90776105
27 lines
837 B
C++
27 lines
837 B
C++
//===--- ThreadingError.cpp - Error handling support code -----------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "swift/Threading/Errors.h"
|
|
#include <cstdio>
|
|
|
|
#include "Error.h"
|
|
|
|
// Handle fatal errors from the threading library
|
|
SWIFT_ATTRIBUTE_NORETURN
|
|
SWIFT_FORMAT(1, 2)
|
|
void swift::threading::fatal(const char *format, ...) {
|
|
va_list val;
|
|
|
|
va_start(val, format);
|
|
swift_Concurrency_fatalErrorv(0, format, val);
|
|
}
|