Skip to content

Commit 1014ffb

Browse files
committed
Add missing dependency and fix __copied_hdr__ target issues.
1 parent e30b666 commit 1014ffb

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

libc/include/llvm-libc-types/float128.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#ifndef __LLVM_LIBC_TYPES_FLOAT128_H__
1010
#define __LLVM_LIBC_TYPES_FLOAT128_H__
1111

12-
#include <llvm-libc-macros/float-macros.h> // LDBL_MANT_DIG
12+
#include <include/llvm-libc-macros/float-macros.h> // LDBL_MANT_DIG
1313

1414
// Define temporary compiler and its version
1515
#if defined(__clang__)

libc/src/__support/macros/properties/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,6 @@ add_header_library(
3333
.compiler
3434
.cpu_features
3535
.os
36+
libc.include.llvm-libc-macros.float_macros
3637
libc.include.llvm-libc-types.float128
3738
)

libc/src/__support/macros/properties/float.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#ifndef LLVM_LIBC_SRC___SUPPORT_MACROS_PROPERTIES_FLOAT_H
1212
#define LLVM_LIBC_SRC___SUPPORT_MACROS_PROPERTIES_FLOAT_H
1313

14-
#include "llvm-libc-macros/float-macros.h" // LDBL_MANT_DIG
15-
#include "llvm-libc-types/float128.h" // float128
14+
#include "include/llvm-libc-macros/float-macros.h" // LDBL_MANT_DIG
15+
#include "include/llvm-libc-types/float128.h" // float128
1616
#include "src/__support/macros/properties/architectures.h"
1717
#include "src/__support/macros/properties/compiler.h"
1818
#include "src/__support/macros/properties/cpu_features.h"

0 commit comments

Comments
 (0)