diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-18 20:01:26 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-26 11:19:54 +0000 |
commit | ded63d68334044e79b15b814216fab02c70ad94f (patch) | |
tree | 986249d1c3eb6be6a0f47bddf8300329325aeed7 /meta | |
parent | 46cb0124916ae4df6ece3398a82d62b656228c27 (diff) | |
download | poky-ded63d68334044e79b15b814216fab02c70ad94f.tar.gz |
glibc: Remove site_config and glibc-initial
The only reason we appear to need glibc-initial at this time is to support
the site_config code. The site_config code compiles and therefore needs
at least some level of working C library to link against.
This isn't a good reason to keep the complexity of glibc-initial around
so remove it, and the site_config support which then breaks.
Performance benchmarks suggest the time spent just rerunning configure
for site_config just about equals any performance benefit for OE-Core
image builds excluding the time spent adding glibc-initial to the
dependency chain.
I'm not opposed to readding some other form of site_config support
but it needs to be rethought.
(From OE-Core rev: c5df105e7583e43da9b682f739bebaf873dcd2f4)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/glibc/glibc-initial.inc | 57 | ||||
-rw-r--r-- | meta/recipes-core/glibc/glibc-initial_2.28.bb | 9 | ||||
-rw-r--r-- | meta/recipes-core/glibc/glibc.inc | 16 | ||||
-rw-r--r-- | meta/recipes-core/glibc/site_config/funcs | 474 | ||||
-rw-r--r-- | meta/recipes-core/glibc/site_config/headers | 155 | ||||
-rw-r--r-- | meta/recipes-core/glibc/site_config/types | 21 |
6 files changed, 1 insertions, 731 deletions
diff --git a/meta/recipes-core/glibc/glibc-initial.inc b/meta/recipes-core/glibc/glibc-initial.inc deleted file mode 100644 index acd0d6b1dc..0000000000 --- a/meta/recipes-core/glibc/glibc-initial.inc +++ /dev/null | |||
@@ -1,57 +0,0 @@ | |||
1 | DEPENDS = "linux-libc-headers virtual/${TARGET_PREFIX}gcc-initial libgcc-initial make-native bison-native" | ||
2 | PROVIDES = "virtual/${TARGET_PREFIX}libc-initial" | ||
3 | |||
4 | PACKAGES = "" | ||
5 | PACKAGES_DYNAMIC = "" | ||
6 | |||
7 | STAGINGCC = "gcc-cross-initial-${TARGET_ARCH}" | ||
8 | STAGINGCC_class-nativesdk = "gcc-crosssdk-initial-${SDK_SYS}" | ||
9 | |||
10 | do_configure () { | ||
11 | (cd ${S} && gnu-configize) || die "failure in running gnu-configize" | ||
12 | find ${S} -name "configure" | xargs touch | ||
13 | cfgscript=`python3 -c "import os; print(os.path.relpath('${S}', '.'))"`/configure | ||
14 | $cfgscript --host=${TARGET_SYS} --build=${BUILD_SYS} \ | ||
15 | --prefix=/usr \ | ||
16 | --disable-sanity-checks \ | ||
17 | --with-headers=${STAGING_DIR_TARGET}${includedir} \ | ||
18 | --enable-hacker-mode | ||
19 | } | ||
20 | |||
21 | do_compile () { | ||
22 | : | ||
23 | } | ||
24 | |||
25 | do_install () { | ||
26 | oe_runmake cross-compiling=yes install_root=${D} \ | ||
27 | includedir='${includedir}' prefix='${prefix}' \ | ||
28 | install-bootstrap-headers=yes install-headers | ||
29 | |||
30 | oe_runmake csu/subdir_lib | ||
31 | mkdir -p ${D}${libdir}/ | ||
32 | install -m 644 csu/crt[1in].o ${D}${libdir} | ||
33 | |||
34 | # Two headers -- stubs.h and features.h -- aren't installed by install-headers, | ||
35 | # so do them by hand. We can tolerate an empty stubs.h for the moment. | ||
36 | # See e.g. http://gcc.gnu.org/ml/gcc/2002-01/msg00900.html | ||
37 | mkdir -p ${D}${includedir}/gnu/ | ||
38 | touch ${D}${includedir}/gnu/stubs.h | ||
39 | cp ${S}/include/features.h ${D}${includedir}/features.h | ||
40 | |||
41 | if [ -e ${B}/bits/stdio_lim.h ]; then | ||
42 | cp ${B}/bits/stdio_lim.h ${D}${includedir}/bits/ | ||
43 | fi | ||
44 | } | ||
45 | |||
46 | do_stash_locale() { | ||
47 | : | ||
48 | } | ||
49 | |||
50 | do_siteconfig () { | ||
51 | : | ||
52 | } | ||
53 | |||
54 | inherit nopackages | ||
55 | |||
56 | # We really only want this built by things that need it, not any recrdeptask | ||
57 | deltask do_build | ||
diff --git a/meta/recipes-core/glibc/glibc-initial_2.28.bb b/meta/recipes-core/glibc/glibc-initial_2.28.bb deleted file mode 100644 index e86770e12d..0000000000 --- a/meta/recipes-core/glibc/glibc-initial_2.28.bb +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | require glibc_${PV}.bb | ||
2 | require glibc-initial.inc | ||
3 | |||
4 | # main glibc recipes muck with TARGET_CPPFLAGS to point into | ||
5 | # final target sysroot but we | ||
6 | # are not there when building glibc-initial | ||
7 | # so reset it here | ||
8 | |||
9 | TARGET_CPPFLAGS = "" | ||
diff --git a/meta/recipes-core/glibc/glibc.inc b/meta/recipes-core/glibc/glibc.inc index 99c92ce46e..43e71337ee 100644 --- a/meta/recipes-core/glibc/glibc.inc +++ b/meta/recipes-core/glibc/glibc.inc | |||
@@ -15,21 +15,7 @@ python () { | |||
15 | bb.fatal("%s can't be built with %s, try -O1 instead" % (d.getVar('PN'), opt_effective)) | 15 | bb.fatal("%s can't be built with %s, try -O1 instead" % (d.getVar('PN'), opt_effective)) |
16 | } | 16 | } |
17 | 17 | ||
18 | # siteconfig.bbclass runs configure which needs a working compiler | 18 | DEPENDS = "virtual/${TARGET_PREFIX}gcc-initial libgcc-initial linux-libc-headers" |
19 | # For the compiler to work we need a working libc yet libc isn't | ||
20 | # in the sysroots directory at this point. This means the libc.so | ||
21 | # linker script won't work as the --sysroot setting isn't correct. | ||
22 | # Here we create a hacked up libc linker script and pass in the right | ||
23 | # flags to let configure work. Ugly. | ||
24 | EXTRASITECONFIG = "CFLAGS='${CFLAGS} -Wl,-L${WORKDIR}/site_config_libc -L${WORKDIR}/site_config_libc -L${SYSROOT_DESTDIR}${libdir} -L${SYSROOT_DESTDIR}${base_libdir} -Wl,-L${SYSROOT_DESTDIR}${libdir} -Wl,-L${SYSROOT_DESTDIR}${base_libdir}'" | ||
25 | siteconfig_do_siteconfig_gencache_prepend = " \ | ||
26 | mkdir -p ${WORKDIR}/site_config_libc; \ | ||
27 | cp ${SYSROOT_DESTDIR}${libdir}/libc.so ${WORKDIR}/site_config_libc; \ | ||
28 | sed -i -e 's# ${base_libdir}# ${SYSROOT_DESTDIR}${base_libdir}#g' -e 's# ${libdir}# ${SYSROOT_DESTDIR}${libdir}#g' ${WORKDIR}/site_config_libc/libc.so; \ | ||
29 | " | ||
30 | |||
31 | # nptl needs unwind support in gcc, which can't be built without glibc. | ||
32 | DEPENDS = "virtual/${TARGET_PREFIX}gcc-initial libgcc-initial linux-libc-headers virtual/${TARGET_PREFIX}libc-initial" | ||
33 | 19 | ||
34 | PROVIDES = "virtual/libc virtual/${TARGET_PREFIX}libc-for-gcc" | 20 | PROVIDES = "virtual/libc virtual/${TARGET_PREFIX}libc-for-gcc" |
35 | PROVIDES += "virtual/libintl virtual/libiconv" | 21 | PROVIDES += "virtual/libintl virtual/libiconv" |
diff --git a/meta/recipes-core/glibc/site_config/funcs b/meta/recipes-core/glibc/site_config/funcs deleted file mode 100644 index ccc85392d7..0000000000 --- a/meta/recipes-core/glibc/site_config/funcs +++ /dev/null | |||
@@ -1,474 +0,0 @@ | |||
1 | a64l | ||
2 | abs | ||
3 | access | ||
4 | __adjtimex | ||
5 | alarm | ||
6 | alphasort | ||
7 | argz_append | ||
8 | __argz_count | ||
9 | argz_create_sep | ||
10 | argz_insert | ||
11 | __argz_next | ||
12 | argz_next | ||
13 | __argz_stringify | ||
14 | argz_stringify | ||
15 | asprintf | ||
16 | atexit | ||
17 | atof | ||
18 | atoi | ||
19 | bcmp | ||
20 | bcopy | ||
21 | bindresvport | ||
22 | bind_textdomain_codeset | ||
23 | btowc | ||
24 | bzero | ||
25 | calloc | ||
26 | canonicalize_file_name | ||
27 | catgets | ||
28 | cfgetospeed | ||
29 | cfsetispeed | ||
30 | cfsetspeed | ||
31 | chmod | ||
32 | chown | ||
33 | chroot | ||
34 | clock | ||
35 | close | ||
36 | closedir | ||
37 | closelog | ||
38 | confstr | ||
39 | connect | ||
40 | daemon | ||
41 | dcgettext | ||
42 | difftime | ||
43 | dirfd | ||
44 | dirname | ||
45 | dngettext | ||
46 | dup2 | ||
47 | ecvt | ||
48 | endgrent | ||
49 | endmntent | ||
50 | endpwent | ||
51 | endutent | ||
52 | endutxent | ||
53 | epoll_ctl | ||
54 | err | ||
55 | ether_hostton | ||
56 | ether_ntohost | ||
57 | euidaccess | ||
58 | execv | ||
59 | fchdir | ||
60 | fchmod | ||
61 | fchmodat | ||
62 | fchown | ||
63 | fchownat | ||
64 | fcntl | ||
65 | fcvt | ||
66 | fdatasync | ||
67 | fdopendir | ||
68 | feof_unlocked | ||
69 | fgets_unlocked | ||
70 | fgetxattr | ||
71 | finite | ||
72 | flistxattr | ||
73 | flock | ||
74 | flockfile | ||
75 | fnmatch | ||
76 | fork | ||
77 | fpathconf | ||
78 | __fpending | ||
79 | fprintf | ||
80 | free | ||
81 | freeaddrinfo | ||
82 | freeifaddrs | ||
83 | fseeko | ||
84 | __fsetlocking | ||
85 | fsetxattr | ||
86 | fstat64 | ||
87 | fstat | ||
88 | fstatfs | ||
89 | fsync | ||
90 | ftello | ||
91 | ftime | ||
92 | ftruncate | ||
93 | funlockfile | ||
94 | futimes | ||
95 | futimesat | ||
96 | gai_strerror | ||
97 | gcvt | ||
98 | getaddrinfo | ||
99 | getc_unlocked | ||
100 | getcwd | ||
101 | getdelim | ||
102 | getdomainname | ||
103 | getdtablesize | ||
104 | getegid | ||
105 | getenv | ||
106 | geteuid | ||
107 | getgid | ||
108 | getgrent | ||
109 | getgrent_r | ||
110 | getgrgid_r | ||
111 | getgrnam | ||
112 | getgrnam_r | ||
113 | getgrouplist | ||
114 | getgroups | ||
115 | gethostbyaddr_r | ||
116 | gethostbyname2 | ||
117 | gethostbyname | ||
118 | gethostbyname_r | ||
119 | gethostent | ||
120 | gethostid | ||
121 | gethostname | ||
122 | getifaddrs | ||
123 | getline | ||
124 | getloadavg | ||
125 | getmntent | ||
126 | getmsg | ||
127 | getnameinfo | ||
128 | getnetbyaddr_r | ||
129 | getnetgrent_r | ||
130 | getopt | ||
131 | getopt_long | ||
132 | getopt_long_only | ||
133 | getpagesize | ||
134 | getpass | ||
135 | getpeername | ||
136 | getpgrp | ||
137 | getpid | ||
138 | getppid | ||
139 | getprotoent_r | ||
140 | getpwent | ||
141 | getpwent_r | ||
142 | getpwnam | ||
143 | getpwnam_r | ||
144 | getpwuid | ||
145 | getpwuid_r | ||
146 | getresuid | ||
147 | getrlimit | ||
148 | getrusage | ||
149 | getservbyname | ||
150 | getservbyname_r | ||
151 | getservbyport_r | ||
152 | getservent | ||
153 | getservent_r | ||
154 | getspnam | ||
155 | getspnam_r | ||
156 | gettimeofday | ||
157 | getttyent | ||
158 | getttynam | ||
159 | getuid | ||
160 | getusershell | ||
161 | getutent | ||
162 | getutid | ||
163 | getutline | ||
164 | getutmp | ||
165 | getutmpx | ||
166 | getutxent | ||
167 | getutxid | ||
168 | getutxline | ||
169 | getwd | ||
170 | getxattr | ||
171 | glob | ||
172 | gmtime | ||
173 | gmtime_r | ||
174 | grantpt | ||
175 | group_member | ||
176 | herror | ||
177 | hstrerror | ||
178 | iconv | ||
179 | iconv_open | ||
180 | if_freenameindex | ||
181 | if_indextoname | ||
182 | if_nameindex | ||
183 | if_nametoindex | ||
184 | index | ||
185 | inet_addr | ||
186 | inet_aton | ||
187 | inet_ntoa | ||
188 | inet_ntop | ||
189 | inet_pton | ||
190 | initgroups | ||
191 | innetgr | ||
192 | iruserok | ||
193 | isascii | ||
194 | isatty | ||
195 | isblank | ||
196 | isgraph | ||
197 | isinf | ||
198 | isnan | ||
199 | isprint | ||
200 | isspace | ||
201 | iswalnum | ||
202 | iswcntrl | ||
203 | iswctype | ||
204 | iswprint | ||
205 | iswspace | ||
206 | iswupper | ||
207 | isxdigit | ||
208 | kill | ||
209 | killpg | ||
210 | lchown | ||
211 | lckpwdf | ||
212 | lgetxattr | ||
213 | link | ||
214 | listxattr | ||
215 | llistxattr | ||
216 | localtime | ||
217 | localtime_r | ||
218 | lockf | ||
219 | lrand48 | ||
220 | lsearch | ||
221 | lseek64 | ||
222 | lsetxattr | ||
223 | lstat | ||
224 | mallinfo | ||
225 | malloc | ||
226 | mblen | ||
227 | mbrlen | ||
228 | mbrtowc | ||
229 | mbsinit | ||
230 | mbsrtowcs | ||
231 | mbtowc | ||
232 | memalign | ||
233 | memchr | ||
234 | memcmp | ||
235 | memcpy | ||
236 | memmove | ||
237 | mempcpy | ||
238 | memrchr | ||
239 | memset | ||
240 | mkdir | ||
241 | mkdirat | ||
242 | mkdtemp | ||
243 | mkfifo | ||
244 | mknod | ||
245 | mkstemp64 | ||
246 | mkstemp | ||
247 | mktime | ||
248 | mlock | ||
249 | mmap | ||
250 | mtrace | ||
251 | munlock | ||
252 | munmap | ||
253 | nanosleep | ||
254 | nice | ||
255 | nl_langinfo | ||
256 | ntp_adjtime | ||
257 | ntp_gettime | ||
258 | _obstack_free | ||
259 | on_exit | ||
260 | open64 | ||
261 | open | ||
262 | openat | ||
263 | opendir | ||
264 | openlog | ||
265 | pathconf | ||
266 | pipe | ||
267 | poll | ||
268 | popen | ||
269 | posix_memalign | ||
270 | prctl | ||
271 | pread | ||
272 | printf | ||
273 | __progname | ||
274 | pselect | ||
275 | pthread_mutex_lock | ||
276 | ptsname | ||
277 | putenv | ||
278 | putgrent | ||
279 | putpwent | ||
280 | putspent | ||
281 | pututline | ||
282 | pututxline | ||
283 | putwc | ||
284 | pwrite | ||
285 | qsort | ||
286 | raise | ||
287 | rand | ||
288 | random | ||
289 | rand_r | ||
290 | read | ||
291 | readdir | ||
292 | readdir_r | ||
293 | readlink | ||
294 | realloc | ||
295 | realpath | ||
296 | re_comp | ||
297 | recvmsg | ||
298 | re_exec | ||
299 | regcomp | ||
300 | regexec | ||
301 | remove | ||
302 | rename | ||
303 | re_search | ||
304 | rmdir | ||
305 | rpmatch | ||
306 | rresvport_af | ||
307 | ruserok | ||
308 | ruserok_af | ||
309 | sbrk | ||
310 | scandir | ||
311 | sched_setscheduler | ||
312 | sched_yield | ||
313 | __secure_getenv | ||
314 | select | ||
315 | semctl | ||
316 | semget | ||
317 | sendmsg | ||
318 | setbuf | ||
319 | setbuffer | ||
320 | setegid | ||
321 | setenv | ||
322 | seteuid | ||
323 | setgid | ||
324 | setgroups | ||
325 | sethostname | ||
326 | setitimer | ||
327 | _setjmp | ||
328 | setjmp | ||
329 | setlinebuf | ||
330 | setlocale | ||
331 | setmntent | ||
332 | setpgid | ||
333 | setpgrp | ||
334 | setpriority | ||
335 | setregid | ||
336 | setresgid | ||
337 | setresuid | ||
338 | setreuid | ||
339 | setrlimit | ||
340 | setsid | ||
341 | setsockopt | ||
342 | settimeofday | ||
343 | setuid | ||
344 | setutent | ||
345 | setutxent | ||
346 | setvbuf | ||
347 | setxattr | ||
348 | sgetspent | ||
349 | shmat | ||
350 | shmctl | ||
351 | shmdt | ||
352 | shmget | ||
353 | shutdown | ||
354 | sigaction | ||
355 | sigaddset | ||
356 | sigaltstack | ||
357 | sigblock | ||
358 | sigemptyset | ||
359 | sighold | ||
360 | siginterrupt | ||
361 | signal | ||
362 | sigprocmask | ||
363 | sigset | ||
364 | sigsetmask | ||
365 | sigstack | ||
366 | sigsuspend | ||
367 | sigvec | ||
368 | snprintf | ||
369 | socket | ||
370 | socketpair | ||
371 | sprintf | ||
372 | srand48 | ||
373 | srand | ||
374 | srandom | ||
375 | sscanf | ||
376 | stat | ||
377 | statfs | ||
378 | statvfs | ||
379 | stime | ||
380 | stpcpy | ||
381 | strcasecmp | ||
382 | strcasestr | ||
383 | strchr | ||
384 | strchrnul | ||
385 | strcmp | ||
386 | strcspn | ||
387 | strdup | ||
388 | strerror | ||
389 | strerror_r | ||
390 | strftime | ||
391 | strlen | ||
392 | strncasecmp | ||
393 | strncmp | ||
394 | strndup | ||
395 | strnlen | ||
396 | strpbrk | ||
397 | strptime | ||
398 | strrchr | ||
399 | strsep | ||
400 | strsignal | ||
401 | strspn | ||
402 | strstr | ||
403 | strtod | ||
404 | strtoimax | ||
405 | strtok_r | ||
406 | strtol | ||
407 | strtoll | ||
408 | strtoul | ||
409 | strtoull | ||
410 | strtoumax | ||
411 | strverscmp | ||
412 | strxfrm | ||
413 | symlink | ||
414 | sync | ||
415 | sysconf | ||
416 | sysctl | ||
417 | sysinfo | ||
418 | syslog | ||
419 | _sys_siglist | ||
420 | sys_siglist | ||
421 | system | ||
422 | tcgetattr | ||
423 | tcgetpgrp | ||
424 | tcsetattr | ||
425 | tcsetpgrp | ||
426 | time | ||
427 | timegm | ||
428 | times | ||
429 | timezone | ||
430 | tmpnam | ||
431 | towlower | ||
432 | towupper | ||
433 | truncate | ||
434 | tsearch | ||
435 | ttyname | ||
436 | tzset | ||
437 | ulimit | ||
438 | umask | ||
439 | uname | ||
440 | unlink | ||
441 | unsetenv | ||
442 | unshare | ||
443 | updwtmp | ||
444 | updwtmpx | ||
445 | usleep | ||
446 | ustat | ||
447 | utime | ||
448 | utimes | ||
449 | utmpname | ||
450 | utmpxname | ||
451 | valloc | ||
452 | vasprintf | ||
453 | verrx | ||
454 | vfork | ||
455 | vfprintf | ||
456 | vfscanf | ||
457 | vhangup | ||
458 | vprintf | ||
459 | vsnprintf | ||
460 | vsprintf | ||
461 | wait3 | ||
462 | wait4 | ||
463 | waitpid | ||
464 | wcrtomb | ||
465 | wcscoll | ||
466 | wcsdup | ||
467 | wcslen | ||
468 | wctob | ||
469 | wctomb | ||
470 | wctype | ||
471 | wcwidth | ||
472 | wmemchr | ||
473 | wmemcpy | ||
474 | wmempcpy | ||
diff --git a/meta/recipes-core/glibc/site_config/headers b/meta/recipes-core/glibc/site_config/headers deleted file mode 100644 index 69fedea4e1..0000000000 --- a/meta/recipes-core/glibc/site_config/headers +++ /dev/null | |||
@@ -1,155 +0,0 @@ | |||
1 | aio.h | ||
2 | alloca.h | ||
3 | argz.h | ||
4 | arpa/inet.h | ||
5 | arpa/nameser.h | ||
6 | asm/byteorder.h | ||
7 | asm/ioctls.h | ||
8 | asm/page.h | ||
9 | asm/types.h | ||
10 | assert.h | ||
11 | byteswap.h | ||
12 | ctype.h | ||
13 | dirent.h | ||
14 | dlfcn.h | ||
15 | elf.h | ||
16 | endian.h | ||
17 | err.h | ||
18 | errno.h | ||
19 | execinfo.h | ||
20 | fcntl.h | ||
21 | features.h | ||
22 | float.h | ||
23 | fstab.h | ||
24 | ftw.h | ||
25 | getopt.h | ||
26 | glob.h | ||
27 | grp.h | ||
28 | iconv.h | ||
29 | ifaddrs.h | ||
30 | inttypes.h | ||
31 | langinfo.h | ||
32 | lastlog.h | ||
33 | libgen.h | ||
34 | libintl.h | ||
35 | limits.h | ||
36 | linux/capability.h | ||
37 | linux/fd.h | ||
38 | linux/fs.h | ||
39 | linux/hayesesp.h | ||
40 | linux/hdreg.h | ||
41 | linux/icmp.h | ||
42 | linux/in6.h | ||
43 | linux/joystick.h | ||
44 | linux/ptrace.h | ||
45 | linux/serial.h | ||
46 | linux/sonypi.h | ||
47 | linux/unistd.h | ||
48 | linux/utsname.h | ||
49 | linux/version.h | ||
50 | locale.h | ||
51 | malloc.h | ||
52 | math.h | ||
53 | mcheck.h | ||
54 | memory.h | ||
55 | mntent.h | ||
56 | mqueue.h | ||
57 | netdb.h | ||
58 | net/if.h | ||
59 | netinet/ether.h | ||
60 | netinet/in.h | ||
61 | netinet/ip6.h | ||
62 | netinet/ip.h | ||
63 | netinet/tcp.h | ||
64 | netinet/udp.h | ||
65 | netipx/ipx.h | ||
66 | net/route.h | ||
67 | paths.h | ||
68 | poll.h | ||
69 | pthread.h | ||
70 | pty.h | ||
71 | pwd.h | ||
72 | regex.h | ||
73 | resolv.h | ||
74 | rpc/rpc.h | ||
75 | rpc/types.h | ||
76 | sched.h | ||
77 | scsi/scsi.h | ||
78 | search.h | ||
79 | semaphore.h | ||
80 | setjmp.h | ||
81 | sgtty.h | ||
82 | shadow.h | ||
83 | signal.h | ||
84 | stdarg.h | ||
85 | stdbool.h | ||
86 | stdc | ||
87 | stddef.h | ||
88 | stdint.h | ||
89 | stdio.h | ||
90 | stdlib.h | ||
91 | string.h | ||
92 | strings.h | ||
93 | stropts.h | ||
94 | sys/bitypes.h | ||
95 | sys/cdefs.h | ||
96 | sys/dir.h | ||
97 | sys/epoll.h | ||
98 | sysexits.h | ||
99 | sys/fcntl.h | ||
100 | sys/file.h | ||
101 | sys/fsuid.h | ||
102 | sys/ioctl.h | ||
103 | sys/ipc.h | ||
104 | syslog.h | ||
105 | sys/mman.h | ||
106 | sys/mount.h | ||
107 | sys/mtio.h | ||
108 | sys/param.h | ||
109 | sys/poll.h | ||
110 | sys/prctl.h | ||
111 | sys/ptrace.h | ||
112 | sys/queue.h | ||
113 | sys/reg.h | ||
114 | sys/resource.h | ||
115 | sys/select.h | ||
116 | sys/sem.h | ||
117 | sys/shm.h | ||
118 | sys/signal.h | ||
119 | sys/socket.h | ||
120 | sys/socketvar.h | ||
121 | sys/soundcard.h | ||
122 | sys/statfs.h | ||
123 | sys/stat.h | ||
124 | sys/statvfs.h | ||
125 | sys/stropts.h | ||
126 | sys/swap.h | ||
127 | sys/sysctl.h | ||
128 | sys/sysinfo.h | ||
129 | sys/sysmacros.h | ||
130 | sys/termios.h | ||
131 | sys/timeb.h | ||
132 | sys/time.h | ||
133 | sys/times.h | ||
134 | sys/timex.h | ||
135 | sys/types.h | ||
136 | sys/uio.h | ||
137 | sys/un.h | ||
138 | sys/unistd.h | ||
139 | sys/user.h | ||
140 | sys/utsname.h | ||
141 | sys/vfs.h | ||
142 | sys/wait.h | ||
143 | termio.h | ||
144 | termios.h | ||
145 | time.h | ||
146 | ttyent.h | ||
147 | ulimit.h | ||
148 | unistd.h | ||
149 | ustat.h | ||
150 | utime.h | ||
151 | utmp.h | ||
152 | utmpx.h | ||
153 | values.h | ||
154 | wchar.h | ||
155 | wctype.h | ||
diff --git a/meta/recipes-core/glibc/site_config/types b/meta/recipes-core/glibc/site_config/types deleted file mode 100644 index 178bd85a00..0000000000 --- a/meta/recipes-core/glibc/site_config/types +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | char | ||
2 | char * | ||
3 | double | ||
4 | float | ||
5 | int | ||
6 | long | ||
7 | long double | ||
8 | long int | ||
9 | long long | ||
10 | long long int | ||
11 | short | ||
12 | short int | ||
13 | signed char | ||
14 | unsigned char | ||
15 | unsigned int | ||
16 | unsigned long | ||
17 | unsigned long int | ||
18 | unsigned long long int | ||
19 | unsigned short | ||
20 | unsigned short int | ||
21 | void * | ||