Files
swift-mirror/include/swift/AST/LinkLibrary.h
Jordan Rose dde2a8b06b Serialize and honor whether a particular library should be force-loaded.
When a module built with -autolink-force-load is imported, add a reference
to a special symbol in the corresponding library so that ld is forced to
link it.

This means the library will be linked into the final binary even if no other
symbols are used (which happens for some of our overlays that just add
category methods to Objective-C classes).

Second part of <rdar://problem/16829587>

Swift SVN r17751
2014-05-09 01:20:32 +00:00

51 lines
1.4 KiB
C++

//===--- LinkLibrary.h - A module-level linker dependency -------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_AST_LINKLIBRARY_H
#define SWIFT_AST_LINKLIBRARY_H
#include "swift/Basic/LLVM.h"
#include "llvm/ADT/SmallString.h"
#include <string>
namespace swift {
// Must be kept in sync with diag::error_immediate_mode_missing_library.
enum class LibraryKind {
Library = 0,
Framework
};
/// Represents a linker dependency for an imported module.
// FIXME: This is basically a slightly more generic version of Clang's
// Module::LinkLibrary.
class LinkLibrary {
private:
std::string Name;
unsigned Kind : 1;
unsigned ForceLoad : 1;
public:
LinkLibrary(StringRef N, LibraryKind K, bool forceLoad = false)
: Name(N), Kind(static_cast<unsigned>(K)), ForceLoad(forceLoad) {
assert(getKind() == K && "not enough bits for the kind");
}
LibraryKind getKind() const { return static_cast<LibraryKind>(Kind); }
StringRef getName() const { return Name; }
bool shouldForceLoad() const { return ForceLoad; }
};
} // end namespace swift
#endif