Print this page
uts: Allow for address space randomisation.
Randomise the base addresses of shared objects, non-fixed mappings, the
stack and the heap. Introduce a service, svc:/system/process-security,
and a tool psecflags(1) to control and observe it
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/lib/libc/sparcv9/Makefile.com
+++ new/usr/src/lib/libc/sparcv9/Makefile.com
1 1 #
2 2 # CDDL HEADER START
3 3 #
4 4 # The contents of this file are subject to the terms of the
5 5 # Common Development and Distribution License (the "License").
6 6 # You may not use this file except in compliance with the License.
7 7 #
8 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 # or http://www.opensolaris.org/os/licensing.
10 10 # See the License for the specific language governing permissions
11 11 # and limitations under the License.
12 12 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 # If applicable, add the following below this CDDL HEADER, with the
16 16 # fields enclosed by brackets "[]" replaced with your own identifying
17 17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 21 #
22 22 # Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
23 23 # Copyright (c) 2015, Joyent, Inc. All rights reserved.
24 24 # Copyright (c) 2013, OmniTI Computer Consulting, Inc. All rights reserved.
25 25 # Copyright 2013 Garrett D'Amore <garrett@damore.org>
26 26 #
27 27 # Copyright 2011 Nexenta Systems, Inc. All rights reserved.
28 28 # Use is subject to license terms.
29 29 #
30 30
31 31 LIBCDIR= $(SRC)/lib/libc
32 32 LIB_PIC= libc_pic.a
33 33 VERS= .1
34 34 CPP= /usr/lib/cpp
35 35 TARGET_ARCH= sparc
36 36
37 37 # objects are grouped by source directory
38 38
39 39 # Symbol capabilities objects.
40 40 EXTPICS= \
41 41 $(LIBCDIR)/capabilities/sun4u/sparcv9/pics/symcap.o \
42 42 $(LIBCDIR)/capabilities/sun4u-opl/sparcv9/pics/symcap.o \
43 43 $(LIBCDIR)/capabilities/sun4u-us3-hwcap1/sparcv9/pics/symcap.o \
44 44 $(LIBCDIR)/capabilities/sun4u-us3-hwcap2/sparcv9/pics/symcap.o \
45 45 $(LIBCDIR)/capabilities/sun4v-hwcap1/sparcv9/pics/symcap.o \
46 46 $(LIBCDIR)/capabilities/sun4v-hwcap2/sparcv9/pics/symcap.o
47 47
48 48 # local objects
49 49 STRETS=
50 50
51 51 CRTOBJS= \
52 52 __align_cpy_2.o \
53 53 __align_cpy_4.o \
54 54 __align_cpy_8.o \
55 55 _ftou.o \
56 56 cerror.o
57 57
58 58 DYNOBJS=
59 59
60 60 FPOBJS= \
61 61 _D_cplx_div.o \
62 62 _D_cplx_div_ix.o \
63 63 _D_cplx_div_rx.o \
64 64 _D_cplx_mul.o \
65 65 _F_cplx_div.o \
66 66 _F_cplx_div_ix.o \
67 67 _F_cplx_div_rx.o \
68 68 _F_cplx_mul.o \
69 69 _Q_add.o \
70 70 _Q_cmp.o \
71 71 _Q_cmpe.o \
72 72 _Q_cplx_div.o \
73 73 _Q_cplx_div_ix.o \
74 74 _Q_cplx_div_rx.o \
75 75 _Q_cplx_lr_div.o \
76 76 _Q_cplx_lr_div_ix.o \
77 77 _Q_cplx_lr_div_rx.o \
78 78 _Q_cplx_lr_mul.o \
79 79 _Q_cplx_mul.o \
80 80 _Q_div.o \
81 81 _Q_dtoq.o \
82 82 _Q_fcc.o \
83 83 _Q_itoq.o \
84 84 _Q_mul.o \
85 85 _Q_neg.o \
86 86 _Q_qtod.o \
87 87 _Q_qtoi.o \
88 88 _Q_qtos.o \
89 89 _Q_qtou.o \
90 90 _Q_scl.o \
91 91 _Q_sqrt.o \
92 92 _Q_stoq.o \
93 93 _Q_sub.o \
94 94 _Q_utoq.o
95 95
96 96 FPOBJS64= \
97 97 _Qp_qtox.o \
98 98 _Qp_qtoux.o \
99 99 _Qp_xtoq.o \
100 100 _Qp_uxtoq.o \
101 101 __dtoul.o \
102 102 __ftoul.o
103 103
104 104 FPASMOBJS= \
105 105 _Q_get_rp_rd.o \
106 106 __quad_mag64.o \
107 107 fpgetmask.o \
108 108 fpgetrnd.o \
109 109 fpgetsticky.o \
110 110 fpsetmask.o \
111 111 fpsetrnd.o \
112 112 fpsetsticky.o
113 113
114 114 $(__GNUC)FPASMOBJS += \
115 115 __quad.o
116 116
117 117 ATOMICOBJS= \
118 118 atomic.o
119 119
120 120 CHACHAOBJS= \
121 121 chacha.o
122 122
123 123 XATTROBJS= \
124 124 xattr_common.o
125 125
126 126 COMOBJS= \
127 127 bcmp.o \
128 128 bcopy.o \
129 129 bsearch.o \
130 130 bzero.o \
131 131 memccpy.o \
132 132 qsort.o \
133 133 strtol.o \
134 134 strtoul.o \
135 135 strtoll.o \
136 136 strtoull.o
137 137
138 138 GENOBJS= \
139 139 _getsp.o \
140 140 _xregs_clrptr.o \
141 141 abs.o \
142 142 alloca.o \
143 143 arc4random.o \
144 144 arc4random_uniform.o \
145 145 ascii_strcasecmp.o \
146 146 byteorder.o \
147 147 cuexit.o \
148 148 ecvt.o \
149 149 getctxt.o \
150 150 lock.o \
151 151 makectxt.o \
152 152 memchr.o \
153 153 memcmp.o \
154 154 new_list.o \
155 155 setjmp.o \
156 156 siginfolst.o \
157 157 siglongjmp.o \
158 158 smt_pause.o \
159 159 sparc_data.o \
160 160 strchr.o \
161 161 strcmp.o \
162 162 strlcpy.o \
163 163 strncmp.o \
164 164 strncpy.o \
165 165 strnlen.o \
166 166 swapctxt.o \
167 167 sync_instruction_memory.o
168 168
169 169 # Preserved solely to ease maintenance of 32-bit and 64-bit library builds
170 170 # This macro should ALWAYS be empty; native APIs are already 'large file'.
171 171 COMSYSOBJS64=
172 172
173 173 SYSOBJS64=
174 174
175 175 COMSYSOBJS= \
176 176 __clock_timer.o \
177 177 __getloadavg.o \
178 178 __rusagesys.o \
179 179 __signotify.o \
180 180 __sigrt.o \
181 181 __time.o \
182 182 _lgrp_home_fast.o \
183 183 _lgrpsys.o \
184 184 _nfssys.o \
185 185 _portfs.o \
186 186 _pset.o \
187 187 _rpcsys.o \
188 188 _sigaction.o \
189 189 _so_accept.o \
190 190 _so_bind.o \
191 191 _so_connect.o \
192 192 _so_getpeername.o \
193 193 _so_getsockname.o \
194 194 _so_getsockopt.o \
195 195 _so_listen.o \
196 196 _so_recv.o \
197 197 _so_recvfrom.o \
198 198 _so_recvmsg.o \
199 199 _so_send.o \
200 200 _so_sendmsg.o \
201 201 _so_sendto.o \
202 202 _so_setsockopt.o \
203 203 _so_shutdown.o \
204 204 _so_socket.o \
205 205 _so_socketpair.o \
206 206 _sockconfig.o \
207 207 acct.o \
208 208 acl.o \
209 209 adjtime.o \
210 210 alarm.o \
211 211 brk.o \
212 212 chdir.o \
213 213 chroot.o \
214 214 cladm.o \
215 215 close.o \
216 216 execve.o \
217 217 exit.o \
218 218 facl.o \
219 219 fchdir.o \
220 220 fchroot.o \
221 221 fdsync.o \
222 222 fpathconf.o \
223 223 fstatfs.o \
224 224 fstatvfs.o \
225 225 getcpuid.o \
226 226 getdents.o \
227 227 getegid.o \
228 228 geteuid.o \
229 229 getgid.o \
230 230 getgroups.o \
231 231 gethrtime.o \
232 232 getitimer.o \
233 233 getmsg.o \
234 234 getpid.o \
235 235 getpmsg.o \
236 236 getppid.o \
237 237 getrandom.o \
238 238 getrlimit.o \
239 239 getuid.o \
240 240 gtty.o \
241 241 install_utrap.o \
242 242 ioctl.o \
243 243 kaio.o \
244 244 kill.o \
245 245 llseek.o \
246 246 lseek.o \
247 247 memcntl.o \
248 248 mincore.o \
249 249 mmap.o \
250 250 mmapobjsys.o \
251 251 modctl.o \
252 252 mount.o \
253 253 mprotect.o \
254 254 munmap.o \
255 255 nice.o \
256 256 ntp_adjtime.o \
257 257 ntp_gettime.o \
258 258 p_online.o \
259 259 pathconf.o \
↓ open down ↓ |
259 lines elided |
↑ open up ↑ |
260 260 pause.o \
261 261 pcsample.o \
262 262 pipe2.o \
263 263 pollsys.o \
264 264 pread.o \
265 265 preadv.o \
266 266 priocntlset.o \
267 267 processor_bind.o \
268 268 processor_info.o \
269 269 profil.o \
270 + psecflagsset.o \
270 271 putmsg.o \
271 272 putpmsg.o \
272 273 pwrite.o \
273 274 pwritev.o \
274 275 read.o \
275 276 readv.o \
276 277 resolvepath.o \
277 278 seteguid.o \
278 279 setgid.o \
279 280 setgroups.o \
280 281 setitimer.o \
281 282 setreid.o \
282 283 setrlimit.o \
283 284 setuid.o \
284 285 sigaltstk.o \
285 286 sigprocmsk.o \
286 287 sigsendset.o \
287 288 sigsuspend.o \
288 289 statfs.o \
289 290 statvfs.o \
290 291 stty.o \
291 292 sync.o \
292 293 sysconfig.o \
293 294 sysfs.o \
294 295 sysinfo.o \
295 296 syslwp.o \
296 297 times.o \
297 298 ulimit.o \
298 299 umask.o \
299 300 umount2.o \
300 301 utssys.o \
301 302 uucopy.o \
302 303 vhangup.o \
303 304 waitid.o \
304 305 write.o \
305 306 writev.o \
306 307 yield.o
307 308
308 309 SYSOBJS= \
309 310 __clock_gettime.o \
310 311 __getcontext.o \
311 312 __uadmin.o \
312 313 _lwp_mutex_unlock.o \
313 314 _stack_grow.o \
314 315 door.o \
315 316 forkx.o \
316 317 forkallx.o \
317 318 gettimeofday.o \
318 319 sparc_utrap_install.o \
319 320 syscall.o \
320 321 tls_get_addr.o \
321 322 uadmin.o \
322 323 umount.o \
323 324 uname.o \
324 325 vforkx.o
325 326
326 327 # Preserved solely to ease maintenance of 32-bit and 64-bit library builds
327 328 # This macro should ALWAYS be empty; native APIs are already 'large file'.
328 329 PORTGEN64=
329 330
330 331 # objects from source under $(LIBCDIR)/port
331 332 PORTFP= \
332 333 __flt_decim.o \
333 334 __flt_rounds.o \
334 335 __tbl_10_b.o \
335 336 __tbl_10_h.o \
336 337 __tbl_10_s.o \
337 338 __tbl_2_b.o \
338 339 __tbl_2_h.o \
339 340 __tbl_2_s.o \
340 341 __tbl_fdq.o \
341 342 __tbl_tens.o \
342 343 __x_power.o \
343 344 _base_sup.o \
344 345 aconvert.o \
345 346 decimal_bin.o \
346 347 double_decim.o \
347 348 econvert.o \
348 349 fconvert.o \
349 350 file_decim.o \
350 351 finite.o \
351 352 fp_data.o \
352 353 func_decim.o \
353 354 gconvert.o \
354 355 hex_bin.o \
355 356 ieee_globals.o \
356 357 pack_float.o \
357 358 sigfpe.o \
358 359 string_decim.o
359 360
360 361 PORTGEN= \
361 362 _env_data.o \
362 363 _xftw.o \
363 364 a64l.o \
364 365 abort.o \
365 366 addsev.o \
366 367 ascii_strncasecmp.o \
367 368 assert.o \
368 369 attrat.o \
369 370 atof.o \
370 371 atoi.o \
371 372 atol.o \
372 373 atoll.o \
373 374 attropen.o \
374 375 atexit.o \
375 376 atfork.o \
376 377 basename.o \
377 378 calloc.o \
378 379 catgets.o \
379 380 catopen.o \
380 381 cfgetispeed.o \
381 382 cfgetospeed.o \
382 383 cfree.o \
383 384 cfsetispeed.o \
384 385 cfsetospeed.o \
385 386 cftime.o \
386 387 clock.o \
387 388 closedir.o \
388 389 closefrom.o \
389 390 confstr.o \
390 391 crypt.o \
391 392 csetlen.o \
392 393 ctime.o \
393 394 ctime_r.o \
394 395 daemon.o \
395 396 deflt.o \
396 397 directio.o \
397 398 dirname.o \
398 399 div.o \
399 400 drand48.o \
400 401 dup.o \
401 402 env_data.o \
402 403 err.o \
403 404 errno.o \
404 405 euclen.o \
405 406 event_port.o \
406 407 execvp.o \
407 408 explicit_bzero.o \
408 409 fattach.o \
409 410 fdetach.o \
410 411 fdopendir.o \
411 412 ffs.o \
412 413 fls.o \
413 414 fmtmsg.o \
414 415 ftime.o \
415 416 ftok.o \
416 417 ftw.o \
417 418 gcvt.o \
418 419 getauxv.o \
419 420 getcwd.o \
420 421 getdate_err.o \
421 422 getdtblsize.o \
422 423 getentropy.o \
423 424 getenv.o \
424 425 getexecname.o \
425 426 getgrnam.o \
426 427 getgrnam_r.o \
427 428 gethostid.o \
428 429 gethostname.o \
429 430 gethz.o \
430 431 getisax.o \
431 432 getloadavg.o \
432 433 getlogin.o \
433 434 getmntent.o \
434 435 getnetgrent.o \
435 436 get_nprocs.o \
436 437 getopt.o \
437 438 getopt_long.o \
438 439 getpagesize.o \
439 440 getpw.o \
440 441 getpwnam.o \
441 442 getpwnam_r.o \
442 443 getrusage.o \
443 444 getspent.o \
444 445 getspent_r.o \
445 446 getsubopt.o \
446 447 gettxt.o \
447 448 getusershell.o \
448 449 getut.o \
449 450 getutx.o \
450 451 getvfsent.o \
451 452 getwd.o \
452 453 getwidth.o \
453 454 getxby_door.o \
454 455 gtxt.o \
455 456 hsearch.o \
456 457 iconv.o \
457 458 imaxabs.o \
458 459 imaxdiv.o \
459 460 index.o \
460 461 initgroups.o \
461 462 insque.o \
462 463 isaexec.o \
463 464 isastream.o \
464 465 isatty.o \
465 466 killpg.o \
466 467 klpdlib.o \
467 468 l64a.o \
468 469 lckpwdf.o \
469 470 lconstants.o \
470 471 ldivide.o \
471 472 lexp10.o \
472 473 lfind.o \
473 474 lfmt.o \
474 475 lfmt_log.o \
475 476 lldiv.o \
476 477 llog10.o \
477 478 lltostr.o \
478 479 lmath.o \
479 480 localtime.o \
480 481 lsearch.o \
481 482 madvise.o \
482 483 malloc.o \
483 484 memalign.o \
484 485 memmem.o \
485 486 mkdev.o \
486 487 mkdtemp.o \
487 488 mkfifo.o \
488 489 mkstemp.o \
489 490 mktemp.o \
490 491 mlock.o \
491 492 mlockall.o \
492 493 mon.o \
493 494 msync.o \
494 495 munlock.o \
495 496 munlockall.o \
496 497 ndbm.o \
497 498 nftw.o \
498 499 nlspath_checks.o \
499 500 nsparse.o \
500 501 nss_common.o \
501 502 nss_dbdefs.o \
502 503 nss_deffinder.o \
503 504 opendir.o \
504 505 opt_data.o \
505 506 perror.o \
506 507 pfmt.o \
507 508 pfmt_data.o \
508 509 pfmt_print.o \
↓ open down ↓ |
229 lines elided |
↑ open up ↑ |
509 510 pipe.o \
510 511 plock.o \
511 512 poll.o \
512 513 posix_fadvise.o \
513 514 posix_fallocate.o \
514 515 posix_madvise.o \
515 516 posix_memalign.o \
516 517 priocntl.o \
517 518 privlib.o \
518 519 priv_str_xlate.o \
520 + psecflags.o \
519 521 psiginfo.o \
520 522 psignal.o \
521 523 pt.o \
522 524 putpwent.o \
523 525 putspent.o \
524 526 raise.o \
525 527 rand.o \
526 528 random.o \
527 529 rctlops.o \
528 530 readdir.o \
529 531 readdir_r.o \
530 532 realpath.o \
531 533 reboot.o \
532 534 regexpr.o \
533 535 remove.o \
534 536 rewinddir.o \
535 537 rindex.o \
536 538 scandir.o \
537 539 seekdir.o \
538 540 select.o \
539 541 setlabel.o \
540 542 setpriority.o \
541 543 settimeofday.o \
542 544 sh_locks.o \
543 545 sigflag.o \
544 546 siglist.o \
545 547 sigsend.o \
546 548 sigsetops.o \
547 549 ssignal.o \
548 550 stack.o \
549 551 stpcpy.o \
550 552 stpncpy.o \
551 553 str2sig.o \
552 554 strcase_charmap.o \
553 555 strcat.o \
554 556 strchrnul.o \
555 557 strcspn.o \
556 558 strdup.o \
557 559 strerror.o \
558 560 strlcat.o \
559 561 strncat.o \
560 562 strndup.o \
561 563 strpbrk.o \
562 564 strrchr.o \
563 565 strsep.o \
564 566 strsignal.o \
565 567 strspn.o \
566 568 strstr.o \
567 569 strtod.o \
568 570 strtoimax.o \
569 571 strtok.o \
570 572 strtok_r.o \
571 573 strtoumax.o \
572 574 swab.o \
573 575 swapctl.o \
574 576 sysconf.o \
575 577 syslog.o \
576 578 tcdrain.o \
577 579 tcflow.o \
578 580 tcflush.o \
579 581 tcgetattr.o \
580 582 tcgetpgrp.o \
581 583 tcgetsid.o \
582 584 tcsendbreak.o \
583 585 tcsetattr.o \
584 586 tcsetpgrp.o \
585 587 tell.o \
586 588 telldir.o \
587 589 tfind.o \
588 590 time_data.o \
589 591 time_gdata.o \
590 592 tls_data.o \
591 593 truncate.o \
592 594 tsdalloc.o \
593 595 tsearch.o \
594 596 ttyname.o \
595 597 ttyslot.o \
596 598 ualarm.o \
597 599 ucred.o \
598 600 valloc.o \
599 601 vlfmt.o \
600 602 vpfmt.o \
601 603 waitpid.o \
602 604 walkstack.o \
603 605 wdata.o \
604 606 xgetwidth.o \
605 607 xpg4.o \
606 608 xpg6.o
607 609
608 610 PORTPRINT_W= \
609 611 doprnt_w.o
610 612
611 613 PORTPRINT= \
612 614 asprintf.o \
613 615 doprnt.o \
614 616 fprintf.o \
615 617 printf.o \
616 618 snprintf.o \
617 619 sprintf.o \
618 620 vfprintf.o \
619 621 vprintf.o \
620 622 vsnprintf.o \
621 623 vsprintf.o \
622 624 vwprintf.o \
623 625 wprintf.o
624 626
625 627 # Preserved solely to ease maintenance of 32-bit and 64-bit library builds
626 628 # This macro should ALWAYS be empty; native APIs are already 'large file'.
627 629 PORTSTDIO64=
628 630
629 631 PORTSTDIO_W= \
630 632 doscan_w.o
631 633
632 634 PORTSTDIO= \
633 635 __extensions.o \
634 636 _endopen.o \
635 637 _filbuf.o \
636 638 _findbuf.o \
637 639 _flsbuf.o \
638 640 _wrtchk.o \
639 641 clearerr.o \
640 642 ctermid.o \
641 643 ctermid_r.o \
642 644 cuserid.o \
643 645 data.o \
644 646 doscan.o \
645 647 fdopen.o \
646 648 feof.o \
647 649 ferror.o \
648 650 fgetc.o \
649 651 fgets.o \
650 652 fileno.o \
651 653 flockf.o \
652 654 flush.o \
653 655 fopen.o \
654 656 fpos.o \
655 657 fputc.o \
656 658 fputs.o \
657 659 fread.o \
658 660 fseek.o \
659 661 fseeko.o \
660 662 ftell.o \
661 663 ftello.o \
662 664 fwrite.o \
663 665 getc.o \
664 666 getchar.o \
665 667 getline.o \
666 668 getpass.o \
667 669 gets.o \
668 670 getw.o \
669 671 popen.o \
670 672 putc.o \
671 673 putchar.o \
672 674 puts.o \
673 675 putw.o \
674 676 rewind.o \
675 677 scanf.o \
676 678 setbuf.o \
677 679 setbuffer.o \
678 680 setvbuf.o \
679 681 system.o \
680 682 tempnam.o \
681 683 tmpfile.o \
682 684 tmpnam_r.o \
683 685 ungetc.o \
684 686 mse.o \
685 687 vscanf.o \
686 688 vwscanf.o \
687 689 wscanf.o
688 690
689 691 PORTI18N= \
690 692 getwchar.o \
691 693 putwchar.o \
692 694 putws.o \
693 695 strtows.o \
694 696 wcsnlen.o \
695 697 wcstoimax.o \
696 698 wcstol.o \
697 699 wcstoul.o \
698 700 wcswcs.o \
699 701 wscat.o \
700 702 wschr.o \
701 703 wscmp.o \
702 704 wscpy.o \
703 705 wscspn.o \
704 706 wsdup.o \
705 707 wslen.o \
706 708 wsncat.o \
707 709 wsncmp.o \
708 710 wsncpy.o \
709 711 wspbrk.o \
710 712 wsprintf.o \
711 713 wsrchr.o \
712 714 wsscanf.o \
713 715 wsspn.o \
714 716 wstod.o \
715 717 wstok.o \
716 718 wstol.o \
717 719 wstoll.o \
718 720 wsxfrm.o \
719 721 wmemchr.o \
720 722 wmemcmp.o \
721 723 wmemcpy.o \
722 724 wmemmove.o \
723 725 wmemset.o \
724 726 wcsstr.o \
725 727 gettext.o \
726 728 gettext_real.o \
727 729 gettext_util.o \
728 730 gettext_gnu.o \
729 731 plural_parser.o \
730 732 wdresolve.o \
731 733 _ctype.o \
732 734 isascii.o \
733 735 toascii.o
734 736
735 737 PORTI18N_COND= \
736 738 wcstol_longlong.o \
737 739 wcstoul_longlong.o
738 740
739 741 PORTLOCALE= \
740 742 big5.o \
741 743 btowc.o \
742 744 collate.o \
743 745 collcmp.o \
744 746 euc.o \
745 747 fnmatch.o \
746 748 fgetwc.o \
747 749 fgetws.o \
748 750 fix_grouping.o \
749 751 fputwc.o \
750 752 fputws.o \
751 753 fwide.o \
752 754 gb18030.o \
753 755 gb2312.o \
754 756 gbk.o \
755 757 getdate.o \
756 758 isdigit.o \
757 759 iswctype.o \
758 760 ldpart.o \
759 761 lmessages.o \
760 762 lnumeric.o \
761 763 lmonetary.o \
762 764 localeconv.o \
763 765 localeimpl.o \
764 766 mbftowc.o \
765 767 mblen.o \
766 768 mbrlen.o \
767 769 mbrtowc.o \
768 770 mbsinit.o \
769 771 mbsnrtowcs.o \
770 772 mbsrtowcs.o \
771 773 mbstowcs.o \
772 774 mbtowc.o \
773 775 mskanji.o \
774 776 nextwctype.o \
775 777 nl_langinfo.o \
776 778 none.o \
777 779 regcomp.o \
778 780 regfree.o \
779 781 regerror.o \
780 782 regexec.o \
781 783 rune.o \
782 784 runetype.o \
783 785 setlocale.o \
784 786 setrunelocale.o \
785 787 strcasecmp.o \
786 788 strcasestr.o \
787 789 strcoll.o \
788 790 strfmon.o \
789 791 strftime.o \
790 792 strncasecmp.o \
791 793 strptime.o \
792 794 strxfrm.o \
793 795 table.o \
794 796 timelocal.o \
795 797 tolower.o \
796 798 towlower.o \
797 799 ungetwc.o \
798 800 utf8.o \
799 801 wcrtomb.o \
800 802 wcscasecmp.o \
801 803 wcscoll.o \
802 804 wcsftime.o \
803 805 wcsnrtombs.o \
804 806 wcsrtombs.o \
805 807 wcstombs.o \
806 808 wcswidth.o \
807 809 wcsxfrm.o \
808 810 wctob.o \
809 811 wctomb.o \
810 812 wctrans.o \
811 813 wctype.o \
812 814 wcwidth.o \
813 815 wscol.o
814 816
815 817 AIOOBJS= \
816 818 aio.o \
817 819 aio_alloc.o \
818 820 posix_aio.o
819 821
820 822 RTOBJS= \
821 823 clock_timer.o \
822 824 mqueue.o \
823 825 pos4obj.o \
824 826 sched.o \
825 827 sem.o \
826 828 shm.o \
827 829 sigev_thread.o
828 830
829 831 TPOOLOBJS= \
830 832 thread_pool.o
831 833
832 834 THREADSOBJS= \
833 835 alloc.o \
834 836 assfail.o \
835 837 cancel.o \
836 838 door_calls.o \
837 839 tmem.o \
838 840 pthr_attr.o \
839 841 pthr_barrier.o \
840 842 pthr_cond.o \
841 843 pthr_mutex.o \
842 844 pthr_rwlock.o \
843 845 pthread.o \
844 846 rwlock.o \
845 847 scalls.o \
846 848 sema.o \
847 849 sigaction.o \
848 850 spawn.o \
849 851 synch.o \
850 852 tdb_agent.o \
851 853 thr.o \
852 854 thread_interface.o \
853 855 tls.o \
854 856 tsd.o
855 857
856 858 THREADSMACHOBJS= \
857 859 machdep.o
858 860
859 861 THREADSASMOBJS= \
860 862 asm_subr.o
861 863
862 864 UNICODEOBJS= \
863 865 u8_textprep.o \
864 866 uconv.o
865 867
866 868 UNWINDMACHOBJS= \
867 869 unwind.o
868 870
869 871 UNWINDASMOBJS= \
870 872 unwind_frame.o
871 873
872 874 # Preserved solely to ease maintenance of 32-bit and 64-bit library builds
873 875 # This macro should ALWAYS be empty; native APIs are already 'large file'.
874 876 PORTSYS64=
875 877
876 878 PORTSYS= \
877 879 _autofssys.o \
878 880 access.o \
879 881 acctctl.o \
880 882 bsd_signal.o \
881 883 chmod.o \
882 884 chown.o \
883 885 corectl.o \
884 886 exacctsys.o \
885 887 execl.o \
886 888 execle.o \
887 889 execv.o \
888 890 fcntl.o \
889 891 getpagesizes.o \
890 892 getpeerucred.o \
891 893 inst_sync.o \
892 894 issetugid.o \
893 895 label.o \
894 896 link.o \
895 897 lockf.o \
896 898 lwp.o \
897 899 lwp_cond.o \
898 900 lwp_rwlock.o \
899 901 lwp_sigmask.o \
900 902 meminfosys.o \
901 903 mkdir.o \
902 904 mknod.o \
903 905 msgsys.o \
904 906 nfssys.o \
905 907 open.o \
906 908 pgrpsys.o \
907 909 posix_sigwait.o \
908 910 ppriv.o \
909 911 psetsys.o \
910 912 rctlsys.o \
911 913 readlink.o \
912 914 rename.o \
913 915 sbrk.o \
914 916 semsys.o \
915 917 set_errno.o \
916 918 sharefs.o \
917 919 shmsys.o \
918 920 sidsys.o \
919 921 siginterrupt.o \
920 922 signal.o \
921 923 sigpending.o \
922 924 sigstack.o \
923 925 stat.o \
924 926 symlink.o \
925 927 tasksys.o \
926 928 time.o \
927 929 time_util.o \
928 930 ucontext.o \
929 931 unlink.o \
930 932 ustat.o \
931 933 utimesys.o \
932 934 zone.o
933 935
934 936 PORTREGEX= \
935 937 glob.o \
936 938 regcmp.o \
937 939 regex.o \
938 940 wordexp.o
939 941
940 942 VALUES= values-Xa.o
941 943
942 944 MOSTOBJS= \
943 945 $(STRETS) \
944 946 $(CRTOBJS) \
945 947 $(DYNOBJS) \
946 948 $(FPOBJS) \
947 949 $(FPOBJS64) \
948 950 $(FPASMOBJS) \
949 951 $(ATOMICOBJS) \
950 952 $(CHACHAOBJS) \
951 953 $(XATTROBJS) \
952 954 $(COMOBJS) \
953 955 $(GENOBJS) \
954 956 $(PRFOBJS) \
955 957 $(PORTFP) \
956 958 $(PORTGEN) \
957 959 $(PORTGEN64) \
958 960 $(PORTI18N) \
959 961 $(PORTI18N_COND) \
960 962 $(PORTLOCALE) \
961 963 $(PORTPRINT) \
962 964 $(PORTPRINT_W) \
963 965 $(PORTREGEX) \
964 966 $(PORTSTDIO) \
965 967 $(PORTSTDIO64) \
966 968 $(PORTSTDIO_W) \
967 969 $(PORTSYS) \
968 970 $(PORTSYS64) \
969 971 $(AIOOBJS) \
970 972 $(RTOBJS) \
971 973 $(TPOOLOBJS) \
972 974 $(THREADSOBJS) \
973 975 $(THREADSMACHOBJS) \
974 976 $(THREADSASMOBJS) \
975 977 $(UNICODEOBJS) \
976 978 $(UNWINDMACHOBJS) \
977 979 $(UNWINDASMOBJS) \
978 980 $(COMSYSOBJS) \
979 981 $(SYSOBJS) \
980 982 $(COMSYSOBJS64) \
981 983 $(SYSOBJS64) \
982 984 $(VALUES)
983 985
984 986 TRACEOBJS= \
985 987 plockstat.o
986 988
987 989 # NOTE: libc.so.1 must be linked with the minimal crti.o and crtn.o
988 990 # modules whose source is provided in the $(SRC)/lib/common directory.
989 991 # This must be done because otherwise the Sun C compiler would insert
990 992 # its own versions of these modules and those versions contain code
991 993 # to call out to C++ initialization functions. Such C++ initialization
992 994 # functions can call back into libc before thread initialization is
993 995 # complete and this leads to segmentation violations and other problems.
994 996 # Since libc contains no C++ code, linking with the minimal crti.o and
995 997 # crtn.o modules is safe and avoids the problems described above.
996 998 OBJECTS= $(CRTI) $(MOSTOBJS) $(CRTN)
997 999 CRTSRCS= ../../common/sparcv9
998 1000
999 1001 # include common library definitions
1000 1002 include $(SRC)/lib/Makefile.lib
1001 1003 include $(SRC)/lib/Makefile.lib.64
1002 1004
1003 1005 # we need to override the default SONAME here because we might
1004 1006 # be building a variant object (still libc.so.1, but different filename)
1005 1007 SONAME = libc.so.1
1006 1008
1007 1009 CFLAGS64 += $(CCVERBOSE)
1008 1010
1009 1011 # This is necessary to avoid problems with calling _ex_unwind().
1010 1012 # We probably don't want any inlining anyway.
1011 1013 CFLAGS64 += -xinline=
1012 1014
1013 1015 CERRWARN += -_gcc=-Wno-parentheses
1014 1016 CERRWARN += -_gcc=-Wno-switch
1015 1017 CERRWARN += -_gcc=-Wno-uninitialized
1016 1018 CERRWARN += -_gcc=-Wno-unused-value
1017 1019 CERRWARN += -_gcc=-Wno-unused-label
1018 1020 CERRWARN += -_gcc=-Wno-unused-variable
1019 1021 CERRWARN += -_gcc=-Wno-type-limits
1020 1022 CERRWARN += -_gcc=-Wno-char-subscripts
1021 1023 CERRWARN += -_gcc=-Wno-clobbered
1022 1024 CERRWARN += -_gcc=-Wno-unused-function
1023 1025 CERRWARN += -_gcc=-Wno-address
1024 1026
1025 1027 # Setting THREAD_DEBUG = -DTHREAD_DEBUG (make THREAD_DEBUG=-DTHREAD_DEBUG ...)
1026 1028 # enables ASSERT() checking in the threads portion of the library.
1027 1029 # This is automatically enabled for DEBUG builds, not for non-debug builds.
1028 1030 THREAD_DEBUG =
1029 1031 $(NOT_RELEASE_BUILD)THREAD_DEBUG = -DTHREAD_DEBUG
1030 1032
1031 1033 # Make string literals read-only to save memory.
1032 1034 CFLAGS64 += $(XSTRCONST)
1033 1035
1034 1036 ALTPICS= $(TRACEOBJS:%=pics/%)
1035 1037
1036 1038 $(DYNLIB) := BUILD.SO = $(LD) -o $@ -G $(DYNFLAGS) $(PICS) $(ALTPICS) $(EXTPICS)
1037 1039
1038 1040 MAPFILES = $(LIBCDIR)/port/mapfile-vers
1039 1041
1040 1042 sparcv9_C_PICFLAGS= -K PIC
1041 1043 CFLAGS64 += $(EXTN_CFLAGS)
1042 1044 CPPFLAGS= -D_REENTRANT -Dsparc $(EXTN_CPPFLAGS) $(THREAD_DEBUG) \
1043 1045 -I$(LIBCBASE)/inc -I$(LIBCDIR)/inc $(CPPFLAGS.master)
1044 1046 ASFLAGS= $(EXTN_ASFLAGS) -K PIC -P -D__STDC__ -D_ASM -D__sparcv9 $(CPPFLAGS) \
1045 1047 $(sparcv9_AS_XARCH)
1046 1048
1047 1049 # As a favor to the dtrace syscall provider, libc still calls the
1048 1050 # old syscall traps that have been obsoleted by the *at() interfaces.
1049 1051 # Delete this to compile libc using only the new *at() system call traps
1050 1052 CPPFLAGS += -D_RETAIN_OLD_SYSCALLS
1051 1053
1052 1054 # Inform the run-time linker about libc specialized initialization
1053 1055 RTLDINFO = -z rtldinfo=tls_rtldinfo
1054 1056 DYNFLAGS += $(RTLDINFO)
1055 1057
1056 1058 # Force libc's internal references to be resolved immediately upon loading
1057 1059 # in order to avoid critical region problems. Since almost all libc symbols
1058 1060 # are marked 'protected' in the mapfiles, this is a minimal set (15 to 20).
1059 1061 DYNFLAGS += -znow
1060 1062
1061 1063 DYNFLAGS += $(EXTN_DYNFLAGS)
1062 1064
1063 1065 BUILD.s= $(AS) $(ASFLAGS) $< -o $@
1064 1066
1065 1067 # Override this top level flag so the compiler builds in its native
1066 1068 # C99 mode. This has been enabled to support the complex arithmetic
1067 1069 # added to libc.
1068 1070 C99MODE= $(C99_ENABLE)
1069 1071
1070 1072 # libc method of building an archive
1071 1073 # The "$(GREP) -v ' L '" part is necessary only until
1072 1074 # lorder is fixed to ignore thread-local variables.
1073 1075 BUILD.AR= $(RM) $@ ; \
1074 1076 $(AR) q $@ `$(LORDER) $(MOSTOBJS:%=$(DIR)/%) | $(GREP) -v ' L ' | $(TSORT)`
1075 1077
1076 1078 # extra files for the clean target
1077 1079 CLEANFILES= \
1078 1080 $(LIBCDIR)/port/gen/errlst.c \
1079 1081 $(LIBCDIR)/port/gen/new_list.c \
1080 1082 assym.h \
1081 1083 genassym \
1082 1084 pics/crti.o \
1083 1085 pics/crtn.o \
1084 1086 $(ALTPICS)
1085 1087
1086 1088 CLOBBERFILES += $(LIB_PIC)
1087 1089
1088 1090 # list of C source for lint
1089 1091 SRCS= \
1090 1092 $(ATOMICOBJS:%.o=$(SRC)/common/atomic/%.c) \
1091 1093 $(XATTROBJS:%.o=$(SRC)/common/xattr/%.c) \
1092 1094 $(COMOBJS:%.o=$(SRC)/common/util/%.c) \
1093 1095 $(PORTFP:%.o=$(LIBCDIR)/port/fp/%.c) \
1094 1096 $(PORTGEN:%.o=$(LIBCDIR)/port/gen/%.c) \
1095 1097 $(PORTI18N:%.o=$(LIBCDIR)/port/i18n/%.c) \
1096 1098 $(PORTLOCALE:%.o=$(LIBCDIR)/port/locale/%.c) \
1097 1099 $(PORTPRINT:%.o=$(LIBCDIR)/port/print/%.c) \
1098 1100 $(PORTREGEX:%.o=$(LIBCDIR)/port/regex/%.c) \
1099 1101 $(PORTSTDIO:%.o=$(LIBCDIR)/port/stdio/%.c) \
1100 1102 $(PORTSYS:%.o=$(LIBCDIR)/port/sys/%.c) \
1101 1103 $(AIOOBJS:%.o=$(LIBCDIR)/port/aio/%.c) \
1102 1104 $(RTOBJS:%.o=$(LIBCDIR)/port/rt/%.c) \
1103 1105 $(TPOOLOBJS:%.o=$(LIBCDIR)/port/tpool/%.c) \
1104 1106 $(THREADSOBJS:%.o=$(LIBCDIR)/port/threads/%.c) \
1105 1107 $(THREADSMACHOBJS:%.o=$(LIBCDIR)/$(MACH)/threads/%.c) \
1106 1108 $(UNICODEOBJS:%.o=$(SRC)/common/unicode/%.c) \
1107 1109 $(UNWINDMACHOBJS:%.o=$(LIBCDIR)/port/unwind/%.c) \
1108 1110 $(FPOBJS:%.o=$(LIBCDIR)/$(MACH)/fp/%.c) \
1109 1111 $(FPOBJS64:%.o=$(LIBCBASE)/fp/%.c) \
1110 1112 $(LIBCBASE)/crt/_ftou.c \
1111 1113 $(LIBCBASE)/gen/_xregs_clrptr.c \
1112 1114 $(LIBCBASE)/gen/byteorder.c \
1113 1115 $(LIBCBASE)/gen/ecvt.c \
1114 1116 $(LIBCBASE)/gen/getctxt.c \
1115 1117 $(LIBCBASE)/gen/makectxt.c \
1116 1118 $(LIBCBASE)/gen/siginfolst.c \
1117 1119 $(LIBCBASE)/gen/siglongjmp.c \
1118 1120 $(LIBCBASE)/gen/swapctxt.c
1119 1121
1120 1122 # conditional assignments
1121 1123 $(DYNLIB) := CRTI = crti.o
1122 1124 $(DYNLIB) := CRTN = crtn.o
1123 1125
1124 1126 # Files which need the threads .il inline template
1125 1127 TIL= \
1126 1128 aio.o \
1127 1129 alloc.o \
1128 1130 assfail.o \
1129 1131 atexit.o \
1130 1132 atfork.o \
1131 1133 cancel.o \
1132 1134 door_calls.o \
1133 1135 err.o \
1134 1136 errno.o \
1135 1137 getctxt.o \
1136 1138 lwp.o \
1137 1139 ma.o \
1138 1140 machdep.o \
1139 1141 posix_aio.o \
1140 1142 pthr_attr.o \
1141 1143 pthr_barrier.o \
1142 1144 pthr_cond.o \
1143 1145 pthr_mutex.o \
1144 1146 pthr_rwlock.o \
1145 1147 pthread.o \
1146 1148 rand.o \
1147 1149 rwlock.o \
1148 1150 scalls.o \
1149 1151 sched.o \
1150 1152 sema.o \
1151 1153 sigaction.o \
1152 1154 sigev_thread.o \
1153 1155 spawn.o \
1154 1156 stack.o \
1155 1157 swapctxt.o \
1156 1158 synch.o \
1157 1159 tdb_agent.o \
1158 1160 thr.o \
1159 1161 thread_interface.o \
1160 1162 thread_pool.o \
1161 1163 tls.o \
1162 1164 tsd.o \
1163 1165 unwind.o
1164 1166
1165 1167 $(TIL:%=pics/%) := CFLAGS64 += $(LIBCBASE)/threads/sparcv9.il
1166 1168
1167 1169 # Files in fp, port/fp subdirectories that need base.il inline template
1168 1170 IL= \
1169 1171 __flt_decim.o \
1170 1172 decimal_bin.o
1171 1173
1172 1174 $(IL:%=pics/%) := CFLAGS64 += $(LIBCBASE)/fp/base.il
1173 1175
1174 1176 # Files in fp subdirectory which need __quad.il inline template
1175 1177 QIL= \
1176 1178 _Q_add.o \
1177 1179 _Q_cmp.o \
1178 1180 _Q_cmpe.o \
1179 1181 _Q_div.o \
1180 1182 _Q_dtoq.o \
1181 1183 _Q_fcc.o \
1182 1184 _Q_mul.o \
1183 1185 _Q_qtod.o \
1184 1186 _Q_qtoi.o \
1185 1187 _Q_qtos.o \
1186 1188 _Q_qtou.o \
1187 1189 _Q_sqrt.o \
1188 1190 _Q_stoq.o \
1189 1191 _Q_sub.o \
1190 1192 _Qp_qtox.o \
1191 1193 _Qp_qtoux.o
1192 1194
1193 1195 $(QIL:%=pics/%) := CFLAGS64 += $(LIBCDIR)/$(MACH)/fp/__quad.il
1194 1196 pics/_Qp%.o := CFLAGS64 += -I$(LIBCDIR)/$(MACH)/fp
1195 1197 pics/_Q%.o := sparcv9_COPTFLAG = -xO4 -xchip=ultra
1196 1198
1197 1199 # Files in crt subdirectory which need muldiv64.il inline template
1198 1200 #CIL= mul64.o divrem64.o
1199 1201 #$(CIL:%=pics/%) := CFLAGS += $(LIBCBASE)/crt/mul64.il
1200 1202
1201 1203 # large-file-aware components that should be built large
1202 1204
1203 1205 #$(COMSYSOBJS64:%=pics/%) := \
1204 1206 # CPPFLAGS += -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
1205 1207
1206 1208 #$(SYSOBJS64:%=pics/%) := \
1207 1209 # CPPFLAGS += -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
1208 1210
1209 1211 #$(PORTGEN64:%=pics/%) := \
1210 1212 # CPPFLAGS += -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
1211 1213
1212 1214 #$(PORTSTDIO64:%=pics/%) := \
1213 1215 # CPPFLAGS += -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
1214 1216
1215 1217 #$(PORTSYS64:%=pics/%) := \
1216 1218 # CPPFLAGS += -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
1217 1219
1218 1220 $(PORTSTDIO_W:%=pics/%) := \
1219 1221 CPPFLAGS += -D_WIDE
1220 1222
1221 1223 $(PORTPRINT_W:%=pics/%) := \
1222 1224 CPPFLAGS += -D_WIDE
1223 1225
1224 1226 $(PORTI18N_COND:%=pics/%) := \
1225 1227 CPPFLAGS += -D_WCS_LONGLONG
1226 1228
1227 1229 pics/arc4random.o := CPPFLAGS += -I$(SRC)/common/crypto/chacha
1228 1230
1229 1231 # Files which need extra optimization
1230 1232 pics/getenv.o := sparcv9_COPTFLAG = -xO4
1231 1233
1232 1234 .KEEP_STATE:
1233 1235
1234 1236 all: $(LIBS) $(LIB_PIC)
1235 1237
1236 1238 lint := CPPFLAGS += -I$(LIBCDIR)/$(MACH)/fp
1237 1239 lint := CPPFLAGS += -D_MSE_INT_H -D_LCONV_C99
1238 1240 lint := LINTFLAGS64 += -mn
1239 1241
1240 1242 lint:
1241 1243 @echo $(LINT.c) ... $(LDLIBS)
1242 1244 @$(LINT.c) $(SRCS) $(LDLIBS)
1243 1245
1244 1246 $(LINTLIB):= SRCS=$(LIBCDIR)/port/llib-lc
1245 1247 $(LINTLIB):= CPPFLAGS += -D_MSE_INT_H
1246 1248 $(LINTLIB):= LINTFLAGS64=-nvx -m64
1247 1249
1248 1250 # object files that depend on inline template
1249 1251 $(TIL:%=pics/%): $(LIBCBASE)/threads/sparcv9.il
1250 1252 $(IL:%=pics/%): $(LIBCBASE)/fp/base.il
1251 1253 $(QIL:%=pics/%): $(LIBCDIR)/$(MACH)/fp/__quad.il
1252 1254 #$(CIL:%=pics/%): $(LIBCBASE)/crt/muldiv64.il
1253 1255
1254 1256 # include common libc targets
1255 1257 include $(LIBCDIR)/Makefile.targ
1256 1258
1257 1259 # We need to strip out all CTF and DOF data from the static library
1258 1260 $(LIB_PIC) := DIR = pics
1259 1261 $(LIB_PIC): pics $$(PICS)
1260 1262 $(BUILD.AR)
1261 1263 $(MCS) -d -n .SUNW_ctf $@ > /dev/null 2>&1
1262 1264 $(MCS) -d -n .SUNW_dof $@ > /dev/null 2>&1
1263 1265 $(AR) -ts $@ > /dev/null
1264 1266 $(POST_PROCESS_A)
1265 1267
1266 1268 # special cases
1267 1269 #$(STRETS:%=pics/%): crt/stret.s
1268 1270 # $(AS) $(ASFLAGS) -DSTRET$(@F:stret%.o=%) crt/stret.s -o $@
1269 1271 # $(POST_PROCESS_O)
1270 1272
1271 1273 #crt/_rtbootld.s: crt/_rtboot.s crt/_rtld.c
1272 1274 # $(CC) $(CPPFLAGS) -O -S -K pic crt/_rtld.c -o crt/_rtld.s
1273 1275 # $(CAT) crt/_rtboot.s crt/_rtld.s > $@
1274 1276 # $(RM) crt/_rtld.s
1275 1277
1276 1278 ASSYMDEP_OBJS= \
1277 1279 _lwp_mutex_unlock.o \
1278 1280 _stack_grow.o \
1279 1281 asm_subr.o \
1280 1282 setjmp.o \
1281 1283 smt_pause.o \
1282 1284 tls_get_addr.o \
1283 1285 unwind_frame.o \
1284 1286 vforkx.o
1285 1287
1286 1288 $(ASSYMDEP_OBJS:%=pics/%) := CPPFLAGS += -I.
1287 1289
1288 1290 $(ASSYMDEP_OBJS:%=pics/%): assym.h
1289 1291
1290 1292 # assym.h build rules
1291 1293
1292 1294 assym.h := CFLAGS64 += -g
1293 1295
1294 1296 GENASSYM_C = $(LIBCDIR)/$(MACH)/genassym.c
1295 1297
1296 1298 genassym: $(GENASSYM_C)
1297 1299 $(NATIVECC) -I$(LIBCBASE)/inc -I$(LIBCDIR)/inc \
1298 1300 $(CPPFLAGS.native) -o $@ $(GENASSYM_C)
1299 1301
1300 1302 OFFSETS = $(LIBCDIR)/$(MACH)/offsets.in
1301 1303
1302 1304 assym.h: $(OFFSETS) genassym
1303 1305 $(OFFSETS_CREATE) <$(OFFSETS) >$@
1304 1306 ./genassym >>$@
1305 1307
1306 1308 # derived C source and related explicit dependencies
1307 1309 $(LIBCDIR)/port/gen/new_list.c: $(LIBCDIR)/port/gen/errlist $(LIBCDIR)/port/gen/errlist.awk
1308 1310 cd $(LIBCDIR)/port/gen; pwd; $(AWK) -f errlist.awk < errlist
1309 1311
1310 1312 pics/new_list.o: $(LIBCDIR)/port/gen/new_list.c
↓ open down ↓ |
782 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX