-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Takeshi Yoneda <takeshi@tetrate.io>
- Loading branch information
Showing
8 changed files
with
167 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
load("@rules_foreign_cc//foreign_cc:defs.bzl", "cmake") | ||
|
||
licenses(["notice"]) # Apache 2 | ||
|
||
package(default_visibility = ["//visibility:public"]) | ||
|
||
filegroup( | ||
name = "srcs", | ||
srcs = glob(["**"]), | ||
visibility = ["//visibility:public"], | ||
) | ||
|
||
cmake( | ||
name = "llvm_lib", | ||
cache_entries = { | ||
# Disable both: BUILD and INCLUDE, since some of the INCLUDE | ||
# targets build code instead of only generating build files. | ||
"LLVM_BUILD_DOCS": "off", | ||
"LLVM_INCLUDE_DOCS": "off", | ||
"LLVM_BUILD_EXAMPLES": "off", | ||
"LLVM_INCLUDE_EXAMPLES": "off", | ||
"LLVM_BUILD_RUNTIME": "off", | ||
"LLVM_BUILD_RUNTIMES": "off", | ||
"LLVM_INCLUDE_RUNTIMES": "off", | ||
"LLVM_BUILD_TESTS": "off", | ||
"LLVM_INCLUDE_TESTS": "off", | ||
"LLVM_BUILD_TOOLS": "off", | ||
"LLVM_INCLUDE_TOOLS": "off", | ||
"LLVM_BUILD_UTILS": "off", | ||
"LLVM_INCLUDE_UTILS": "off", | ||
"LLVM_ENABLE_LIBEDIT": "off", | ||
"LLVM_ENABLE_LIBXML2": "off", | ||
"LLVM_ENABLE_TERMINFO": "off", | ||
"LLVM_ENABLE_ZLIB": "off", | ||
"LLVM_TARGETS_TO_BUILD": "X86", | ||
"CMAKE_CXX_COMPILER_FORCED": "on", | ||
# Workaround for the issue with statically linked libstdc++ | ||
# using -l:libstdc++.a. | ||
"CMAKE_CXX_FLAGS": "-lstdc++", | ||
}, | ||
env_vars = { | ||
# Workaround for the -DDEBUG flag added in fastbuild on macOS, | ||
# which conflicts with DEBUG macro used in LLVM. | ||
"CFLAGS": "-UDEBUG", | ||
"CXXFLAGS": "-UDEBUG", | ||
"ASMFLAGS": "-UDEBUG", | ||
}, | ||
lib_source = ":srcs", | ||
static_libraries = [ | ||
# Order from llvm-config --libnames. | ||
"libLLVMInterpreter.a", | ||
"libLLVMWindowsManifest.a", | ||
"libLLVMLibDriver.a", | ||
"libLLVMObjectYAML.a", | ||
"libLLVMCoverage.a", | ||
"libLLVMLineEditor.a", | ||
"libLLVMDlltoolDriver.a", | ||
"libLLVMOption.a", | ||
"libLLVMTableGen.a", | ||
"libLLVMFuzzMutate.a", | ||
"libLLVMSymbolize.a", | ||
"libLLVMCoroutines.a", | ||
"libLLVMDebugInfoPDB.a", | ||
"libLLVMLTO.a", | ||
"libLLVMObjCARCOpts.a", | ||
"libLLVMMIRParser.a", | ||
"libLLVMOrcJIT.a", | ||
"libLLVMOrcError.a", | ||
"libLLVMJITLink.a", | ||
"libLLVMPasses.a", | ||
"libLLVMipo.a", | ||
"libLLVMInstrumentation.a", | ||
"libLLVMVectorize.a", | ||
"libLLVMLinker.a", | ||
"libLLVMIRReader.a", | ||
"libLLVMAsmParser.a", | ||
"libLLVMX86Disassembler.a", | ||
"libLLVMX86AsmParser.a", | ||
"libLLVMX86CodeGen.a", | ||
"libLLVMCFGuard.a", | ||
"libLLVMGlobalISel.a", | ||
"libLLVMSelectionDAG.a", | ||
"libLLVMAsmPrinter.a", | ||
"libLLVMDebugInfoDWARF.a", | ||
"libLLVMCodeGen.a", | ||
"libLLVMScalarOpts.a", | ||
"libLLVMInstCombine.a", | ||
"libLLVMAggressiveInstCombine.a", | ||
"libLLVMTransformUtils.a", | ||
"libLLVMBitWriter.a", | ||
"libLLVMX86Desc.a", | ||
"libLLVMMCDisassembler.a", | ||
"libLLVMX86Utils.a", | ||
"libLLVMX86Info.a", | ||
"libLLVMMCJIT.a", | ||
"libLLVMExecutionEngine.a", | ||
"libLLVMTarget.a", | ||
"libLLVMAnalysis.a", | ||
"libLLVMProfileData.a", | ||
"libLLVMRuntimeDyld.a", | ||
"libLLVMObject.a", | ||
"libLLVMTextAPI.a", | ||
"libLLVMMCParser.a", | ||
"libLLVMBitReader.a", | ||
"libLLVMMC.a", | ||
"libLLVMDebugInfoCodeView.a", | ||
"libLLVMDebugInfoMSF.a", | ||
"libLLVMCore.a", | ||
"libLLVMRemarks.a", | ||
"libLLVMBitstreamReader.a", | ||
"libLLVMBinaryFormat.a", | ||
"libLLVMSupport.a", | ||
"libLLVMDemangle.a", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Workaround for Envoy's CMAKE_BUILD_TYPE=Bazel. | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -247,7 +247,7 @@ | ||
string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE) | ||
|
||
if (CMAKE_BUILD_TYPE AND | ||
- NOT uppercase_CMAKE_BUILD_TYPE MATCHES "^(DEBUG|RELEASE|RELWITHDEBINFO|MINSIZEREL)$") | ||
+ NOT uppercase_CMAKE_BUILD_TYPE MATCHES "^(DEBUG|RELEASE|RELWITHDEBINFO|MINSIZEREL|BAZEL)$") | ||
message(FATAL_ERROR "Invalid value for CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}") | ||
endif() | ||
|
||
# Workaround for a missing -fuse-ld flag in CXXFLAGS, which results in | ||
# different linkers being used during configure and compilation phases. | ||
--- a/cmake/modules/HandleLLVMOptions.cmake | ||
+++ b/cmake/modules/HandleLLVMOptions.cmake | ||
@@ -718,8 +718,6 @@ endif() | ||
if (UNIX AND CMAKE_GENERATOR STREQUAL "Ninja") | ||
include(CheckLinkerFlag) | ||
check_linker_flag("-Wl,--color-diagnostics" LINKER_SUPPORTS_COLOR_DIAGNOSTICS) | ||
- append_if(LINKER_SUPPORTS_COLOR_DIAGNOSTICS "-Wl,--color-diagnostics" | ||
- CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) | ||
endif() | ||
|
||
# Add flags for add_dead_strip(). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters