From 3e75753888aaa9de3e184ce46be4f900205ed77d Mon Sep 17 00:00:00 2001 From: Hugo Larcher Date: Fri, 13 Dec 2024 16:11:16 +0100 Subject: [PATCH] chore: Fix rebase --- backends/trtllm/CMakeLists.txt | 6 ------ 1 file changed, 6 deletions(-) diff --git a/backends/trtllm/CMakeLists.txt b/backends/trtllm/CMakeLists.txt index 8ba8df4cdfc..0e3f7f9a0a7 100644 --- a/backends/trtllm/CMakeLists.txt +++ b/backends/trtllm/CMakeLists.txt @@ -97,12 +97,6 @@ if (${TGI_TRTLLM_BACKEND_BUILD_TESTS}) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror -fsanitize=undefined -fsanitize=address") target_link_options(tgi_trtllm_backend_tests BEFORE PUBLIC -fsanitize=undefined PUBLIC -fsanitize=address) endif() - - if(CMAKE_BUILD_TYPE MATCHES "Debug") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror -fsanitize=undefined -fsanitize=address") - target_link_options(tgi_trtllm_backend_tests BEFORE PUBLIC -fsanitize=undefined PUBLIC -fsanitize=address) - endif() - list(APPEND CMAKE_MODULE_PATH ${catch2_SOURCE_DIR}/extras) include(CTest) include(Catch)