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

[contrib][vcl] Fix VCL builds with GCC #37075

Merged
merged 1 commit into from
Nov 11, 2024
Merged
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
64 changes: 52 additions & 12 deletions bazel/foreign_cc/vpp_vcl.patch
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
diff --git src/CMakeLists.txt src/CMakeLists.txt
index 68d0a4fe6..958918ef1 100644
index 68d0a4f..9bf7ade 100644
--- src/CMakeLists.txt
+++ src/CMakeLists.txt
@@ -50,13 +50,8 @@ include(cmake/ccache.cmake)
Expand All @@ -12,7 +12,7 @@ index 68d0a4fe6..958918ef1 100644
- OUTPUT_VARIABLE VPP_VERSION
- OUTPUT_STRIP_TRAILING_WHITESPACE
-)

+set(VPP_VERSION 24.03-dev)
if (VPP_PLATFORM)
set(VPP_VERSION ${VPP_VERSION}-${VPP_PLATFORM_NAME})
Expand All @@ -28,7 +28,7 @@ index 68d0a4fe6..958918ef1 100644
elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
set(SUBDIRS vppinfra)
diff --git src/cmake/ccache.cmake src/cmake/ccache.cmake
index a7b395bc6..d6a4c5b30 100644
index a7b395b..d6a4c5b 100644
--- src/cmake/ccache.cmake
+++ src/cmake/ccache.cmake
@@ -14,7 +14,7 @@
Expand All @@ -41,26 +41,26 @@ index a7b395bc6..d6a4c5b30 100644
find_program(CCACHE_FOUND ccache)
message(STATUS "Looking for ccache")
diff --git src/cmake/library.cmake src/cmake/library.cmake
index 45b3944eb..b1dcc56e1 100644
index 45b3944..b1dcc56 100644
--- src/cmake/library.cmake
+++ src/cmake/library.cmake
@@ -24,7 +24,7 @@ macro(add_vpp_library lib)
set_target_properties(${lo} PROPERTIES POSITION_INDEPENDENT_CODE ON)
target_compile_options(${lo} PUBLIC ${VPP_DEFAULT_MARCH_FLAGS})

- add_library(${lib} SHARED)
+ add_library(${lib} STATIC)
target_sources(${lib} PRIVATE $<TARGET_OBJECTS:${lo}>)

if(VPP_LIB_VERSION)
diff --git src/tools/vppapigen/CMakeLists.txt src/tools/vppapigen/CMakeLists.txt
index 04ebed548..bfabc3a67 100644
index 04ebed5..bfabc3a 100644
--- src/tools/vppapigen/CMakeLists.txt
+++ src/tools/vppapigen/CMakeLists.txt
@@ -11,22 +11,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

-find_package(
- Python3
- REQUIRED
Expand All @@ -81,7 +81,7 @@ index 04ebed548..bfabc3a67 100644
FILES vppapigen.py
RENAME vppapigen
diff --git src/tools/vppapigen/vppapigen.py src/tools/vppapigen/vppapigen.py
index 2b0ce9999..f28a17302 100755
index 2b0ce99..f28a173 100755
--- src/tools/vppapigen/vppapigen.py
+++ src/tools/vppapigen/vppapigen.py
@@ -7,6 +7,13 @@ import logging
Expand All @@ -97,17 +97,57 @@ index 2b0ce9999..f28a17302 100755
+
import ply.lex as lex
import ply.yacc as yacc

diff --git src/vcl/CMakeLists.txt src/vcl/CMakeLists.txt
index 610b422d1..c5e6f8ca8 100644
index 610b422..c5e6f8c 100644
--- src/vcl/CMakeLists.txt
+++ src/vcl/CMakeLists.txt
@@ -35,6 +35,8 @@ if (LDP_HAS_GNU_SOURCE)
add_compile_definitions(HAVE_GNU_SOURCE)
endif(LDP_HAS_GNU_SOURCE)

+file(COPY vppcom.h DESTINATION ${CMAKE_LIBRARY_OUTPUT_DIRECTORY})
+
add_vpp_library(vcl_ldpreload
SOURCES
ldp_socket_wrapper.c
diff --git src/vppinfra/CMakeLists.txt src/vppinfra/CMakeLists.txt
index f34ceed..51fd2be 100644
--- src/vppinfra/CMakeLists.txt
+++ src/vppinfra/CMakeLists.txt
@@ -233,13 +233,28 @@ option(VPP_USE_EXTERNAL_LIBEXECINFO "Use external libexecinfo (useful for non-gl
if(VPP_USE_EXTERNAL_LIBEXECINFO)
set(EXECINFO_LIB execinfo)
endif()
-add_vpp_library(vppinfra
- SOURCES ${VPPINFRA_SRCS}
- LINK_LIBRARIES m ${EXECINFO_LIB}
- INSTALL_HEADERS ${VPPINFRA_HEADERS}
- COMPONENT libvppinfra
- LTO
-)
+
+# GCC versions 11 and 12 at least have some kind of bug when
+# LTO runs out of memory and breaking Envoy builds with gcc
+# as a result. So we conditionally disable LTO on GCC builds
+# to workaround the issue.
+if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
+ add_vpp_library(vppinfra
+ SOURCES ${VPPINFRA_SRCS}
+ LINK_LIBRARIES m ${EXECINFO_LIB}
+ INSTALL_HEADERS ${VPPINFRA_HEADERS}
+ COMPONENT libvppinfra
+ )
+else()
+ add_vpp_library(vppinfra
+ SOURCES ${VPPINFRA_SRCS}
+ LINK_LIBRARIES m ${EXECINFO_LIB}
+ INSTALL_HEADERS ${VPPINFRA_HEADERS}
+ COMPONENT libvppinfra
+ LTO
+ )
+endif()
+

##############################################################################
# vppinfra headers
23 changes: 17 additions & 6 deletions contrib/vcl/source/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,25 @@ envoy_contrib_package()

cc_library(
name = "vpp_vcl",
srcs = [
hdrs = ["external/vppcom.h"],
additional_linker_inputs = [
"external/libsvm.a",
"external/libvlibapi.a",
"external/libvlibmemoryclient.a",
"external/libvlibapi.a",
"external/libvppcom.a",
"external/libvppinfra.a",
"external/vppcom.h",
],
hdrs = ["external/vppcom.h"],
defines = ["VPP_VCL"],
includes = ["external/"],
linkopts = [
"-Wl,--start-group",
"$(location external/libsvm.a)",
"$(location external/libvlibmemoryclient.a)",
"$(location external/libvlibapi.a)",
"$(location external/libvppcom.a)",
"$(location external/libvppinfra.a)",
"-Wl,--end-group",
],
tags = ["skip_on_windows"],
visibility = ["//visibility:public"],
)
Expand All @@ -40,7 +48,10 @@ envoy_cmake(
"BUILD_SHARED_LIBS": "OFF",
"CMAKE_ENABLE_EXPORTS": "OFF",
},
copts = ["-Wno-unused-variable"],
copts = [
"-Wno-unused-variable",
"-Wno-error=array-bounds",
],
default_cache_entries = {},
env = {
"PLYPATHS": "$(locations %s)" % requirement("ply"),
Expand Down Expand Up @@ -73,8 +84,8 @@ genrule(
name = "build_files",
outs = [
"external/libsvm.a",
"external/libvlibapi.a",
"external/libvlibmemoryclient.a",
"external/libvlibapi.a",
"external/libvppcom.a",
"external/libvppinfra.a",
"external/vppcom.h",
Expand Down