Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Cherry pick] LLVM BC support #14086

Closed
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public final class CppFileTypes {
public static final FileType OBJCPP_SOURCE = FileType.of(".mm");
public static final FileType CLIF_INPUT_PROTO = FileType.of(".ipb");
public static final FileType CLIF_OUTPUT_PROTO = FileType.of(".opb");
public static final FileType BC_SOURCE = FileType.of(".bc");

public static final FileTypeSet ALL_C_CLASS_SOURCE =
FileTypeSet.of(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ private Link() {} // uninstantiable
/** The set of object files */
public static final FileTypeSet OBJECT_FILETYPES =
FileTypeSet.of(
CppFileTypes.OBJECT_FILE, CppFileTypes.PIC_OBJECT_FILE, CppFileTypes.CLIF_OUTPUT_PROTO);
CppFileTypes.OBJECT_FILE,
CppFileTypes.PIC_OBJECT_FILE,
CppFileTypes.CLIF_OUTPUT_PROTO,
CppFileTypes.BC_SOURCE);

/**
* Whether a particular link target requires PIC code.
Expand Down