blob: 642b76c6e4feaa840a66dcb7d5ba12be238e3505 [file] [log] [blame]
# Copyright 2023 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("../libc.gni")
llvm_libc_source_set("math") {
noncpu_dir = "generic"
# TODO(https://fxbug.dev/42141211): for now only using functions that are trivial
# machine instructions in the aarch64 and x86_64 implementations.
functions = [
"fabs",
"fabsf",
"sqrt",
"sqrtf",
]
# The llvm-libc math tests require gtest and MPFR.
no_test_functions = functions
}