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