[DFAJumpThreading] Remove incoming StartBlock from all phis when unfolding select...
[llvm-project.git] / utils / bazel / third_party_build / gmp.BUILD
blobfb0c3bf75b7ed12ceb5e399a8b0f8388ba11f8b6
1 # This file is licensed under the Apache License v2.0 with LLVM Exceptions.
2 # See https://llvm.org/LICENSE.txt for license information.
3 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5 load("@rules_foreign_cc//foreign_cc:defs.bzl", "configure_make_variant")
7 filegroup(
8     name = "sources",
9     srcs = glob(["**"]),
12 configure_make_variant(
13     name = "gmp",
14     configure_options = ["--with-pic"],
15     copts = ["-w"],
16     lib_name = "libgmp",
17     lib_source = ":sources",
18     toolchain = "@rules_foreign_cc//toolchains:preinstalled_autoconf_toolchain",
19     visibility = ["//visibility:public"],