From 1c241bb791f9ce34dae2020ba56b5f2e136c613a Mon Sep 17 00:00:00 2001 From: Petr Hosek Date: Thu, 29 Jun 2023 06:48:10 +0000 Subject: [PATCH] [libc] Missing FEnvImpl.h dependency on math.h FEnvImpl.h includes math.h and so needs an explicit dependency. Differential Revision: https://reviews.llvm.org/D154044 --- libc/src/__support/FPUtil/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/libc/src/__support/FPUtil/CMakeLists.txt b/libc/src/__support/FPUtil/CMakeLists.txt index 3a6b6de..9b6cd2d 100644 --- a/libc/src/__support/FPUtil/CMakeLists.txt +++ b/libc/src/__support/FPUtil/CMakeLists.txt @@ -4,6 +4,7 @@ add_header_library( FEnvImpl.h DEPENDS libc.include.fenv + libc.include.math libc.src.__support.macros.attributes ) -- 2.7.4