[llvm] [libc][bazel] Remove unneeded deps. (PR #130696)

Jorge Gorbe Moya via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 10 18:24:52 PDT 2025


https://github.com/slackito created https://github.com/llvm/llvm-project/pull/130696

The MPFRWrapper BUILD targets don't depend directly on gmp. MPFR itself does depend on gmp, but not the wrapper.

>From 0fd712019a564d3bbda7ff57d03f90a3cd834076 Mon Sep 17 00:00:00 2001
From: Jorge Gorbe Moya <jgorbe at google.com>
Date: Mon, 10 Mar 2025 18:20:42 -0700
Subject: [PATCH] [libc][bazel] Remove unneeded deps.

The MPFRWrapper BUILD targets don't depend directly on gmp. MPFR itself
does depend on gmp, but not the wrapper.
---
 .../llvm-project-overlay/libc/utils/MPFRWrapper/BUILD.bazel     | 2 --
 1 file changed, 2 deletions(-)

diff --git a/utils/bazel/llvm-project-overlay/libc/utils/MPFRWrapper/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/utils/MPFRWrapper/BUILD.bazel
index 28922ba114740..79b7e146eb1ce 100644
--- a/utils/bazel/llvm-project-overlay/libc/utils/MPFRWrapper/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/utils/MPFRWrapper/BUILD.bazel
@@ -48,7 +48,6 @@ libc_test_library(
         "//libc:__support_macros_properties_types",
         "//libc/test/UnitTest:fp_test_helpers",
         "//libc/utils/MPFRWrapper:mpfr_impl",
-        "@gmp//:gmp_",
     ],
 )
 
@@ -82,6 +81,5 @@ libc_test_library(
         "//libc/test/UnitTest:LibcUnitTest",
         "//libc/test/UnitTest:fp_test_helpers",
         "//libc/utils/MPFRWrapper:mpfr_impl",
-        "@gmp//:gmp_",
     ],
 )



More information about the llvm-commits mailing list