Summary: This patch illustrates some of the features like modularity we want in the new libc. Few other ideas like different kinds of testing, redirectors etc are not yet present. Reviewers: dlj, hfinkel, theraven, jfb, alexshap, jdoerfert Subscribers: mgorny, dexonsmith, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D67867 llvm-svn: 373764
31 lines
294 B
CMake
31 lines
294 B
CMake
|
|
add_header(
|
|
llvm_libc_common_h
|
|
HDR
|
|
__llvm-libc-common.h
|
|
)
|
|
|
|
add_header(
|
|
ctype_h
|
|
HDR
|
|
ctype.h
|
|
DEPENDS
|
|
llvm_libc_common_h
|
|
)
|
|
|
|
add_header(
|
|
math_h
|
|
HDR
|
|
math.h
|
|
DEPENDS
|
|
llvm_libc_common_h
|
|
)
|
|
|
|
add_header(
|
|
string_h
|
|
HDR
|
|
string.h
|
|
DEPENDS
|
|
llvm_libc_common_h
|
|
)
|