]> git.ipfire.org Git - thirdparty/glibc.git/blame - io/Makefile
<sys/stat.h>: Use Linux UAPI header for statx if available and useful
[thirdparty/glibc.git] / io / Makefile
CommitLineData
04277e02 1# Copyright (C) 1992-2019 Free Software Foundation, Inc.
28f540f4
RM
2# This file is part of the GNU C Library.
3
4# The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5# modify it under the terms of the GNU Lesser General Public
6# License as published by the Free Software Foundation; either
7# version 2.1 of the License, or (at your option) any later version.
28f540f4
RM
8
9# The GNU C Library is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12# Lesser General Public License for more details.
28f540f4 13
41bdb6e2 14# You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15# License along with the GNU C Library; if not, see
16# <http://www.gnu.org/licenses/>.
28f540f4
RM
17
18#
19# Sub-makefile for I/O portion of the library.
20#
21subdir := io
22
a5f891ac
JM
23include ../Makeconfig
24
5107cf1d 25headers := sys/stat.h bits/stat.h sys/statfs.h bits/statfs.h sys/vfs.h \
867506f3 26 sys/statvfs.h bits/statvfs.h fcntl.h sys/fcntl.h bits/fcntl.h \
d5835c26 27 poll.h sys/poll.h bits/poll.h bits/fcntl2.h bits/poll2.h \
5dad6ffb
FW
28 bits/statx.h bits/statx-generic.h bits/types/struct_statx.h \
29 bits/types/struct_statx_timestamp.h \
30 utime.h ftw.h fts.h sys/sendfile.h
28f540f4 31
26cec518
UD
32routines := \
33 utime \
e186c703
UD
34 mkfifo mkfifoat \
35 stat fstat lstat stat64 fstat64 lstat64 fstatat fstatat64 \
fd70af45 36 xstat fxstat lxstat xstat64 fxstat64 lxstat64 statx \
e186c703 37 mknod mknodat xmknod xmknodat \
26cec518
UD
38 fxstatat fxstatat64 \
39 statfs fstatfs statfs64 fstatfs64 \
40 statvfs fstatvfs statvfs64 fstatvfs64 \
d15b99ac 41 umask chmod fchmod lchmod fchmodat \
c90c5d41 42 mkdir mkdirat \
cc0e6ed8 43 open open_2 open64 open64_2 openat openat_2 openat64 openat64_2 \
d15b99ac 44 read write lseek lseek64 access euidaccess faccessat \
06ab719d 45 fcntl fcntl64 flock lockf lockf64 \
cc0e6ed8 46 close dup dup2 dup3 pipe pipe2 \
26cec518
UD
47 creat creat64 \
48 chdir fchdir \
49 getcwd getwd getdirname \
50 chown fchown lchown fchownat \
51 ttyname ttyname_r isatty \
5c46041a 52 link linkat symlink symlinkat readlink readlinkat \
26cec518 53 unlink unlinkat rmdir \
8b7b7f75 54 ftw ftw64 fts fts64 poll ppoll \
26cec518
UD
55 posix_fadvise posix_fadvise64 \
56 posix_fallocate posix_fallocate64 \
bad7a0c8 57 sendfile sendfile64 copy_file_range \
c27d2078 58 utimensat futimens
28f540f4 59
7c713e28
RM
60# These routines will be omitted from the libc shared object.
61# Instead the static object files will be included in a special archive
62# linked against when the shared library will be used.
e186c703
UD
63static-only-routines = stat fstat lstat stat64 fstat64 lstat64 \
64 fstatat fstatat64 mknod mknodat
7c713e28 65
28f540f4 66others := pwd
d951286f 67test-srcs := ftwtest
25851835 68tests := test-utime test-stat test-stat2 test-lfs tst-getcwd \
4973cbe5 69 tst-fcntl bug-ftw1 bug-ftw2 bug-ftw3 bug-ftw4 tst-statvfs \
26cec518 70 tst-openat tst-unlinkat tst-fstatat tst-futimesat \
48a1d526 71 tst-renameat tst-fchownat tst-fchmodat tst-faccessat \
046f4516 72 tst-symlinkat tst-linkat tst-readlinkat tst-mkdirat \
c1bf9f14 73 tst-mknodat tst-mkfifoat tst-ttyname_r bug-ftw5 \
45ff2bfc 74 tst-posix_fallocate tst-posix_fallocate64 \
bad7a0c8 75 tst-fts tst-fts-lfs tst-open-tmpfile \
e442e40d 76 tst-copy_file_range tst-getcwd-abspath tst-lockf
bad7a0c8
FW
77
78# This test includes the compat implementation of copy_file_range,
79# which uses internal, unexported libc functions.
80tests-static += tst-copy_file_range-compat
81tests-internal += tst-copy_file_range-compat
28f540f4 82
fd70af45
FW
83# Likewise for statx, but we do not need static linking here.
84tests-internal += tst-statx
85
f214606a
JM
86ifeq ($(run-built-tests),yes)
87tests-special += $(objpfx)ftwtest.out
88endif
89
28f540f4 90include ../Rules
0793d348 91
36975e8e
L
92CFLAGS-open.c += -fexceptions -fasynchronous-unwind-tables
93CFLAGS-open64.c += -fexceptions -fasynchronous-unwind-tables
94CFLAGS-creat.c += -fexceptions -fasynchronous-unwind-tables
95CFLAGS-creat64.c += -fexceptions -fasynchronous-unwind-tables
96CFLAGS-fcntl.c += -fexceptions -fasynchronous-unwind-tables
06ab719d 97CFLAGS-fcntl64.c += -fexceptions -fasynchronous-unwind-tables
36975e8e
L
98CFLAGS-poll.c += -fexceptions -fasynchronous-unwind-tables
99CFLAGS-ppoll.c += -fexceptions -fasynchronous-unwind-tables
100CFLAGS-lockf.c += -fexceptions
101CFLAGS-statfs.c += -fexceptions
102CFLAGS-fstatfs.c += -fexceptions
103CFLAGS-statvfs.c += -fexceptions
104CFLAGS-fstatvfs.c += -fexceptions
105CFLAGS-fts.c += -Wno-uninitialized $(uses-callbacks) -fexceptions
106CFLAGS-fts64.c += -Wno-uninitialized $(uses-callbacks) -fexceptions
107CFLAGS-ftw.c += $(uses-callbacks) -fexceptions
108CFLAGS-ftw64.c += $(uses-callbacks) -fexceptions
109CFLAGS-lockf.c += -fexceptions
110CFLAGS-posix_fallocate.c += -fexceptions
111CFLAGS-posix_fallocate64.c += -fexceptions
112CFLAGS-fallocate.c += -fexceptions
113CFLAGS-fallocate64.c += -fexceptions
114CFLAGS-read.c += -fexceptions
115CFLAGS-write.c += -fexceptions
116
117CFLAGS-test-stat.c += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
118CFLAGS-test-lfs.c += -D_LARGEFILE64_SOURCE
d951286f 119
25851835
UD
120test-stat2-ARGS = Makefile . $(objpfx)test-stat2
121
a14f121d
UD
122tst-statvfs-ARGS = $(objpfx)tst-statvfs tst-statvfs.c /tmp
123
95511aab
JM
124tst-open-tmpfile-ARGS = --test-dir=$(objpfx)
125
03ac099f 126ifeq ($(run-built-tests),yes)
89f1c388 127$(objpfx)ftwtest.out: ftwtest-sh $(objpfx)ftwtest
f0881698
JM
128 $(SHELL) $< $(common-objpfx) '$(test-program-cmd)' > $@; \
129 $(evaluate-test)
e7a95dc6 130endif