From 266808d055ecbcdeca8cee17d6ade48a1e0791ca Mon Sep 17 00:00:00 2001 From: Petr Hosek Date: Tue, 23 Jul 2024 06:28:03 +0000 Subject: [PATCH] [llvm-cgdata] Remove `GENERATE_DRIVER` option This tool shouldn't be used in the driver build until it is converted to use `OptTable` for option parsing, otherwise the `cl::opt` options might conflict with options in other tools resulting in link failures. --- llvm/tools/llvm-cgdata/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/llvm/tools/llvm-cgdata/CMakeLists.txt b/llvm/tools/llvm-cgdata/CMakeLists.txt index 4f1f7ff635bc3..966384278b9ab 100644 --- a/llvm/tools/llvm-cgdata/CMakeLists.txt +++ b/llvm/tools/llvm-cgdata/CMakeLists.txt @@ -11,5 +11,4 @@ add_llvm_tool(llvm-cgdata DEPENDS intrinsics_gen - GENERATE_DRIVER )