xref: /titanic_51/usr/src/cmd/sgs/libld/common/libld.msg (revision 359db861fd14071f8a25831efe3bf3790980d071)
17c478bd9Sstevel@tonic-gate#
27c478bd9Sstevel@tonic-gate# CDDL HEADER START
37c478bd9Sstevel@tonic-gate#
47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
55aefb655Srie# Common Development and Distribution License (the "License").
65aefb655Srie# You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate#
87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate# and limitations under the License.
127c478bd9Sstevel@tonic-gate#
137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate#
197c478bd9Sstevel@tonic-gate# CDDL HEADER END
207c478bd9Sstevel@tonic-gate#
21552ff457Srie
22552ff457Srie#
23dc0f59e5SAli Bahrami# Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved.
24552ff457Srie#
257c478bd9Sstevel@tonic-gate
26b533f56bSRobert Mustacchi#
27b533f56bSRobert Mustacchi# Copyright (c) 2012, Joyent, Inc.  All rights reserved.
28b533f56bSRobert Mustacchi#
29b533f56bSRobert Mustacchi
307c478bd9Sstevel@tonic-gate@ _START_
317c478bd9Sstevel@tonic-gate
327c478bd9Sstevel@tonic-gate# Message file for cmd/sgs/libld.
337c478bd9Sstevel@tonic-gate
347c478bd9Sstevel@tonic-gate@ MSG_ID_LIBLD
357c478bd9Sstevel@tonic-gate
367c478bd9Sstevel@tonic-gate#
377c478bd9Sstevel@tonic-gate# TRANSLATION_NOTE -- Beginning of USAGE message
387c478bd9Sstevel@tonic-gate# 	The following messages are the usage messages for the ld command.
397c478bd9Sstevel@tonic-gate#	Tab characters (\t) are used to align the messages.
407c478bd9Sstevel@tonic-gate#
417c478bd9Sstevel@tonic-gate#	Each usage message starts with \t, and if the message has more than one
427c478bd9Sstevel@tonic-gate#		line, the following messages are aligned by 3 tab characters.
437c478bd9Sstevel@tonic-gate#		When you see \n\t\t\t, the first \n is used to change the line,
447c478bd9Sstevel@tonic-gate#		and following 3 tab characters are used to align the line.
457c478bd9Sstevel@tonic-gate#
467c478bd9Sstevel@tonic-gate#	Each usage message option is surrounded by [ and ].  Then the
477c478bd9Sstevel@tonic-gate#	description of the option follows. The descriptions should be aligned,
487c478bd9Sstevel@tonic-gate#	so tab characters are padded as needed after the closing bracket ].
497c478bd9Sstevel@tonic-gate#
507c478bd9Sstevel@tonic-gate#	How to align the messages are up to the translators and the
517c478bd9Sstevel@tonic-gate#	localization engineers.
527c478bd9Sstevel@tonic-gate#
537c478bd9Sstevel@tonic-gate#	In C locale, the first 3 messages would look like the following:
547c478bd9Sstevel@tonic-gate#
557c478bd9Sstevel@tonic-gate#	usage: ld [-6:abc:.....] file(s)
567c478bd9Sstevel@tonic-gate#        	[-a]            create an absolute file
577c478bd9Sstevel@tonic-gate#        	[-b]            do not do special PIC relocations in a.out
5869112eddSAli Bahrami#        	[-c file]       record configuration 'file'
597c478bd9Sstevel@tonic-gate#
607c478bd9Sstevel@tonic-gate@ MSG_ARG_USAGE		"usage: ld [-%s] file(s)\n"
6156e2cc86SAli Bahrami@ MSG_ARG_DETAIL_3	"\t[-32]\t\tenforce a 32-bit link-edit\n"
627c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_6	"\t[-64]\t\tenforce a 64-bit link-edit\n"
637c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_A	"\t[-a]\t\tcreate an absolute file\n"
647c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_B	"\t[-b]\t\tdo not do special PIC relocations in a.out\n"
657c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_CBDR	"\t[-B direct | nodirect]\n\
667c478bd9Sstevel@tonic-gate			 \t\t\testablish direct bindings, or inhibit direct \
677c478bd9Sstevel@tonic-gate			 binding\n\
687c478bd9Sstevel@tonic-gate			 \t\t\tto, the object being created\n"
697c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_CBDY	"\t[-B dynamic | static]\n\
707c478bd9Sstevel@tonic-gate			 \t\t\tsearch for shared libraries|archives\n"
717c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_CBE	"\t[-B eliminate]\teliminate unqualified global \
727c478bd9Sstevel@tonic-gate			 symbols from the\n\t\t\tsymbol table\n"
737c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_CBG	"\t[-B group]\trelocate object from within group\n"
747c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_CBL	"\t[-B local]\treduce unqualified global symbols to \
757c478bd9Sstevel@tonic-gate			 local\n"
767c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_CBR	"\t[-B reduce]\tprocess symbol reductions\n"
777c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_CBS	"\t[-B symbolic]\tbind external references to \
787c478bd9Sstevel@tonic-gate			 definitions when creating\n\
797c478bd9Sstevel@tonic-gate			 \t\t\tshared objects\n"
8069112eddSAli Bahrami@ MSG_ARG_DETAIL_C	"\t[-c name]\trecord configuration file 'name'\n"
817c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_CC	"\t[-C]\t\tdemangle C++ symbol name diagnostics\n"
827c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_D	"\t[-d y | n]\toperate in dynamic|static mode\n"
837c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_CD	"\t[-D token,...]\tprint diagnostic messages\n"
8492a02081SRod Evans@ MSG_ARG_DETAIL_E	"\t[-e epsym], [--entry epsym]\n\
8569112eddSAli Bahrami			 \t\t\tuse 'epsym' as entry point address\n"
8692a02081SRod Evans@ MSG_ARG_DETAIL_F	"\t[-f name], [--auxiliary name]\n\
8792a02081SRod Evans			 \t\t\tspecify library for which this file is an \
8892a02081SRod Evans			 auxiliary\n\t\t\tfilter\n"
8992a02081SRod Evans@ MSG_ARG_DETAIL_CF	"\t[-F name], [--filter name]\n\
9092a02081SRod Evans			 \t\t\tspecify library for which this file is a filter\n"
9192a02081SRod Evans@ MSG_ARG_DETAIL_CG	"\t[-G], [-shared]\n\
9292a02081SRod Evans			 \t\t\tcreate a shared object\n"
9392a02081SRod Evans@ MSG_ARG_DETAIL_H	"\t[-h name], [--soname name]\n\
9469112eddSAli Bahrami			 \t\t\tuse 'name' as internal shared object identifier\n"
957c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_I	"\t[-i]\t\tignore LD_LIBRARY_PATH setting\n"
9669112eddSAli Bahrami@ MSG_ARG_DETAIL_CI	"\t[-I name]\tuse 'name' as path of interpreter\n"
9792a02081SRod Evans@ MSG_ARG_DETAIL_L	"\t[-l x], [--library x]\n\
9892a02081SRod Evans			 \t\t\tsearch for libx.so or libx.a\n"
9992a02081SRod Evans@ MSG_ARG_DETAIL_CL	"\t[-L path], [--library-path path]\n\
10069112eddSAli Bahrami			 \t\t\tsearch for libraries in directory 'path'\n"
1017c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_M	"\t[-m]\t\tprint memory map\n"
1021128e05eSAli Bahrami@ MSG_ARG_DETAIL_CM	"\t[-M mapfile]\tuse processing directives contained \
10369112eddSAli Bahrami			 in 'mapfile'\n"
1047c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_CN	"\t[-N string]\tcreate a dynamic dependency for \
10569112eddSAli Bahrami			 'string'\n"
10692a02081SRod Evans@ MSG_ARG_DETAIL_O	"\t[-o outfile], [--output outfile]\n\
10769112eddSAli Bahrami			 \t\t\tname the output file 'outfile'\n"
1087c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_P	"\t[-p auditlib]\tidentify audit library to accompany \
1097c478bd9Sstevel@tonic-gate			 this object\n"
1107c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_CP	"\t[-P auditlib]\tidentify audit library for \
1117c478bd9Sstevel@tonic-gate			 processing the dependencies\n\
1127c478bd9Sstevel@tonic-gate			 \t\t\tof this object\n"
1137c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_CQ	"\t[-Q y | n]\tdo|do not place version information in \
1147c478bd9Sstevel@tonic-gate			 output file\n"
11592a02081SRod Evans@ MSG_ARG_DETAIL_R	"\t[-r], [--relocatable]\n\
11692a02081SRod Evans			 \t\t\tcreate a relocatable object\n"
11792a02081SRod Evans@ MSG_ARG_DETAIL_CR	"\t[-R path], [-rpath path]\n\
11892a02081SRod Evans			 \t\t\tspecify a library search path to be used at run \
11992a02081SRod Evans			 time\n"
12092a02081SRod Evans@ MSG_ARG_DETAIL_S	"\t[-s], [--strip-all]\n\
12192a02081SRod Evans			 \t\t\tstrip any symbol and debugging information\n"
1227c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_CS	"\t[-S supportlib]\n\
1237c478bd9Sstevel@tonic-gate			 \t\t\tspecify a link-edit support library\n"
1247c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_T	"\t[-t]\t\tdo not warn of multiply-defined symbols \
1257c478bd9Sstevel@tonic-gate			 that have\n\t\t\tdifferent sizes or alignments\n"
12692a02081SRod Evans@ MSG_ARG_DETAIL_U	"\t[-u symname], [--undefined symname]\n\
12769112eddSAli Bahrami			 \t\t\tcreate an undefined symbol 'symname'\n"
12892a02081SRod Evans@ MSG_ARG_DETAIL_CV	"\t[-V], [--version]\n\
12992a02081SRod Evans			 \t\t\tprint version information\n"
13069112eddSAli Bahrami@ MSG_ARG_DETAIL_CY	"\t[-Y P,dirlist]\tuse 'dirlist' as a default path \
1317c478bd9Sstevel@tonic-gate			 when searching for\n\
1327c478bd9Sstevel@tonic-gate			 \t\t\tlibraries\n"
1337c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZA	"\t[-z absexec]\twhen building an executable absolute \
1347c478bd9Sstevel@tonic-gate			 symbols\n \
1357c478bd9Sstevel@tonic-gate			 \t\t\treferenced in dynamic objects are promoted to\n \
1367c478bd9Sstevel@tonic-gate			 \t\t\tthe executable\n"
13792a02081SRod Evans@ MSG_ARG_DETAIL_ZAE	"\t[-z allextract | defaultextract | weakextract],\n\
13892a02081SRod Evans			 \t[--whole-archive | --no-whole-archive]\n\
1397c478bd9Sstevel@tonic-gate			 \t\t\textract all member files, only members that \
1407c478bd9Sstevel@tonic-gate			 resolve\n\
14192a02081SRod Evans			 \t\t\tundefined or tentative symbols, or \
1427c478bd9Sstevel@tonic-gate			 allow extraction of\n\
14392a02081SRod Evans			 \t\t\tarchive members to resolve weak references from \
1447c478bd9Sstevel@tonic-gate			 \n\t\t\t\archive files\n"
1457010c12aSrie@ MSG_ARG_DETAIL_ZAL	"\t[-z altexec64]\texecute the 64-bit link-editor\n"
146b533f56bSRobert Mustacchi@ MSG_ARG_DETAIL_ZADLIB	"\t[-z assert-deflib]\n\
147b533f56bSRobert Mustacchi			\t\t\tenables warnings for linking with libraries in \
148b533f56bSRobert Mustacchi			the \n\t\t\tdefault search path\n\
149b533f56bSRobert Mustacchi			\t[-z assert-deflib=libname]\n\
150b533f56bSRobert Mustacchi			\t\t\tenables warnings for linking with libraries in \
151b533f56bSRobert Mustacchi			the \n\t\t\tdefault search path, but 'libname' is exempt\n"
152e38a713aSrie@ MSG_ARG_DETAIL_ZC	"\t[-z combreloc | nocombreloc]\n\
15392a02081SRod Evans			 \t\t\tcombine|do not combine multiple relocation \
15492a02081SRod Evans			 sections\n"
1557c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZNC	"\t[-z nocompstrtab]\n\t\t\tdisable compression of \
1567c478bd9Sstevel@tonic-gate			 string tables\n"
157f441771bSRod Evans@ MSG_ARG_DETAIL_ZDEF	"\t[-z deferred | nodeferred]\n\
158f441771bSRod Evans			 \t\t\tenable|disable deferred identification of \
159f441771bSRod Evans			 shared object\n\t\t\tdependencies\n"
16092a02081SRod Evans@ MSG_ARG_DETAIL_ZDFS	"\t[-z defs], [--no-undefined]\n\
16192a02081SRod Evans			 \t\t\tdisallow undefined symbol references\n"
1627c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZDRS	"\t[-z direct | nodirect]\n\
1637c478bd9Sstevel@tonic-gate			 \t\t\tenable|disable direct binding to shared object\n\
1647c478bd9Sstevel@tonic-gate			 \t\t\tdependencies\n"
1657c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZE	"\t[-z endfiltee]\tmarks a filtee such that it will \
1667c478bd9Sstevel@tonic-gate			 terminate a filters\n\t\t\tsearch\n"
1671007fd6fSAli Bahrami@ MSG_ARG_DETAIL_ZFATW	"\t[-z fatal-warnings | nofatal-warnings],\n\
1681007fd6fSAli Bahrami			 \t[--fatal-warnings | --no-fatal-warnings]\n\
1691007fd6fSAli Bahrami			 \t\tenable|disable treatment of warnings as fatal\n"
1707c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZFA	"\t[-z finiarray=function]\n\
1717c478bd9Sstevel@tonic-gate			 \t\t\tname of function to be appended to the \
172b23a7923SAli Bahrami			 .fini_array\n"
1737c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZGP	"\t[-z groupperm | nogroupperm]\n\
1747c478bd9Sstevel@tonic-gate			 \t\t\tenable|disable setting of group permissions\n\
1757c478bd9Sstevel@tonic-gate			 \t\t\ton dynamic dependencies\n"
1761007fd6fSAli Bahrami@ MSG_ARG_DETAIL_ZGUIDE	"\t[-z guidance | -z guidance=item1,item2,...]\n\
1771007fd6fSAli Bahrami			 \t\t\tenable guidance warnings. items: \
1781007fd6fSAli Bahrami			 noall, nodefs,\n\
1791007fd6fSAli Bahrami			 \t\t\tnodirect, nolazyload, nomapfile, notext, \
1801007fd6fSAli Bahrami			 nounused\n"
18192a02081SRod Evans@ MSG_ARG_DETAIL_ZH	"\t[-z help], [--help]\n\
18292a02081SRod Evans			 \t\t\tprint this usage message\n"
1837c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZIG	"\t[-z ignore | record]\n\
1847c478bd9Sstevel@tonic-gate			 \t\t\tignore|record unused dynamic dependencies\n"
1857c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZINA	"\t[-z initarray=function]\n\
1867c478bd9Sstevel@tonic-gate			 \t\t\tname of function to be appended to the \
187b23a7923SAli Bahrami			 .init_array\n"
1887c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZINI	"\t[-z initfirst]\tmark object to indicate that its \
1897c478bd9Sstevel@tonic-gate			 .init section should\n\
1907c478bd9Sstevel@tonic-gate			 \t\t\tbe executed before the .init section of any \
1917c478bd9Sstevel@tonic-gate			 other\n\t\t\tobjects\n"
1927c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZINT	"\t[-z interpose]\
19369112eddSAli Bahrami			 \tdynamic object is to be an 'interposer' on direct\n\
1947c478bd9Sstevel@tonic-gate			 \t\t\tbindings\n"
1957c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZLAZY	"\t[-z lazyload | nolazyload]\n\
1967c478bd9Sstevel@tonic-gate			 \t\t\tenable|disable delayed loading of shared \
1977c478bd9Sstevel@tonic-gate			 object\n\t\t\tdependencies\n"
1987c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZLD32	"\t[-z ld32=arg1,arg2,...]\n\
1997c478bd9Sstevel@tonic-gate			 \t\t\tdefine arguments applicable to the \
2007c478bd9Sstevel@tonic-gate			 32-bit class of ld(1)\n"
2017c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZLD64	"\t[-z ld64=arg1,arg2,...]\n\
2027c478bd9Sstevel@tonic-gate			 \t\t\tdefine arguments applicable to the \
2037c478bd9Sstevel@tonic-gate			 64-bit class of ld(1)\n"
2047c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZLO	"\t[-z loadfltr]\tmark filter as requiring immediate \
2057c478bd9Sstevel@tonic-gate			 loading of its\n\
2067c478bd9Sstevel@tonic-gate			 \t\t\tfiltees at runtime\n"
20792a02081SRod Evans@ MSG_ARG_DETAIL_ZM	"\t[-z muldefs], [--allow-multiple-definition]\n\
20892a02081SRod Evans			 \t\t\tallow multiply-defined symbols\n"
2097c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZNDFS	"\t[-z nodefs]\tallow undefined symbol references\n"
2107c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZNDEF	"\t[-z nodefaultlib]\n\
2117c478bd9Sstevel@tonic-gate			 \t\t\tmark object to ignore any default library \
2127c478bd9Sstevel@tonic-gate			 search path\n"
2137c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZNDEL	"\t[-z nodelete]\tmark object as non-deletable\n"
2147c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZNDLO	"\t[-z nodlopen]\tmark object as non-dlopen()'able\n"
2157c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZNDU	"\t[-z nodump]\tmark object as non-dldump()'able\n"
2162926dd2eSrie@ MSG_ARG_DETAIL_ZNLD	"\t[-z noldynsym]\tdo not add a .SUNW_ldynsym section\n"
2177c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZNPA	"\t[-z nopartial]\texpand any partially initialized \
2187c478bd9Sstevel@tonic-gate			 symbols\n"
2192926dd2eSrie@ MSG_ARG_DETAIL_ZNV	"\t[-z noversion]\tdo not record any version sections\n"
2207c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZNOW	"\t[-z now]\tmark object as requiring non-lazy \
2217c478bd9Sstevel@tonic-gate			 binding\n"
2227c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZO	"\t[-z origin]\tmark object as requiring $ORIGIN \
2237c478bd9Sstevel@tonic-gate			 processing\n"
2247c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZPIA	"\t[-z preinitarray=function]\n\
2257c478bd9Sstevel@tonic-gate			 \t\t\tname of function to be appended to the \
226b23a7923SAli Bahrami			 .preinit_array\n"
2277c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZRL	"\t[-z redlocsym]\treduce local syms in .symtab to \
2287c478bd9Sstevel@tonic-gate			 a minimum\n"
229d2ef9fe9Sab196087@ MSG_ARG_DETAIL_ZRREL	"\t[-z relaxreloc]\trelax rules used for relocations \
230d2ef9fe9Sab196087			 against COMDAT sections\n"
231551cffe3SAli Bahrami@ MSG_ARG_DETAIL_ZRS	"\t[-z rescan]\tafter processing all arguments, rescan \
232551cffe3SAli Bahrami			 archive list\n\
233551cffe3SAli Bahrami			 \t\t\tuntil no further member extraction occurs\n"
234551cffe3SAli Bahrami@ MSG_ARG_DETAIL_ZRSN	"\t[-z rescan-now]\timmediately rescan archive list \
235551cffe3SAli Bahrami			 until\n\
236551cffe3SAli Bahrami			 \t\t\tno further member extraction occurs\n"
237551cffe3SAli Bahrami@ MSG_ARG_DETAIL_ZRSGRP	"\t[-z rescan-start archives... -z rescan-end],\n\
238551cffe3SAli Bahrami			 \t[--start-group archives... --end-group], \
239551cffe3SAli Bahrami			 [-( archives... -)]\n\
240551cffe3SAli Bahrami			 \t\t\trescan specified archive group upon reaching\n\
241551cffe3SAli Bahrami			 \t\t\tthe end of the group, until no further\n\
242551cffe3SAli Bahrami			 \t\t\tmember extraction occurs\n"
24308278a5eSRod Evans@ MSG_ARG_DETAIL_ZSCAP	"\t[-z symbolcap]\tconvert object capabilities to \
24408278a5eSRod Evans			 symbol capabilities\n"
245ba2be530Sab196087@ MSG_ARG_DETAIL_ZTARG	"\t[-z target=platform]\n\
246ba2be530Sab196087			 \t\t\ttarget machine for cross linking\n"
2477c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZT	"\t[-z text]\tdisallow output relocations against \
2487c478bd9Sstevel@tonic-gate			 text\n"
2497c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZTO	"\t[-z textoff]\tallow output relocations against \
2507c478bd9Sstevel@tonic-gate			 text\n"
2517c478bd9Sstevel@tonic-gate@ MSG_ARG_DETAIL_ZTW	"\t[-z textwarn]\twarn if there are relocations \
2527c478bd9Sstevel@tonic-gate			 against text\n"
253cdcc71c0SAli Bahrami@ MSG_ARG_DETAIL_ZWRAP	"\t[-z wrap=symbol], [-wrap=symbol], [--wrap=symbol]\n\
254cdcc71c0SAli Bahrami			 \t\t\twrap symbol references\n"
255f441771bSRod Evans@ MSG_ARG_DETAIL_ZVER	"\t[-z verbose]\t\
2567c478bd9Sstevel@tonic-gate			 generate warnings for suspicious processings\n"
2577c478bd9Sstevel@tonic-gate
2587c478bd9Sstevel@tonic-gate#
2597c478bd9Sstevel@tonic-gate# TRANSLATION_NOTE -- End of USAGE message
2607c478bd9Sstevel@tonic-gate#
2614a8d0ea7SAli Bahrami@ MSG_GRP_INVALNDX	"file %s: group section [%u]%s: entry %d: \
26260758829Srie			 invalid section index: %d"
2637c478bd9Sstevel@tonic-gate
2647c478bd9Sstevel@tonic-gate# Relocation processing messages (some of these are required to satisfy
2657c478bd9Sstevel@tonic-gate# do_reloc(), which is common code used by cmd/sgs/rtld - make sure both
2667c478bd9Sstevel@tonic-gate# message files remain consistent).
2677c478bd9Sstevel@tonic-gate
2687c478bd9Sstevel@tonic-gate@ MSG_REL_NOFIT		"relocation error: %s: file %s: symbol %s: \
269c1c6f601Srie			 value 0x%llx does not fit"
2707c478bd9Sstevel@tonic-gate@ MSG_REL_NONALIGN	"relocation error: %s: file %s: symbol %s: \
2717c478bd9Sstevel@tonic-gate			 offset 0x%llx is non-aligned"
2724a8d0ea7SAli Bahrami@ MSG_REL_NULL		"relocation error: file %s: section [%u]%s: \
2737c478bd9Sstevel@tonic-gate			 skipping null relocation record"
2744a8d0ea7SAli Bahrami@ MSG_REL_NOTSUP	"relocation error: %s: file %s: section [%u]%s: \
2757c478bd9Sstevel@tonic-gate			 relocation not currently supported"
2767c478bd9Sstevel@tonic-gate@ MSG_REL_PICREDLOC	"relocation error: %s: file %s symbol %s: \
2777c478bd9Sstevel@tonic-gate			 -z redlocsym may not be used for pic code"
278d326b23bSrie@ MSG_REL_TLSLE		"relocation error: %s: file %s: symbol %s: \
2797c478bd9Sstevel@tonic-gate			 relocation illegal when building a shared object"
2807c478bd9Sstevel@tonic-gate@ MSG_REL_TLSBND	"relocation error: %s: file %s: symbol %s: \
2817c478bd9Sstevel@tonic-gate			 bound to: %s: relocation illegal when not bound \
2827c478bd9Sstevel@tonic-gate			 to object being created"
2837c478bd9Sstevel@tonic-gate@ MSG_REL_TLSSTAT	"relocation error: %s: file %s: symbol %s: \
2847c478bd9Sstevel@tonic-gate			 relocation illegal when building a static object"
2857c478bd9Sstevel@tonic-gate@ MSG_REL_TLSBADSYM	"relocation error: %s: file %s: symbol %s: \
2867c478bd9Sstevel@tonic-gate			 bad symbol type %s: symbol type must be TLS"
2877c478bd9Sstevel@tonic-gate@ MSG_REL_BADTLS	"relocation error: %s: file %s: symbol %s: \
2887c478bd9Sstevel@tonic-gate			 relocation illegal for TLS symbol"
28902ca3e02Srie@ MSG_REL_BADGOTBASED	"relocation error: %s: file %s: symbol %s: a GOT \
29002ca3e02Srie			 relative relocation must reference a local symbol"
2914a8d0ea7SAli Bahrami@ MSG_REL_UNKNWSYM	"relocation error: %s: file %s: section [%u]%s: \
2927c478bd9Sstevel@tonic-gate			 attempt to relocate with respect to unknown \
2937c478bd9Sstevel@tonic-gate			 symbol %s: offset 0x%llx, symbol index %d"
294552ff457Srie@ MSG_REL_UNSUPSZ	"relocation error: %s: file %s: symbol %s: \
295552ff457Srie			 offset size (%d bytes) is not supported"
2964a8d0ea7SAli Bahrami@ MSG_REL_INVALOFFSET	"relocation error: %s: file %s section [%u]%s: \
29769112eddSAli Bahrami			 invalid offset symbol '%s': offset 0x%llx"
2984a8d0ea7SAli Bahrami@ MSG_REL_INVALRELT	"relocation error: file %s: section [%u]%s: \
2997c478bd9Sstevel@tonic-gate			 invalid relocation type: 0x%x"
3007c478bd9Sstevel@tonic-gate@ MSG_REL_EMPTYSEC	"relocation error: %s: file %s: symbol %s: \
3014a8d0ea7SAli Bahrami			 attempted against empty section [%u]%s"
302c1c6f601Srie@ MSG_REL_EXTERNSYM	"relocation error: %s: file %s: symbol %s: \
303c1c6f601Srie			 external symbolic relocation against non-allocatable \
304c1c6f601Srie			 section %s; cannot be processed at runtime: \
305c1c6f601Srie			 relocation ignored"
3067c478bd9Sstevel@tonic-gate@ MSG_REL_UNEXPREL	"relocation error: %s: file %s: symbol %s: \
3077c478bd9Sstevel@tonic-gate			 unexpected relocation; generic processing performed"
3087c478bd9Sstevel@tonic-gate@ MSG_REL_UNEXPSYM	"relocation error: %s: file %s: symbol %s: \
3097c478bd9Sstevel@tonic-gate			 unexpected symbol referenced from file %s"
3104a8d0ea7SAli Bahrami@ MSG_REL_SYMDISC	"relocation error: %s: file %s: section [%u]%s: \
3114a8d0ea7SAli Bahrami			 symbol %s: symbol has been discarded with discarded \
3124a8d0ea7SAli Bahrami			 section: [%u]%s"
3134a8d0ea7SAli Bahrami@ MSG_REL_NOSYMBOL	"relocation error: %s: file %s: section: [%u]%s: \
314c1c6f601Srie			 offset: 0x%llx: relocation requires reference symbol"
3157c478bd9Sstevel@tonic-gate@ MSG_REL_DISPREL1	"relocation error: %s: file %s: symbol %s: \
316c1c6f601Srie			 displacement relocation applied to the symbol \
317c1c6f601Srie			 %s at 0x%llx: symbol %s is a copy relocated symbol"
3184a8d0ea7SAli Bahrami@ MSG_REL_UNSUPSIZE	"relocation error: %s: file %s: section [%u]%s: \
3192926dd2eSrie			 relocation against section symbol unsupported"
320c1c6f601Srie
3217c478bd9Sstevel@tonic-gate@ MSG_REL_DISPREL2	"relocation warning: %s: file %s: symbol %s: \
3227c478bd9Sstevel@tonic-gate			 may contain displacement relocation"
3237c478bd9Sstevel@tonic-gate@ MSG_REL_DISPREL3	"relocation warning: %s: file %s: symbol %s: \
324c1c6f601Srie			 displacement relocation applied to the symbol \
325c1c6f601Srie			 %s: at 0x%llx: displacement relocation will not be \
326c1c6f601Srie			 visible in output image"
3277c478bd9Sstevel@tonic-gate@ MSG_REL_DISPREL4	"relocation warning: %s: file %s: symbol %s: \
328c1c6f601Srie			 displacement relocation to be applied to the symbol \
329c1c6f601Srie			 %s: at 0x%llx: displacement relocation will be \
330c1c6f601Srie			 visible in output image"
3317c478bd9Sstevel@tonic-gate@ MSG_REL_COPY		"relocation warning: %s: file %s: symbol %s: \
332c1c6f601Srie			 relocation bound to a symbol with STV_PROTECTED \
333c1c6f601Srie			 visibility"
3344a8d0ea7SAli Bahrami@ MSG_RELINVSEC		"relocation warning: %s: file %s: section: [%u]%s: \
3354a8d0ea7SAli Bahrami			 against suspicious section [%u]%s; relocation ignored"
336c1c6f601Srie@ MSG_REL_TLSIE		"relocation warning: %s: file %s: symbol %s: \
337c1c6f601Srie			 relocation has restricted use when building a shared \
338c1c6f601Srie			 object"
339d326b23bSrie
3404a8d0ea7SAli Bahrami@ MSG_REL_SLOPCDATNONAM	"relocation warning: %s: file %s: section [%u]%s: \
3414a8d0ea7SAli Bahrami			 relocation against discarded COMDAT section [%u]%s: \
342d2ef9fe9Sab196087			 redirected to file %s"
3434a8d0ea7SAli Bahrami@ MSG_REL_SLOPCDATNAM	"relocation warning: %s: file %s: section [%u]%s: \
344d2ef9fe9Sab196087			 symbol %s: relocation against discarded COMDAT \
3454a8d0ea7SAli Bahrami			 section [%u]%s: redirected to file %s"
3464a8d0ea7SAli Bahrami@ MSG_REL_SLOPCDATNOSYM	"relocation warning: %s: file %s: section [%u]%s: \
3470e233487SRod Evans			 symbol %s: relocation against discarded COMDAT \
3484a8d0ea7SAli Bahrami			 section [%u]%s: symbol not found, relocation ignored"
3490e233487SRod Evans
350ba2be530Sab196087@ MSG_REL_NOREG		"relocation error: REGISTER relocation not supported \
351ba2be530Sab196087			 on target architecture"
3522926dd2eSrie
3537c478bd9Sstevel@tonic-gate#
3547c478bd9Sstevel@tonic-gate# TRANSLATION_NOTE
3557c478bd9Sstevel@tonic-gate# 	The following 7 messages are the message to print the
3567c478bd9Sstevel@tonic-gate#	following example messages.
3577c478bd9Sstevel@tonic-gate#
3587c478bd9Sstevel@tonic-gate#Text relocation remains		      referenced
3597c478bd9Sstevel@tonic-gate#    against symbol		    offset	in file
3607c478bd9Sstevel@tonic-gate#str                                 0x14      	main.o
3617c478bd9Sstevel@tonic-gate#printf                              0x1c      	main.o
3627c478bd9Sstevel@tonic-gate#
3637c478bd9Sstevel@tonic-gate#	The first two lines are the header, and the next msgid
3647c478bd9Sstevel@tonic-gate#	is the format string for the header.
3657c478bd9Sstevel@tonic-gate#	Tabs and spaces are used for alignment.
3667c478bd9Sstevel@tonic-gate#	The first and third %s are for: "Text relocation remains against symbol"
3677c478bd9Sstevel@tonic-gate#	The second %s and fourth %s are for: "referenced in file"
3687c478bd9Sstevel@tonic-gate#	The third %s is for: "offset"
3697c478bd9Sstevel@tonic-gate#
3707c478bd9Sstevel@tonic-gate@ MSG_REL_REMAIN_FMT_1	"%-40s\t%s\n    %s\t\t    %s\t%s"
3717c478bd9Sstevel@tonic-gate#
3727c478bd9Sstevel@tonic-gate# TRANSLATION_NOTE
3737c478bd9Sstevel@tonic-gate#	The next two msdid make a sentence. So translate:
3747c478bd9Sstevel@tonic-gate#		"Text relocation remain against symbol"
3757c478bd9Sstevel@tonic-gate#	And separate them into two msgstr considering the proper
3767c478bd9Sstevel@tonic-gate#	alignment.
3777c478bd9Sstevel@tonic-gate@ MSG_REL_RMN_ITM_11	"Text relocation remains"
3787c478bd9Sstevel@tonic-gate@ MSG_REL_RMN_ITM_12	"against symbol"
3797c478bd9Sstevel@tonic-gate@ MSG_REL_RMN_ITM_13	"warning: Text relocation remains"
3807c478bd9Sstevel@tonic-gate
3817c478bd9Sstevel@tonic-gate@ MSG_REL_RMN_ITM_2	"offset"
3827c478bd9Sstevel@tonic-gate
3837c478bd9Sstevel@tonic-gate#
3847c478bd9Sstevel@tonic-gate# TRANSLATION_NOTE
3857c478bd9Sstevel@tonic-gate#	The next two msdid make a sentence. So translate:
3867c478bd9Sstevel@tonic-gate#		"referenced in file"
3877c478bd9Sstevel@tonic-gate#	And separate them into two msgstr considering the proper
3887c478bd9Sstevel@tonic-gate#	alignment.
3897c478bd9Sstevel@tonic-gate@ MSG_REL_RMN_ITM_31	"referenced"
3907c478bd9Sstevel@tonic-gate@ MSG_REL_RMN_ITM_32	"in file"
3917c478bd9Sstevel@tonic-gate@ MSG_REL_REMAIN_2	"%-35s 0x%-8llx\t%s"
3927c478bd9Sstevel@tonic-gate@ MSG_REL_REMAIN_3	"relocations remain against allocatable but \
3937c478bd9Sstevel@tonic-gate			 non-writable sections"
3947c478bd9Sstevel@tonic-gate
3957c478bd9Sstevel@tonic-gate# Files processing messages
3967c478bd9Sstevel@tonic-gate
3977c478bd9Sstevel@tonic-gate@ MSG_FIL_MULINC_1	"file %s: attempted multiple inclusion of file"
3987c478bd9Sstevel@tonic-gate@ MSG_FIL_MULINC_2	"file %s: linked to %s: attempted multiple inclusion \
3997c478bd9Sstevel@tonic-gate			 of file"
40069112eddSAli Bahrami@ MSG_FIL_SOINSTAT	"input of shared object '%s' in static mode"
4014a8d0ea7SAli Bahrami@ MSG_FIL_INVALSEC	"file %s: section [%u]%s has invalid type %s"
4027c478bd9Sstevel@tonic-gate@ MSG_FIL_NOTFOUND	"file %s: required by %s, not found"
4034a8d0ea7SAli Bahrami@ MSG_FIL_MALSTR	"file %s: section [%u]%s: malformed string table, \
4047c478bd9Sstevel@tonic-gate			 initial or final byte"
40569112eddSAli Bahrami@ MSG_FIL_PTHTOLONG	"'%s/%s' pathname too long"
4064a8d0ea7SAli Bahrami@ MSG_FIL_EXCLUDE	"file %s: section [%u]%s contains both SHF_EXCLUDE and \
4077c478bd9Sstevel@tonic-gate			 SHF_ALLOC flags: SHF_EXCLUDE ignored"
4087c478bd9Sstevel@tonic-gate@ MSG_FIL_INTERRUPT	"file %s: creation interrupted: %s"
4094a8d0ea7SAli Bahrami@ MSG_FIL_INVRELOC1	"file %s: section [%u]%s: relocations can not be \
4104a8d0ea7SAli Bahrami			 applied against section [%u]%s"
4114a8d0ea7SAli Bahrami@ MSG_FIL_INVSHINFO	"file %s: section [%u]%s: has invalid sh_info: %lld"
4124a8d0ea7SAli Bahrami@ MSG_FIL_INVSHLINK	"file %s: section [%u]%s: has invalid sh_link: %lld"
4134a8d0ea7SAli Bahrami@ MSG_FIL_INVSHENTSIZE	"file %s: section [%u]%s: has invalid sh_entsize: %lld"
4144a8d0ea7SAli Bahrami@ MSG_FIL_NOSTRTABLE	"file %s: section [%u]%s: symbol[%d]: specifies string \
4157c478bd9Sstevel@tonic-gate			 table offset 0x%llx: no string table is available"
4164a8d0ea7SAli Bahrami@ MSG_FIL_EXCSTRTABLE	"file %s: section [%u]%s: symbol[%d]: specifies string \
4177c478bd9Sstevel@tonic-gate			 table offset 0x%llx: exceeds string table %s: \
4187c478bd9Sstevel@tonic-gate			 size 0x%llx"
4194a8d0ea7SAli Bahrami@ MSG_FIL_NONAMESYM	"file %s: section [%u]%s: symbol[%d]: global symbol has \
4207c478bd9Sstevel@tonic-gate			 no name"
4214a8d0ea7SAli Bahrami@ MSG_FIL_UNKCAP	"file %s: section [%u]%s: unknown capability tag: %d"
4224a8d0ea7SAli Bahrami@ MSG_FIL_BADSF1	"file %s: section [%u]%s: unknown software \
4234a8d0ea7SAli Bahrami			 capabilities: 0x%llx; ignored"
4244a8d0ea7SAli Bahrami@ MSG_FIL_INADDR32SF1	"file %s: section [%u]%s: software capability ADDR32: is \
425bebb829dSRod Evans			 ineffective when building 32-bit object; ignored"
4264a8d0ea7SAli Bahrami@ MSG_FIL_EXADDR32SF1	"file %s: section [%u]%s: software capability ADDR32: \
427bebb829dSRod Evans			 requires executable be built with ADDR32 capability"
4287c478bd9Sstevel@tonic-gate
4294a8d0ea7SAli Bahrami@ MSG_FIL_BADORDREF	"file %s: section [%u]%s: contains illegal reference \
4304a8d0ea7SAli Bahrami			 to discarded section: [%u]%s"
4317c478bd9Sstevel@tonic-gate
4327c478bd9Sstevel@tonic-gate# Recording name conflicts
4337c478bd9Sstevel@tonic-gate
43469112eddSAli Bahrami@ MSG_REC_OPTCNFLT	"recording name conflict: file '%s' and %s provide \
435551cffe3SAli Bahrami			 identical dependency names: %s"
43669112eddSAli Bahrami@ MSG_REC_OBJCNFLT	"recording name conflict: file '%s' and file '%s' \
4377c478bd9Sstevel@tonic-gate			 provide identical dependency names: %s  %s"
4387c478bd9Sstevel@tonic-gate@ MSG_REC_CNFLTHINT	"(possible multiple inclusion of the same file)"
4397c478bd9Sstevel@tonic-gate
4407c478bd9Sstevel@tonic-gate# System call messages
4417c478bd9Sstevel@tonic-gate
4427c478bd9Sstevel@tonic-gate@ MSG_SYS_OPEN		"file %s: open failed: %s"
44313246550Sab196087@ MSG_SYS_UNLINK	"file %s: unlink failed: %s"
4440e233487SRod Evans@ MSG_SYS_MMAPANON	"mmap anon failed: %s"
445875546acSRichard Lowe@ MSG_SYS_MALLOC	"malloc failed: %s"
4467c478bd9Sstevel@tonic-gate
4477c478bd9Sstevel@tonic-gate
448ba2be530Sab196087# Messages related to platform support
44908278a5eSRod Evans
450ba2be530Sab196087@ MSG_TARG_UNSUPPORTED	"unsupported ELF machine type: %s"
451ba2be530Sab196087
452ba2be530Sab196087
4537c478bd9Sstevel@tonic-gate# ELF processing messages
4547c478bd9Sstevel@tonic-gate
4557c478bd9Sstevel@tonic-gate@ MSG_ELF_LIBELF	"libelf: version not supported: %d"
4567c478bd9Sstevel@tonic-gate
4577c478bd9Sstevel@tonic-gate@ MSG_ELF_ARMEM		"file %s: unable to locate archive member;\n\t\
458dc0f59e5SAli Bahrami			 offset=%x, symbol=%s"
4597c478bd9Sstevel@tonic-gate
4607c478bd9Sstevel@tonic-gate@ MSG_ELF_ARSYM		"file %s ignored: unable to locate archive symbol table"
4617c478bd9Sstevel@tonic-gate
4627c478bd9Sstevel@tonic-gate@ MSG_ELF_VERSYM	"file %s: version symbol section entry mismatch:\n\t\
4634a8d0ea7SAli Bahrami			 (section [%u]%s entries=%d; section [%u]%s entries=%d)"
4647c478bd9Sstevel@tonic-gate
4654a8d0ea7SAli Bahrami@ MSG_ELF_NOGROUPSECT	"file %s: section [%u]%s: SHF_GROUP flag set, but no \
4667c478bd9Sstevel@tonic-gate			 corresponding SHT_GROUP section found"
4677c478bd9Sstevel@tonic-gate
4687c478bd9Sstevel@tonic-gate# Section processing errors
4697c478bd9Sstevel@tonic-gate
47069112eddSAli Bahrami@ MSG_SCN_NONALLOC	"%s: non-allocatable section '%s' directed to a \
47169112eddSAli Bahrami			 loadable segment: %s"
4727c478bd9Sstevel@tonic-gate
473ef16f6b5SRichard Lowe@ MSG_SCN_MULTICOMDAT	"file %s: section [%u]%s: cannot be susceptible to multiple \
474ef16f6b5SRichard Lowe			 COMDAT mechanisms: %s"
475ef16f6b5SRichard Lowe
476*37915d86SRichard Lowe@ MSG_SCN_DWFOVRFLW	"%s: section %s: encoded DWARF data exceeds \
477*37915d86SRichard Lowe			 section size"
478*37915d86SRichard Lowe@ MSG_SCN_DWFBADENC	"%s: section %s: invalid DWARF encoding: %#x"
479*37915d86SRichard Lowe
4807c478bd9Sstevel@tonic-gate# Symbol processing errors
4817c478bd9Sstevel@tonic-gate
48269112eddSAli Bahrami@ MSG_SYM_NOSECDEF	"symbol '%s' in file %s has no section definition"
48369112eddSAli Bahrami@ MSG_SYM_INVSEC	"symbol '%s' in file %s associated with invalid \
4847c478bd9Sstevel@tonic-gate			 section[%lld]"
48569112eddSAli Bahrami@ MSG_SYM_TLS		"symbol '%s' in file %s (STT_TLS), is defined \
4867c478bd9Sstevel@tonic-gate			 in a non-SHF_TLS section"
48769112eddSAli Bahrami@ MSG_SYM_BADADDR	"symbol '%s' in file %s: section [%u]%s: size %#llx: \
48869a0bf0cSab196087			 symbol (address %#llx, size %#llx) lies outside \
48975e45495Sab196087			 of containing section"
49069112eddSAli Bahrami@ MSG_SYM_BADADDR_ROTXT	"symbol '%s' in file %s: readonly text section \
4914a8d0ea7SAli Bahrami			 [%u]%s: size %#llx: symbol (address %#llx, \
49269a0bf0cSab196087			 size %#llx) lies outside of containing section"
49369112eddSAli Bahrami@ MSG_SYM_MULDEF	"symbol '%s' is multiply-defined:"
49469112eddSAli Bahrami@ MSG_SYM_CONFVIS	"symbol '%s' has conflicting visibilities:"
49569112eddSAli Bahrami@ MSG_SYM_DIFFTYPE	"symbol '%s' has differing types:"
49669112eddSAli Bahrami@ MSG_SYM_DIFFATTR	"symbol '%s' has differing %s:\n\
4977c478bd9Sstevel@tonic-gate			 \t(file %s value=0x%llx; file %s value=0x%llx);"
4987c478bd9Sstevel@tonic-gate@ MSG_SYM_FILETYPES	"\t(file %s type=%s; file %s type=%s);"
49960758829Srie@ MSG_SYM_VISTYPES	"\t(file %s visibility=%s; file %s visibility=%s);"
5007c478bd9Sstevel@tonic-gate@ MSG_SYM_DEFTAKEN	"\t%s definition taken"
5017c478bd9Sstevel@tonic-gate@ MSG_SYM_DEFUPDATE	"\t%s definition taken and updated with larger size"
5027c478bd9Sstevel@tonic-gate@ MSG_SYM_LARGER	"\tlargest value applied"
5037c478bd9Sstevel@tonic-gate@ MSG_SYM_TENTERR	"\ttentative symbol cannot override defined symbol \
5047c478bd9Sstevel@tonic-gate			 of smaller size"
5057c478bd9Sstevel@tonic-gate
506ba2be530Sab196087@ MSG_SYM_INVSHNDX	"symbol %s has invalid section index; \
5077c478bd9Sstevel@tonic-gate			 ignored:\n\t(file %s value=%s);"
508ba2be530Sab196087@ MSG_SYM_NONGLOB	"global symbol %s has non-global binding:\n\
5097c478bd9Sstevel@tonic-gate			 \t(file %s value=%s);"
51069112eddSAli Bahrami@ MSG_SYM_RESERVE	"reserved symbol '%s' already defined in file %s"
51169112eddSAli Bahrami@ MSG_SYM_NOTNULL	"undefined symbol '%s' with non-zero value encountered \
5127c478bd9Sstevel@tonic-gate			 from file %s"
51369112eddSAli Bahrami@ MSG_SYM_DUPSORTADDR	"section %s: symbol '%s' and symbol '%s' have the \
514d579eb63Sab196087			 same address: %#llx: remove duplicate with \
515d579eb63Sab196087			 NOSORTSYM mapfile directive"
5167c478bd9Sstevel@tonic-gate
5174a8d0ea7SAli Bahrami@ MSG_PSYM_INVMINFO1	"file %s: section [%u]%s: entry[%d] has invalid m_info: \
5187c478bd9Sstevel@tonic-gate			 0x%llx for symbol index"
5194a8d0ea7SAli Bahrami@ MSG_PSYM_INVMINFO2	"file %s: section [%u]%s: entry[%d] has invalid m_info: \
5207c478bd9Sstevel@tonic-gate			 0x%llx for size"
5214a8d0ea7SAli Bahrami@ MSG_PSYM_INVMREPEAT	"file %s: section [%u]%s: entry[%d] has invalid m_repeat: \
5227c478bd9Sstevel@tonic-gate			 0x%llx"
5234a8d0ea7SAli Bahrami@ MSG_PSYM_CANNOTEXPND	"file %s: section [%u]%s: entry[%d] can not be expanded: \
5247c478bd9Sstevel@tonic-gate			 associated symbol size is unknown %s"
5257c478bd9Sstevel@tonic-gate@ MSG_PSYM_NOSTATIC	"and partial initialization cannot be deferred to \
5267c478bd9Sstevel@tonic-gate			 a static object"
52769112eddSAli Bahrami@ MSG_MOVE_OVERLAP	"file %s: section [%u]%s: symbol '%s' overlapping move \
52857ef7aa9SRod Evans			 initialization: start=0x%llx, length=0x%llx: \
52957ef7aa9SRod Evans			 start=0x%llx, length=0x%llx"
5307c478bd9Sstevel@tonic-gate@ MSG_PSYM_EXPREASON1	"output file is static object"
5317c478bd9Sstevel@tonic-gate@ MSG_PSYM_EXPREASON2	"-z nopartial option in effect"
5327c478bd9Sstevel@tonic-gate@ MSG_PSYM_EXPREASON3	"move infrastructure size is greater than move data"
5337c478bd9Sstevel@tonic-gate
5347c478bd9Sstevel@tonic-gate#
5357c478bd9Sstevel@tonic-gate# Support library failures
5367c478bd9Sstevel@tonic-gate#
5377c478bd9Sstevel@tonic-gate@ MSG_SUP_NOLOAD	"dlopen() of support library (%s) failed with \
5387c478bd9Sstevel@tonic-gate			 error: %s"
5397c478bd9Sstevel@tonic-gate@ MSG_SUP_BADVERSION	"initialization of support library (%s) failed with \
5407c478bd9Sstevel@tonic-gate			 bad version.  supported: %d returned: %d"
5417c478bd9Sstevel@tonic-gate
5427c478bd9Sstevel@tonic-gate
5437c478bd9Sstevel@tonic-gate#
5447c478bd9Sstevel@tonic-gate# TRANSLATION_NOTE
5457c478bd9Sstevel@tonic-gate# 	The following 7 messages are the message to print the
5467c478bd9Sstevel@tonic-gate#	following example messages.
5477c478bd9Sstevel@tonic-gate#
5487c478bd9Sstevel@tonic-gate#Undefined			first referenced
5497c478bd9Sstevel@tonic-gate# symbol  			    in file
5507c478bd9Sstevel@tonic-gate#inquire                            halt_hold.o
5517c478bd9Sstevel@tonic-gate#
5527c478bd9Sstevel@tonic-gate@ MSG_SYM_FMT_UNDEF	"%s\t\t\t%s\
5537c478bd9Sstevel@tonic-gate			 \n %s  \t\t\t    %s"
5547c478bd9Sstevel@tonic-gate
5557c478bd9Sstevel@tonic-gate#
5567c478bd9Sstevel@tonic-gate# TRANSLATION_NOTE
5577c478bd9Sstevel@tonic-gate#	The next two msdid make a sentence. So translate:
5587c478bd9Sstevel@tonic-gate#		"Undefined symbol"
5597c478bd9Sstevel@tonic-gate#	And separate them into two msgstr considering the proper
5607c478bd9Sstevel@tonic-gate#	alignment.
5617c478bd9Sstevel@tonic-gate@ MSG_SYM_UNDEF_ITM_11	"Undefined"
5627c478bd9Sstevel@tonic-gate@ MSG_SYM_UNDEF_ITM_12	"symbol"
5637c478bd9Sstevel@tonic-gate#
5647c478bd9Sstevel@tonic-gate# TRANSLATION_NOTE
5657c478bd9Sstevel@tonic-gate#	The next two msdid make a sentence. So translate:
5667c478bd9Sstevel@tonic-gate#		"first referenced in file"
5677c478bd9Sstevel@tonic-gate#	And separate them into two msgstr considering the proper
5687c478bd9Sstevel@tonic-gate#	alignment.
5697c478bd9Sstevel@tonic-gate@ MSG_SYM_UNDEF_ITM_21	"first referenced"
5707c478bd9Sstevel@tonic-gate@ MSG_SYM_UNDEF_ITM_22	"in file"
5717c478bd9Sstevel@tonic-gate#
5727c478bd9Sstevel@tonic-gate
5737c478bd9Sstevel@tonic-gate@ MSG_SYM_UND_UNDEF	"%-35s %s"
5747c478bd9Sstevel@tonic-gate@ MSG_SYM_UND_NOVER	"%-35s %s  (symbol has no version assigned)"
5757c478bd9Sstevel@tonic-gate@ MSG_SYM_UND_IMPL	"%-35s %s  (symbol belongs to implicit dependency %s)"
5767c478bd9Sstevel@tonic-gate@ MSG_SYM_UND_NOTA	"%-35s %s  (symbol belongs to unavailable version %s \
5777c478bd9Sstevel@tonic-gate			 (%s))"
5787c478bd9Sstevel@tonic-gate@ MSG_SYM_UND_BNDLOCAL	"%-35s %s  (symbol scope specifies local binding)"
5797c478bd9Sstevel@tonic-gate
580c1c6f601Srie@ MSG_SYM_ENTRY		"entry point"
58169112eddSAli Bahrami@ MSG_SYM_UNDEF		"%s symbol '%s' is undefined"
58269112eddSAli Bahrami@ MSG_SYM_EXTERN	"%s symbol '%s' is undefined  (symbol belongs to \
583c1c6f601Srie			 dependency %s)"
58469112eddSAli Bahrami@ MSG_SYM_NOCRT		"symbol '%s' not found, but %s section exists - \
585c1c6f601Srie			 possible link-edit without using the compiler driver"
5867c478bd9Sstevel@tonic-gate
5877c478bd9Sstevel@tonic-gate# Output file update messages
5887c478bd9Sstevel@tonic-gate
58969112eddSAli Bahrami@ MSG_UPD_NOREADSEG	"No read-only segments found.  Setting '_etext' to 0"
59069112eddSAli Bahrami@ MSG_UPD_NORDWRSEG	"No read-write segments found.  Setting '_edata' to 0"
59169112eddSAli Bahrami@ MSG_UPD_NOSEG		"Setting 'end' and '_end' to 0"
5927c478bd9Sstevel@tonic-gate
5937c478bd9Sstevel@tonic-gate@ MSG_UPD_SEGOVERLAP	"%s: segment address overlap;\n\
5947c478bd9Sstevel@tonic-gate			 \tprevious segment ending at address 0x%llx overlaps\n\
59569112eddSAli Bahrami			 \tuser defined segment '%s' starting at address 0x%llx"
5967c478bd9Sstevel@tonic-gate@ MSG_UPD_LARGSIZE	"%s: segment %s calculated size 0x%llx\n\
5977c478bd9Sstevel@tonic-gate			 \tis larger than user-defined size 0x%llx"
5987c478bd9Sstevel@tonic-gate
5997c478bd9Sstevel@tonic-gate@ MSG_UPD_NOBITS	"NOBITS section found before end of initialized data"
60069112eddSAli Bahrami@ MSG_SEG_FIRNOTLOAD	"First segment has type %s, PT_LOAD required: %s"
601d444b03eSAli Bahrami@ MSG_UPD_MULEHFRAME	"file %s; section [%u]%s and file %s; section [%u]%s \
602d444b03eSAli Bahrami			 have incompatibile attributes and cannot \
603d444b03eSAli Bahrami			 be merged into a single output section"
6047c478bd9Sstevel@tonic-gate
6057c478bd9Sstevel@tonic-gate
6067c478bd9Sstevel@tonic-gate# Version processing messages
6077c478bd9Sstevel@tonic-gate
6087c478bd9Sstevel@tonic-gate@ MSG_VER_HIGHER	"file %s: version revision %d is higher than \
6097c478bd9Sstevel@tonic-gate			 expected %d"
61069112eddSAli Bahrami@ MSG_VER_NOEXIST	"file %s: version '%s' does not exist:\n\
6117c478bd9Sstevel@tonic-gate			 \trequired by file %s"
61269112eddSAli Bahrami@ MSG_VER_UNDEF		"version '%s' undefined, referenced by version '%s':\n\
6137c478bd9Sstevel@tonic-gate			 \trequired by file %s"
61469112eddSAli Bahrami@ MSG_VER_UNAVAIL	"file %s: version '%s' is unavailable:\n\
6157c478bd9Sstevel@tonic-gate			 \trequired by file %s"
61669112eddSAli Bahrami@ MSG_VER_DEFINED	"version symbol '%s' already defined in file %s"
61769112eddSAli Bahrami@ MSG_VER_INVALNDX	"version symbol '%s' from file %s has an invalid \
6187c478bd9Sstevel@tonic-gate			 version index (%d)"
61969112eddSAli Bahrami@ MSG_VER_ADDVERS	"unused $ADDVERS specification from file '%s' \
62069112eddSAli Bahrami			 for object '%s'\nversion(s):"
6217c478bd9Sstevel@tonic-gate@ MSG_VER_ADDVER	"\t%s"
6227c478bd9Sstevel@tonic-gate@ MSG_VER_CYCLIC	"following versions generate cyclic dependency:"
6237c478bd9Sstevel@tonic-gate
62408278a5eSRod Evans# Capabilities messages
62508278a5eSRod Evans
62608278a5eSRod Evans@ MSG_CAP_MULDEF	"capabilities symbol '%s' has multiply-defined members:"
62708278a5eSRod Evans@ MSG_CAP_MULDEFSYMS	"\t(file %s symbol '%s'; file %s symbol '%s');"
62808278a5eSRod Evans@ MSG_CAP_REDUNDANT	"file %s: section [%u]%s: symbol capabilities \
62908278a5eSRod Evans			 redundant, as object capabilities are more restrictive"
630d47ecb8cSRod Evans@ MSG_CAP_NOSYMSFOUND	"no global symbols have been found that are associated \
631d47ecb8cSRod Evans			 with capabilities identified relocatable objects: \
632d47ecb8cSRod Evans			 -z symbolcap has no effect"
63308278a5eSRod Evans
63408278a5eSRod Evans@ MSG_CAPINFO_INVALSYM	"file %s: capabilities info section [%u]%s: index %d: \
63508278a5eSRod Evans			 family member symbol '%s': invalid"
63608278a5eSRod Evans@ MSG_CAPINFO_INVALLEAD	"file %s: capabilities info section [%u]%s: index %d: \
63708278a5eSRod Evans			 family lead symbol '%s': invalid symbol index %d"
6387c478bd9Sstevel@tonic-gate
6397c478bd9Sstevel@tonic-gate# Basic strings
6407c478bd9Sstevel@tonic-gate
6417c478bd9Sstevel@tonic-gate@ MSG_STR_ALIGNMENTS	"alignments"
6427c478bd9Sstevel@tonic-gate@ MSG_STR_COMMAND	"(command line)"
643f5a18a30Srie@ MSG_STR_TLSREL	"(internal TLS relocation requirement)"
6447c478bd9Sstevel@tonic-gate@ MSG_STR_SIZES		"sizes"
6457c478bd9Sstevel@tonic-gate@ MSG_STR_UNKNOWN       "<unknown>"
646cce0e03bSab196087@ MSG_STR_SECTION	"%s (section)"
647cce0e03bSab196087@ MSG_STR_SECTION_MSTR	"%s (merged string section)"
6487c478bd9Sstevel@tonic-gate
6497c478bd9Sstevel@tonic-gate#
6507c478bd9Sstevel@tonic-gate# TRANSLATION_NOTE
6517c478bd9Sstevel@tonic-gate#	The elf_ function name represents a man page reference and should not
6527c478bd9Sstevel@tonic-gate#	be translated.
6537c478bd9Sstevel@tonic-gate@ MSG_ELF_BEGIN		"file %s: elf_begin"
654a6d4d7d5SRod Evans@ MSG_ELF_CNTL		"file %s: elf_cntl"
6557c478bd9Sstevel@tonic-gate@ MSG_ELF_GETARHDR	"file %s: elf_getarhdr"
6567c478bd9Sstevel@tonic-gate@ MSG_ELF_GETARSYM	"file %s: elf_getarsym"
6577c478bd9Sstevel@tonic-gate@ MSG_ELF_GETDATA	"file %s: elf_getdata"
6587c478bd9Sstevel@tonic-gate@ MSG_ELF_GETEHDR	"file %s: elf_getehdr"
6597c478bd9Sstevel@tonic-gate@ MSG_ELF_GETPHDR	"file %s: elf_getphdr"
6607c478bd9Sstevel@tonic-gate@ MSG_ELF_GETSCN	"file %s: elf_getscn: scnndx: %d"
6617c478bd9Sstevel@tonic-gate@ MSG_ELF_GETSHDR	"file %s: elf_getshdr"
66256deab07SRod Evans@ MSG_ELF_MEMORY	"file %s: elf_memory"
6637c478bd9Sstevel@tonic-gate@ MSG_ELF_NDXSCN	"file %s: elf_ndxscn"
6647c478bd9Sstevel@tonic-gate@ MSG_ELF_NEWDATA	"file %s: elf_newdata"
6657c478bd9Sstevel@tonic-gate@ MSG_ELF_NEWEHDR	"file %s: elf_newehdr"
6667c478bd9Sstevel@tonic-gate@ MSG_ELF_NEWSCN	"file %s: elf_newscn"
6677c478bd9Sstevel@tonic-gate@ MSG_ELF_NEWPHDR	"file %s: elf_newphdr"
6687c478bd9Sstevel@tonic-gate@ MSG_ELF_STRPTR	"file %s: elf_strptr"
6697c478bd9Sstevel@tonic-gate@ MSG_ELF_UPDATE	"file %s: elf_update"
670ba2be530Sab196087@ MSG_ELF_SWAP_WRIMAGE	"file %s: _elf_swap_wrimage"
6717c478bd9Sstevel@tonic-gate
6727c478bd9Sstevel@tonic-gate
6737c478bd9Sstevel@tonic-gate@ MSG_REJ_MACH		"file %s: wrong ELF machine type: %s"
6747c478bd9Sstevel@tonic-gate@ MSG_REJ_CLASS		"file %s: wrong ELF class: %s"
6757c478bd9Sstevel@tonic-gate@ MSG_REJ_DATA		"file %s: wrong ELF data format: %s"
6767c478bd9Sstevel@tonic-gate@ MSG_REJ_TYPE		"file %s: bad ELF type: %s"
6777c478bd9Sstevel@tonic-gate@ MSG_REJ_BADFLAG	"file %s: bad ELF flags value: %s"
6787c478bd9Sstevel@tonic-gate@ MSG_REJ_MISFLAG	"file %s: mismatched ELF flags value: %s"
6797c478bd9Sstevel@tonic-gate@ MSG_REJ_VERSION	"file %s: mismatched ELF/lib version: %s"
6807c478bd9Sstevel@tonic-gate@ MSG_REJ_HAL		"file %s: HAL R1 extensions required"
6817c478bd9Sstevel@tonic-gate@ MSG_REJ_US3		"file %s: Sun UltraSPARC III extensions required"
6827c478bd9Sstevel@tonic-gate@ MSG_REJ_STR		"file %s: %s"
6837c478bd9Sstevel@tonic-gate@ MSG_REJ_UNKFILE	"file %s: unknown file type"
68408278a5eSRod Evans@ MSG_REJ_UNKCAP	"file=%s; unknown capability: %d"
68508278a5eSRod Evans@ MSG_REJ_HWCAP_1	"file %s: hardware capability (CA_SUNW_HW_1) \
68608278a5eSRod Evans			 unsupported: %s"
68708278a5eSRod Evans@ MSG_REJ_SFCAP_1	"file %s: software capability (CA_SUNW_SF_1) \
68808278a5eSRod Evans			 unsupported: %s"
68908278a5eSRod Evans@ MSG_REJ_MACHCAP	"file %s: machine capability (CA_SUNW_MACH) \
69008278a5eSRod Evans			 unsupported: %s"
69108278a5eSRod Evans@ MSG_REJ_PLATCAP	"file %s: platform capability (CA_SUNW_PLAT) \
69208278a5eSRod Evans			 unsupported: %s"
69308278a5eSRod Evans@ MSG_REJ_HWCAP_2	"file %s: hardware capability (CA_SUNW_HW_2) \
69408278a5eSRod Evans			 unsupported: %s"
695dc0f59e5SAli Bahrami@ MSG_REJ_ARCHIVE	"file %s: invalid archive use"
6967c478bd9Sstevel@tonic-gate
6971007fd6fSAli Bahrami# Guidance messages
6981007fd6fSAli Bahrami@ MSG_GUIDE_SUMMARY	"see ld(1) -z guidance for more information"
6991007fd6fSAli Bahrami@ MSG_GUIDE_DEFS	"-z defs option recommended for shared objects"
7001007fd6fSAli Bahrami@ MSG_GUIDE_DIRECT	"-B direct or -z direct option recommended before \
7011007fd6fSAli Bahrami			 first dependency"
7021007fd6fSAli Bahrami@ MSG_GUIDE_LAZYLOAD	"-z lazyload option recommended before \
7031007fd6fSAli Bahrami			 first dependency"
7041007fd6fSAli Bahrami@ MSG_GUIDE_MAPFILE	"version 2 mapfile syntax recommended: %s"
7051007fd6fSAli Bahrami@ MSG_GUIDE_TEXT	"position independent (PIC) code recommended for \
7061007fd6fSAli Bahrami			 shared objects"
7071007fd6fSAli Bahrami@ MSG_GUIDE_UNUSED	"removal of unused dependency recommended: %s"
70869112eddSAli Bahrami
7097c478bd9Sstevel@tonic-gate@ _END_
7107c478bd9Sstevel@tonic-gate
7117c478bd9Sstevel@tonic-gate
7127c478bd9Sstevel@tonic-gate# The following strings represent reserved names.  Reference to these strings
7137c478bd9Sstevel@tonic-gate# is via the MSG_ORIG() macro, and thus translations are not required.
7147c478bd9Sstevel@tonic-gate
71569112eddSAli Bahrami@ MSG_STR_EOF		"<eof>"
71669112eddSAli Bahrami@ MSG_STR_ERROR		"<error>"
7177c478bd9Sstevel@tonic-gate@ MSG_STR_EMPTY		""
71869112eddSAli Bahrami@ MSG_QSTR_BANG		"'!'"
7197c478bd9Sstevel@tonic-gate@ MSG_STR_COLON		":"
72069112eddSAli Bahrami@ MSG_QSTR_COLON	"':'"
72169112eddSAli Bahrami@ MSG_QSTR_SEMICOLON	"';'"
72269112eddSAli Bahrami@ MSG_QSTR_EQUAL	"'='"
72369112eddSAli Bahrami@ MSG_QSTR_PLUSEQ	"'+='"
72469112eddSAli Bahrami@ MSG_QSTR_MINUSEQ	"'-='"
72569112eddSAli Bahrami@ MSG_QSTR_ATSIGN	"'@'"
72669112eddSAli Bahrami@ MSG_QSTR_DASH		"'-'"
72769112eddSAli Bahrami@ MSG_QSTR_LEFTBKT	"'{'"
72869112eddSAli Bahrami@ MSG_QSTR_RIGHTBKT	"'}'"
72969112eddSAli Bahrami@ MSG_QSTR_PIPE		"'|'"
73069112eddSAli Bahrami@ MSG_QSTR_STAR		"'*'"
7317c478bd9Sstevel@tonic-gate@ MSG_STR_DOT		"."
7327c478bd9Sstevel@tonic-gate@ MSG_STR_SLASH		"/"
7337c478bd9Sstevel@tonic-gate@ MSG_STR_DYNAMIC	"(.dynamic)"
7347c478bd9Sstevel@tonic-gate@ MSG_STR_ORIGIN	"$ORIGIN"
73508278a5eSRod Evans@ MSG_STR_MACHINE	"$MACHINE"
7367c478bd9Sstevel@tonic-gate@ MSG_STR_PLATFORM	"$PLATFORM"
7377c478bd9Sstevel@tonic-gate@ MSG_STR_ISALIST	"$ISALIST"
7387c478bd9Sstevel@tonic-gate@ MSG_STR_OSNAME	"$OSNAME"
7397c478bd9Sstevel@tonic-gate@ MSG_STR_OSREL		"$OSREL"
740cdcc71c0SAli Bahrami@ MSG_STR_UU_REAL_U	"__real_"
741cdcc71c0SAli Bahrami@ MSG_STR_UU_WRAP_U	"__wrap_"
74269112eddSAli Bahrami@ MSG_STR_UELF32	"_ELF32"
74369112eddSAli Bahrami@ MSG_STR_UELF64	"_ELF64"
74469112eddSAli Bahrami@ MSG_STR_USPARC	"_sparc"
74569112eddSAli Bahrami@ MSG_STR_UX86		"_x86"
74669112eddSAli Bahrami@ MSG_STR_TRUE		"true"
74769112eddSAli Bahrami
74869112eddSAli Bahrami@ MSG_STR_CDIR_ADD	"$add"
74969112eddSAli Bahrami@ MSG_STR_CDIR_CLEAR	"$clear"
75069112eddSAli Bahrami@ MSG_STR_CDIR_ERROR	"$error"
75169112eddSAli Bahrami@ MSG_STR_CDIR_MFVER	"$mapfile_version"
75269112eddSAli Bahrami@ MSG_STR_CDIR_IF	"$if"
75369112eddSAli Bahrami@ MSG_STR_CDIR_ELIF	"$elif"
75469112eddSAli Bahrami@ MSG_STR_CDIR_ELSE	"$else"
75569112eddSAli Bahrami@ MSG_STR_CDIR_ENDIF	"$endif"
75669112eddSAli Bahrami
757ef16f6b5SRichard Lowe@ MSG_STR_GROUP		"GROUP"
758ef16f6b5SRichard Lowe@ MSG_STR_SUNW_COMDAT	"SUNW_COMDAT"
7597c478bd9Sstevel@tonic-gate
7607c478bd9Sstevel@tonic-gate@ MSG_FMT_ARMEM		"%s(%s)"
7617c478bd9Sstevel@tonic-gate@ MSG_FMT_COLPATH	"%s:%s"
76269112eddSAli Bahrami@ MSG_FMT_SYMNAM	"'%s'"
763ba2be530Sab196087@ MSG_FMT_NULLSYMNAM	"%s[%d]"
764cdcc71c0SAli Bahrami@ MSG_FMT_STRCAT	"%s%s"
7657c478bd9Sstevel@tonic-gate
7667c478bd9Sstevel@tonic-gate@ MSG_PTH_RTLD		"/usr/lib/ld.so.1"
7677c478bd9Sstevel@tonic-gate
7687c478bd9Sstevel@tonic-gate@ MSG_SUNW_OST_SGS	"SUNW_OST_SGS"
7697c478bd9Sstevel@tonic-gate
7707c478bd9Sstevel@tonic-gate
7717c478bd9Sstevel@tonic-gate# Section strings
7727c478bd9Sstevel@tonic-gate
7737c478bd9Sstevel@tonic-gate@ MSG_SCN_BSS		".bss"
774c1c6f601Srie@ MSG_SCN_DATA		".data"
7757c478bd9Sstevel@tonic-gate@ MSG_SCN_COMMENT	".comment"
7767c478bd9Sstevel@tonic-gate@ MSG_SCN_DEBUG		".debug"
7770e233487SRod Evans@ MSG_SCN_DEBUG_INFO	".debug_info"
7787c478bd9Sstevel@tonic-gate@ MSG_SCN_DYNAMIC	".dynamic"
779d579eb63Sab196087@ MSG_SCN_DYNSYMSORT	".SUNW_dynsymsort"
780d579eb63Sab196087@ MSG_SCN_DYNTLSSORT	".SUNW_dyntlssort"
7817c478bd9Sstevel@tonic-gate@ MSG_SCN_DYNSTR	".dynstr"
7827c478bd9Sstevel@tonic-gate@ MSG_SCN_DYNSYM	".dynsym"
7837c478bd9Sstevel@tonic-gate@ MSG_SCN_DYNSYM_SHNDX	".dynsym_shndx"
7849039eeafSab196087@ MSG_SCN_LDYNSYM	".SUNW_ldynsym"
7859039eeafSab196087@ MSG_SCN_LDYNSYM_SHNDX	".SUNW_ldynsym_shndx"
7867c478bd9Sstevel@tonic-gate@ MSG_SCN_EX_SHARED	".ex_shared"
7877c478bd9Sstevel@tonic-gate@ MSG_SCN_EX_RANGES	".exception_ranges"
7887c478bd9Sstevel@tonic-gate@ MSG_SCN_EXCL		".excl"
7897c478bd9Sstevel@tonic-gate@ MSG_SCN_FINI		".fini"
790b23a7923SAli Bahrami@ MSG_SCN_FINIARRAY	".fini_array"
7917c478bd9Sstevel@tonic-gate@ MSG_SCN_GOT		".got"
7920e233487SRod Evans@ MSG_SCN_GNU_LINKONCE	".gnu.linkonce."
7937c478bd9Sstevel@tonic-gate@ MSG_SCN_HASH		".hash"
7947c478bd9Sstevel@tonic-gate@ MSG_SCN_INDEX		".index"
7957c478bd9Sstevel@tonic-gate@ MSG_SCN_INIT		".init"
796b23a7923SAli Bahrami@ MSG_SCN_INITARRAY	".init_array"
7977c478bd9Sstevel@tonic-gate@ MSG_SCN_INTERP	".interp"
79854d82594Sseizo@ MSG_SCN_LBSS		".lbss"
7990e233487SRod Evans@ MSG_SCN_LDATA		".ldata"
8007c478bd9Sstevel@tonic-gate@ MSG_SCN_LINE		".line"
80154d82594Sseizo@ MSG_SCN_LRODATA	".lrodata"
8027c478bd9Sstevel@tonic-gate@ MSG_SCN_PLT		".plt"
803b23a7923SAli Bahrami@ MSG_SCN_PREINITARRAY	".preinit_array"
8047c478bd9Sstevel@tonic-gate@ MSG_SCN_REL		".rel"
8057c478bd9Sstevel@tonic-gate@ MSG_SCN_RELA		".rela"
8060e233487SRod Evans@ MSG_SCN_RODATA	".rodata"
8070e233487SRod Evans@ MSG_SCN_SBSS		".sbss"
8080e233487SRod Evans@ MSG_SCN_SBSS2		".sbss2"
8090e233487SRod Evans@ MSG_SCN_SDATA		".sdata"
8100e233487SRod Evans@ MSG_SCN_SDATA2	".sdata2"
8117c478bd9Sstevel@tonic-gate@ MSG_SCN_SHSTRTAB	".shstrtab"
8127c478bd9Sstevel@tonic-gate@ MSG_SCN_STAB		".stab"
8137c478bd9Sstevel@tonic-gate@ MSG_SCN_STABEXCL	".stab.exclstr"
8147c478bd9Sstevel@tonic-gate@ MSG_SCN_STRTAB	".strtab"
8157c478bd9Sstevel@tonic-gate@ MSG_SCN_SUNWMOVE	".SUNW_move"
8167c478bd9Sstevel@tonic-gate@ MSG_SCN_SUNWRELOC	".SUNW_reloc"
8177c478bd9Sstevel@tonic-gate@ MSG_SCN_SUNWSYMINFO	".SUNW_syminfo"
8187c478bd9Sstevel@tonic-gate@ MSG_SCN_SUNWVERSION	".SUNW_version"
8197c478bd9Sstevel@tonic-gate@ MSG_SCN_SUNWVERSYM	".SUNW_versym"
8207c478bd9Sstevel@tonic-gate@ MSG_SCN_SUNWCAP	".SUNW_cap"
82108278a5eSRod Evans@ MSG_SCN_SUNWCAPINFO	".SUNW_capinfo"
82208278a5eSRod Evans@ MSG_SCN_SUNWCAPCHAIN	".SUNW_capchain"
8237c478bd9Sstevel@tonic-gate@ MSG_SCN_SYMTAB	".symtab"
8247c478bd9Sstevel@tonic-gate@ MSG_SCN_SYMTAB_SHNDX	".symtab_shndx"
8257c478bd9Sstevel@tonic-gate@ MSG_SCN_TBSS		".tbss"
8260e233487SRod Evans@ MSG_SCN_TDATA		".tdata"
827c1c6f601Srie@ MSG_SCN_TEXT		".text"
828c1c6f601Srie
829c1c6f601Srie@ MSG_SYM_FINIARRAY	"finiarray"
830c1c6f601Srie@ MSG_SYM_INITARRAY	"initarray"
831c1c6f601Srie@ MSG_SYM_PREINITARRAY	"preinitarray"
8327c478bd9Sstevel@tonic-gate
8337c478bd9Sstevel@tonic-gate#
8347c478bd9Sstevel@tonic-gate# GNU section names
8357c478bd9Sstevel@tonic-gate#
8367c478bd9Sstevel@tonic-gate@ MSG_SCN_CTORS		".ctors"
8377c478bd9Sstevel@tonic-gate@ MSG_SCN_DTORS		".dtors"
8387c478bd9Sstevel@tonic-gate@ MSG_SCN_EHFRAME	".eh_frame"
8397c478bd9Sstevel@tonic-gate@ MSG_SCN_EHFRAME_HDR	".eh_frame_hdr"
840ca4eed8bSAli Bahrami@ MSG_SCN_GCC_X_TBL	".gcc_except_table"
8417c478bd9Sstevel@tonic-gate@ MSG_SCN_JCR		".jcr"
8427c478bd9Sstevel@tonic-gate
84369112eddSAli Bahrami# Segment names for segments referenced by entrance criteria
8447c478bd9Sstevel@tonic-gate
8457c478bd9Sstevel@tonic-gate@ MSG_ENT_BSS		"bss"
846e23c41c9SAli Bahrami@ MSG_ENT_DATA		"data"
847e23c41c9SAli Bahrami@ MSG_ENT_EXTRA		"extra"
84854d82594Sseizo@ MSG_ENT_LDATA		"ldata"
84954d82594Sseizo@ MSG_ENT_LRODATA	"lrodata"
8507c478bd9Sstevel@tonic-gate@ MSG_ENT_NOTE		"note"
851e23c41c9SAli Bahrami@ MSG_ENT_TEXT		"text"
8527c478bd9Sstevel@tonic-gate
8537c478bd9Sstevel@tonic-gate# Symbol names
8547c478bd9Sstevel@tonic-gate
8557c478bd9Sstevel@tonic-gate@ MSG_SYM_START		"_start"
8567c478bd9Sstevel@tonic-gate@ MSG_SYM_MAIN		"main"
8577c478bd9Sstevel@tonic-gate
8587c478bd9Sstevel@tonic-gate@ MSG_SYM_FINI_U	"_fini"
8597c478bd9Sstevel@tonic-gate@ MSG_SYM_INIT_U	"_init"
8607c478bd9Sstevel@tonic-gate@ MSG_SYM_DYNAMIC	"DYNAMIC"
8617c478bd9Sstevel@tonic-gate@ MSG_SYM_DYNAMIC_U	"_DYNAMIC"
8627c478bd9Sstevel@tonic-gate@ MSG_SYM_EDATA		"edata"
8637c478bd9Sstevel@tonic-gate@ MSG_SYM_EDATA_U	"_edata"
8647c478bd9Sstevel@tonic-gate@ MSG_SYM_END		"end"
8657c478bd9Sstevel@tonic-gate@ MSG_SYM_END_U		"_end"
8667c478bd9Sstevel@tonic-gate@ MSG_SYM_ETEXT		"etext"
8677c478bd9Sstevel@tonic-gate@ MSG_SYM_ETEXT_U	"_etext"
8687c478bd9Sstevel@tonic-gate@ MSG_SYM_GOFTBL	"GLOBAL_OFFSET_TABLE_"
8697c478bd9Sstevel@tonic-gate@ MSG_SYM_GOFTBL_U	"_GLOBAL_OFFSET_TABLE_"
8707c478bd9Sstevel@tonic-gate@ MSG_SYM_PLKTBL	"PROCEDURE_LINKAGE_TABLE_"
8717c478bd9Sstevel@tonic-gate@ MSG_SYM_PLKTBL_U	"_PROCEDURE_LINKAGE_TABLE_"
8727c478bd9Sstevel@tonic-gate@ MSG_SYM_TLSGETADDR_U	"__tls_get_addr"
8737c478bd9Sstevel@tonic-gate@ MSG_SYM_TLSGETADDR_UU	"___tls_get_addr"
8747c478bd9Sstevel@tonic-gate
8757c478bd9Sstevel@tonic-gate@ MSG_SYM_L_END		"END_"
8767c478bd9Sstevel@tonic-gate@ MSG_SYM_L_END_U	"_END_"
8777c478bd9Sstevel@tonic-gate@ MSG_SYM_L_START	"START_"
8787c478bd9Sstevel@tonic-gate@ MSG_SYM_L_START_U	"_START_"
8797c478bd9Sstevel@tonic-gate
8807c478bd9Sstevel@tonic-gate# Support functions
8817c478bd9Sstevel@tonic-gate
8822926dd2eSrie@ MSG_SUP_VERSION	"ld_version"
8832926dd2eSrie@ MSG_SUP_INPUT_DONE	"ld_input_done"
8842926dd2eSrie
8857c478bd9Sstevel@tonic-gate@ MSG_SUP_START_64	"ld_start64"
8867c478bd9Sstevel@tonic-gate@ MSG_SUP_ATEXIT_64	"ld_atexit64"
8873906e0c2Srie@ MSG_SUP_OPEN_64	"ld_open64"
8887c478bd9Sstevel@tonic-gate@ MSG_SUP_FILE_64	"ld_file64"
8892926dd2eSrie@ MSG_SUP_INSEC_64	"ld_input_section64"
8902926dd2eSrie@ MSG_SUP_SEC_64	"ld_section64"
8912926dd2eSrie
8927c478bd9Sstevel@tonic-gate@ MSG_SUP_START		"ld_start"
8937c478bd9Sstevel@tonic-gate@ MSG_SUP_ATEXIT	"ld_atexit"
8943906e0c2Srie@ MSG_SUP_OPEN		"ld_open"
8957c478bd9Sstevel@tonic-gate@ MSG_SUP_FILE		"ld_file"
8962926dd2eSrie@ MSG_SUP_INSEC		"ld_input_section"
8972926dd2eSrie@ MSG_SUP_SEC		"ld_section"
8987c478bd9Sstevel@tonic-gate
8997c478bd9Sstevel@tonic-gate#
9007c478bd9Sstevel@tonic-gate# Message previously in 'ld'
9017c478bd9Sstevel@tonic-gate#
9027c478bd9Sstevel@tonic-gate#
9037c478bd9Sstevel@tonic-gate@ _START_
9047c478bd9Sstevel@tonic-gate
9057c478bd9Sstevel@tonic-gate# System error messages
9067c478bd9Sstevel@tonic-gate
9077c478bd9Sstevel@tonic-gate@ MSG_SYS_STAT		"file %s: stat failed: %s"
9087c478bd9Sstevel@tonic-gate@ MSG_SYS_READ		"file %s: read failed: %s"
9097c478bd9Sstevel@tonic-gate@ MSG_SYS_NOTREG	"file %s: is not a regular file"
9107c478bd9Sstevel@tonic-gate
9117c478bd9Sstevel@tonic-gate# Argument processing messages
9127c478bd9Sstevel@tonic-gate
913551cffe3SAli Bahrami@ MSG_ARG_DY_INCOMP	"%s option is incompatible with building a dynamic \
91492a02081SRod Evans			 executable"
915551cffe3SAli Bahrami@ MSG_MARG_DY_INCOMP	"%s is incompatible with building a dynamic \
916551cffe3SAli Bahrami			 executable"
917551cffe3SAli Bahrami@ MSG_ARG_ST_INCOMP	"%s option is incompatible with building a static \
918551cffe3SAli Bahrami			 object (-dn, -r, --relocatable)"
919551cffe3SAli Bahrami@ MSG_MARG_ST_INCOMP	"%s is incompatible with building a static \
920551cffe3SAli Bahrami			 object (-dn, -r, --relocatable)"
921604635faSRod Evans@ MSG_MARG_ST_ONLYAVL	"%s is only available when building a shared object"
9227c478bd9Sstevel@tonic-gate@ MSG_ARG_INCOMP	"option %s and %s are incompatible"
923551cffe3SAli Bahrami@ MSG_MARG_INCOMP	"%s and %s are incompatible"
9247c478bd9Sstevel@tonic-gate@ MSG_ARG_MTONCE	"option %s appears more than once, first setting taken"
925551cffe3SAli Bahrami@ MSG_MARG_MTONCE	"%s appears more than once, first setting taken"
92669112eddSAli Bahrami@ MSG_ARG_ILLEGAL	"option %s has illegal argument '%s'"
9277c478bd9Sstevel@tonic-gate@ MSG_ARG_YP		"option -YP and -Y%c may not be specified concurrently"
928551cffe3SAli Bahrami@ MSG_ARG_STRIP		"%s specified with %s; only debugging \
9297c478bd9Sstevel@tonic-gate			 information stripped"
9307c478bd9Sstevel@tonic-gate@ MSG_ARG_NOFILES	"no files on input command line"
9317c478bd9Sstevel@tonic-gate@ MSG_ARG_NOFLTR	"option %s is only meaningful when building a filter"
9327c478bd9Sstevel@tonic-gate@ MSG_ARG_NODEFLIB	"the default library search path has been suppressed, \
933551cffe3SAli Bahrami			 but no runpaths have been specified via %s"
93469112eddSAli Bahrami@ MSG_ARG_NOENTRY	"entry point symbol '%s' is undefined"
935635216b6SRod Evans@ MSG_ARG_UNSUPPORTED	"option %s is no longer supported; ignored"
93608278a5eSRod Evans@ MSG_MARG_ONLY		"option %s can only be used with a %s"
9371007fd6fSAli Bahrami@ MSG_ARG_UNKNOWN	"unrecognized option '-%c'"
938c5accfb2SRichard Lowe@ MSG_ARG_LONG_UNKNOWN	"unrecognized option '%s'"
9391007fd6fSAli Bahrami@ MSG_ARG_USEHELP	"use the -z help option for usage information"
9401007fd6fSAli Bahrami
9417c478bd9Sstevel@tonic-gate
942551cffe3SAli Bahrami@ MSG_ARG_FLAGS		"flags processing errors"
943551cffe3SAli Bahrami@ MSG_ARG_FILES		"file processing errors. No output written to %s"
944551cffe3SAli Bahrami@ MSG_ARG_SYM_WARN	"symbol referencing errors"
945551cffe3SAli Bahrami@ MSG_ARG_SYM_FATAL	"symbol referencing errors. No output written to %s"
946551cffe3SAli Bahrami@ MSG_ARG_AR_GRP_OLAP	"%s cannot be nested"
947551cffe3SAli Bahrami@ MSG_ARG_AR_GRP_BAD	"%s used without corresponding %s"
948551cffe3SAli Bahrami
949551cffe3SAli Bahrami
950551cffe3SAli Bahrami# Messages used to refer to options where there is more than
951551cffe3SAli Bahrami# one name accepted.
952551cffe3SAli Bahrami
953551cffe3SAli Bahrami@ MSG_MARG_AR_GRPS	"archive rescan groups \
954551cffe3SAli Bahrami			 (-z rescan-start, -(, --start-group)"
955551cffe3SAli Bahrami@ MSG_MARG_AR_GRP_END	"archive rescan group end option \
956551cffe3SAli Bahrami			 (-z rescan-end, -), --end-group)"
957551cffe3SAli Bahrami@ MSG_MARG_AR_GRP_START	"archive rescan group start option \
958551cffe3SAli Bahrami			 (-z rescan-start, -(, --start-group)"
959551cffe3SAli Bahrami@ MSG_MARG_ENTRY	"entry point option (-e, --entry)"
960551cffe3SAli Bahrami@ MSG_MARG_FILTER_AUX	"auxiliary filter option (-f, --auxiliary)"
961551cffe3SAli Bahrami@ MSG_MARG_FILTER	"filter option (-F, --filter)"
962551cffe3SAli Bahrami@ MSG_MARG_OUTFILE	"output object option (-o, --output)"
963551cffe3SAli Bahrami@ MSG_MARG_REL		"relocatable object option (-r, --relocatable)"
964551cffe3SAli Bahrami@ MSG_MARG_RPATH	"runpath option (-R, -rpath)"
965551cffe3SAli Bahrami@ MSG_MARG_SO		"shared object option (-G, -shared)"
966551cffe3SAli Bahrami@ MSG_MARG_SONAME	"soname option (-h, --soname)"
967551cffe3SAli Bahrami@ MSG_MARG_STRIP	"strip option (-s, --strip-all)"
9687c478bd9Sstevel@tonic-gate
9697c478bd9Sstevel@tonic-gate# Entrance criteria messages
9707c478bd9Sstevel@tonic-gate
9717c478bd9Sstevel@tonic-gate@ MSG_ENT_MAP_FMT_TIL_1	"\t\t%s\n\n"
9727c478bd9Sstevel@tonic-gate@ MSG_ENT_MAP_TITLE_1	"LINK EDITOR MEMORY MAP"
9737c478bd9Sstevel@tonic-gate
9747c478bd9Sstevel@tonic-gate#
9757c478bd9Sstevel@tonic-gate# TRANSLATION_NOTE -- Entry map header
9767c478bd9Sstevel@tonic-gate#
9777c478bd9Sstevel@tonic-gate# The next message is a format string for a title. The title is composed of
9787c478bd9Sstevel@tonic-gate# two lines. In C locale, it would look like:
9797c478bd9Sstevel@tonic-gate#
9807c478bd9Sstevel@tonic-gate# 	output		input		new
9817c478bd9Sstevel@tonic-gate#	section		section		displacement	size
9827c478bd9Sstevel@tonic-gate#
9837c478bd9Sstevel@tonic-gate# The \t characters are used for alignment.  (output section), (input section),
9847c478bd9Sstevel@tonic-gate# and (new displacement) have to be aligned.
9857c478bd9Sstevel@tonic-gate#
9867c478bd9Sstevel@tonic-gate@ MSG_ENT_MAP_FMT_TIL_2	"\n%s\t\t%s\t\t%s\n%s\t\t%s\t\t%s\t%s\n\n"
9877c478bd9Sstevel@tonic-gate@ MSG_ENT_MAP_FMT_TIL_3	"\n%s\t\t%s\t\t%s\n%s\t\t%s\t\t%s\t\t%s\n\n"
9887c478bd9Sstevel@tonic-gate@ MSG_ENT_ITM_OUTPUT	"output"
9897c478bd9Sstevel@tonic-gate@ MSG_ENT_ITM_INPUT	"input"
9907c478bd9Sstevel@tonic-gate@ MSG_ENT_ITM_NEW	"new"
9917c478bd9Sstevel@tonic-gate@ MSG_ENT_ITM_SECTION	"section"
9927c478bd9Sstevel@tonic-gate@ MSG_ENT_ITM_DISPMNT	"displacement"
9937c478bd9Sstevel@tonic-gate@ MSG_ENT_ITM_SIZE	"size"
9947c478bd9Sstevel@tonic-gate@ MSG_ENT_ITM_VIRTUAL	"virtual"
9957c478bd9Sstevel@tonic-gate@ MSG_ENT_ITM_ADDRESS	"address"
9967c478bd9Sstevel@tonic-gate
9977c478bd9Sstevel@tonic-gate@ MSG_ENT_MAP_ENTRY_1	"%-8.8s\t\t\t%08.2llx\t%08.2llx\n"
9987c478bd9Sstevel@tonic-gate@ MSG_ENT_MAP_ENTRY_2	"\t\t%-8.8s\t%08.2llx\t%08.2llx %s\n"
9997c478bd9Sstevel@tonic-gate
10007c478bd9Sstevel@tonic-gate#
10017c478bd9Sstevel@tonic-gate# TRANSLATION_NOTE -- multiple defined symbol table header
10027c478bd9Sstevel@tonic-gate#
10037c478bd9Sstevel@tonic-gate# In C locale, an example output is:
10047c478bd9Sstevel@tonic-gate#
10057c478bd9Sstevel@tonic-gate#		MULTIPLY DEFINED SYMBOLS
10067c478bd9Sstevel@tonic-gate#
10077c478bd9Sstevel@tonic-gate#
10087c478bd9Sstevel@tonic-gate#symbol				  definition used     also defined in
10097c478bd9Sstevel@tonic-gate#
10107c478bd9Sstevel@tonic-gate#variable1                           main.o
10117c478bd9Sstevel@tonic-gate#							./libfred.so
10127c478bd9Sstevel@tonic-gate@ MSG_ENT_MUL_FMT_TIL_0	"\n\n\t\t%s\n\n\n"
10137c478bd9Sstevel@tonic-gate@ MSG_ENT_MUL_TIL_0	"MULTIPLY DEFINED SYMBOLS"
10147c478bd9Sstevel@tonic-gate
10157c478bd9Sstevel@tonic-gate#
10167c478bd9Sstevel@tonic-gate# TRANSLATION_NOTE -- This is the format string for:
10177c478bd9Sstevel@tonic-gate#
10187c478bd9Sstevel@tonic-gate#symbol				  definition used     also defined in
10197c478bd9Sstevel@tonic-gate#
10207c478bd9Sstevel@tonic-gate@ MSG_ENT_MUL_FMT_TIL_1	"%s\t\t\t\t  %s     %s\n\n"
10217c478bd9Sstevel@tonic-gate@ MSG_ENT_MUL_ITM_SYM	"symbol"
10227c478bd9Sstevel@tonic-gate@ MSG_ENT_MUL_ITM_DEF_0	"definition used"
10237c478bd9Sstevel@tonic-gate@ MSG_ENT_MUL_ITM_DEF_1	"also defined in"
10247c478bd9Sstevel@tonic-gate
10257c478bd9Sstevel@tonic-gate#
10267c478bd9Sstevel@tonic-gate# TRANSLATION_NOTE -- This is the format string for the second item:
10277c478bd9Sstevel@tonic-gate#
10287c478bd9Sstevel@tonic-gate@ MSG_ENT_MUL_ENTRY_1	"%-35s %s\n"
10297c478bd9Sstevel@tonic-gate
10307c478bd9Sstevel@tonic-gate#
10317c478bd9Sstevel@tonic-gate# TRANSLATION_NOTE -- This is the format string for the third item:
10327c478bd9Sstevel@tonic-gate#
10337c478bd9Sstevel@tonic-gate@ MSG_ENT_MUL_ENTRY_2	"\t\t\t\t\t\t\t%s\n"
10347c478bd9Sstevel@tonic-gate
103569112eddSAli Bahrami@ MSG_ENT_NOSEC_1	"mapfile: %s segment: section '%s' does not appear \
103669112eddSAli Bahrami			 in mapfile specified input file(s)"
103769112eddSAli Bahrami@ MSG_ENT_NOSEC_2	"mapfile: %s segment: section '%s' does not appear \
10387c478bd9Sstevel@tonic-gate			 in any input file"
10397c478bd9Sstevel@tonic-gate
10407c478bd9Sstevel@tonic-gate# Library messages
10417c478bd9Sstevel@tonic-gate
10427c478bd9Sstevel@tonic-gate@ MSG_LIB_NOTFOUND	"library -l%s: not found"
10437c478bd9Sstevel@tonic-gate@ MSG_LIB_MALFORM	"LD_LIBRARY_PATH malformed"
10447c478bd9Sstevel@tonic-gate@ MSG_LIB_BADYP		"-YP library path malformed"
10457c478bd9Sstevel@tonic-gate
10467c478bd9Sstevel@tonic-gate
10477c478bd9Sstevel@tonic-gate# Mapfile processing messages
10487c478bd9Sstevel@tonic-gate
104969112eddSAli Bahrami@ MSG_MAP_BADAUTORED	"%s: %llu: auto-reduction ('*') can only be used in \
105069112eddSAli Bahrami			 hidden/local, or eliminate scope"
105169112eddSAli Bahrami@ MSG_MAP_BADFLAG	"%s: %llu: badly formed section flags '%s'"
105269112eddSAli Bahrami@ MSG_MAP_BADBNAME	"%s: %llu: basename cannot contain path \
105369112eddSAli Bahrami			 separator ('/'): %s"
105469112eddSAli Bahrami@ MSG_MAP_BADONAME	"%s: %llu: object name cannot contain path \
105569112eddSAli Bahrami			 separator ('/'): %s"
105669112eddSAli Bahrami@ MSG_MAP_REDEFATT	"%s: %llu: redefining %s attribute for '%s'"
105769112eddSAli Bahrami@ MSG_MAP_PREMEOF	"%s: %llu: premature EOF"
105869112eddSAli Bahrami@ MSG_MAP_ILLCHAR	"%s: %llu: illegal character '\\%03o'"
105969112eddSAli Bahrami@ MSG_MAP_MALFORM	"%s: %llu: malformed entry"
106069112eddSAli Bahrami@ MSG_MAP_NONLOAD	"%s: %llu: %s not allowed on non-LOAD segments"
106169112eddSAli Bahrami@ MSG_MAP_NOSTACK1	"%s: %llu: %s not allowed on STACK segment"
106269112eddSAli Bahrami@ MSG_MAP_MOREONCE	"%s: %llu: %s set more than once on same line"
106369112eddSAli Bahrami@ MSG_MAP_NOTERM	"%s: %llu: unterminated quoted string: %s"
106469112eddSAli Bahrami@ MSG_MAP_SECINSEG	"%s: %llu: section within segment ordering done on \
106569112eddSAli Bahrami			 a non-existent segment '%s'"
106669112eddSAli Bahrami@ MSG_MAP_UNEXINHERIT	"%s: %llu: unnamed version cannot inherit from other \
106769112eddSAli Bahrami			 versions: %s"
106869112eddSAli Bahrami@ MSG_MAP_UNEXTOK	"%s: %llu: unexpected occurrence of '%c' token"
10697c478bd9Sstevel@tonic-gate
107069112eddSAli Bahrami@ MSG_MAP_SEGEMPLOAD	"%s: %llu: empty segment must be of type LOAD or NULL"
107169112eddSAli Bahrami@ MSG_MAP_SEGEMPEXE	"%s: %llu: a LOAD empty segment definition is only \
1072d1827f25Srie			 allowed when creating a dynamic executable"
107369112eddSAli Bahrami@ MSG_MAP_SEGEMPATT	"%s: %llu: a LOAD empty segment must have an address \
1074d1827f25Srie			 and size"
107569112eddSAli Bahrami@ MSG_MAP_SEGEMPNOATT	"%s: %llu: a NULL empty segment must not have an \
107669112eddSAli Bahrami			 address or size"
107769112eddSAli Bahrami@ MSG_MAP_SEGEMPSEC	"%s: %llu: empty segment can not have sections \
10787c478bd9Sstevel@tonic-gate			 assigned to it"
107969112eddSAli Bahrami@ MSG_MAP_SEGEMNOPERM	"%s: %llu: empty segment must not have \
10807c478bd9Sstevel@tonic-gate			 p_flags set: 0x%x"
10817c478bd9Sstevel@tonic-gate
108269112eddSAli Bahrami@ MSG_MAP_CNTADDRORDER	"%s: %llu: segment cannot have an explicit address \
108369112eddSAli Bahrami			 and also be in the SEGMENT_ORDER list: %s"
108469112eddSAli Bahrami@ MSG_MAP_CNTDISSEG	"%s: %llu: segment cannot be disabled: %s"
108569112eddSAli Bahrami@ MSG_MAP_DUPNAMENT	"%s: %llu: cannot redefine entrance criteria: %s"
108669112eddSAli Bahrami@ MSG_MAP_DUPORDSEG	"%s: %llu: segment is already in %s list: %s"
108769112eddSAli Bahrami@ MSG_MAP_DUP_OS_ORD	"%s: %llu: section is already in OS_ORDER list: %s"
108869112eddSAli Bahrami@ MSG_MAP_DUP_IS_ORD	"%s: %llu: entrance criteria is already in \
108969112eddSAli Bahrami			 IS_ORDER list: %s"
109069112eddSAli Bahrami@ MSG_MAP_UNKENT	"%s: %llu: unknown entrance criteria \
109169112eddSAli Bahrami			 (ASSIGN_SECTION): %s"
109269112eddSAli Bahrami@ MSG_MAP_UNKSEG	"%s: %llu: unknown segment: %s"
109369112eddSAli Bahrami@ MSG_MAP_UNKSYMDEF	"%s: %llu: unknown symbol definition: %s"
109469112eddSAli Bahrami@ MSG_MAP_UNKSEGTYP	"%s: %llu: unknown internal segment type %d"
109569112eddSAli Bahrami@ MSG_MAP_UNKSOTYP	"%s: %llu: unknown shared object type: %s"
109669112eddSAli Bahrami@ MSG_MAP_UNKSEGATT	"%s: %llu: unknown segment attribute: %s"
109769112eddSAli Bahrami@ MSG_MAP_UNKSEGFLG	"%s: %llu: unknown segment flag: ?%c"
109869112eddSAli Bahrami@ MSG_MAP_UNKSECTYP	"%s: %llu: unknown section type: %s"
10997c478bd9Sstevel@tonic-gate
110069112eddSAli Bahrami@ MSG_MAP_SEGSIZE	"%s: %lld: existing segment size symbols cannot \
110169112eddSAli Bahrami			 be reset: %s"
110269112eddSAli Bahrami@ MSG_MAP_SEGADDR	"%s: %llu: segment address or length '%s' %s"
110369112eddSAli Bahrami@ MSG_MAP_BADCAPVAL	"%s: %llu: bad capability value: %s"
110469112eddSAli Bahrami@ MSG_MAP_UNKCAPATTR	"%s: %llu: unknown capability attribute '%s'"
110569112eddSAli Bahrami@ MSG_MAP_EMPTYCAP	"%s: %llu: empty capability definition; ignored"
11067c478bd9Sstevel@tonic-gate
110769112eddSAli Bahrami@ MSG_MAP_SYMDEF1	"%s: %llu: symbol '%s' is already defined in file: \
110860758829Srie			 %s: %s"
110969112eddSAli Bahrami@ MSG_MAP_SYMDEF2	"%s: %llu: symbol '%s': %s"
11107c478bd9Sstevel@tonic-gate
111169112eddSAli Bahrami@ MSG_MAP_EXPSCOL	"%s: %llu: expected a ';'"
111269112eddSAli Bahrami@ MSG_MAP_EXPEQU	"%s: %llu: expected a '=', ':', '|', or '@'"
111369112eddSAli Bahrami@ MSG_MAP_EXPSEGATT	"%s: %llu: expected one or more segment attributes \
111469112eddSAli Bahrami			 after an '='"
111569112eddSAli Bahrami@ MSG_MAP_EXPSEGNAM	"%s: %llu: expected a segment name at the beginning \
11167c478bd9Sstevel@tonic-gate			 of a line"
111769112eddSAli Bahrami@ MSG_MAP_EXPSEGTYPE	"%s: %llu: %s segment cannot be used with %s \
111869112eddSAli Bahrami			 directive: %s"
111969112eddSAli Bahrami@ MSG_MAP_EXPSYM_1	"%s: %llu: expected a symbol name after '@'"
112069112eddSAli Bahrami@ MSG_MAP_EXPSYM_2	"%s: %llu: expected a symbol name after '{'"
112169112eddSAli Bahrami@ MSG_MAP_EXPSEC	"%s: %llu: expected a section name after '|'"
112269112eddSAli Bahrami@ MSG_MAP_EXPSO		"%s: %llu: expected a shared object definition \
112369112eddSAli Bahrami			 after '-'"
112469112eddSAli Bahrami@ MSG_MAP_MULTFILTEE	"%s: %llu: multiple filtee definitions are unsupported"
112569112eddSAli Bahrami@ MSG_MAP_NOFILTER	"%s: %llu: filtee definition required"
112669112eddSAli Bahrami@ MSG_MAP_BADSF1	"%s: %llu: unknown software capabilities: 0x%llx; \
11277c478bd9Sstevel@tonic-gate			 ignored"
112869112eddSAli Bahrami@ MSG_MAP_INADDR32SF1	"%s: %llu: software capability ADDR32: is ineffective \
1129bebb829dSRod Evans			 when building 32-bit object: ignored"
113069112eddSAli Bahrami@ MSG_MAP_NOINTPOSE	"%s: %llu: interposition symbols can only be defined \
11319a411307Srie			 when building a dynamic executable"
113269112eddSAli Bahrami@ MSG_MAP_NOEXVLSZ	"%s: %llu: value and size attributes are incompatible \
11335b59e4caSab196087			 with extern or parent symbols"
113469112eddSAli Bahrami@ MSG_MAP_FLTR_ONLYAVL	"%s: %llu: symbol filtering is only available when \
1135604635faSRod Evans			 building a shared object"
11367c478bd9Sstevel@tonic-gate
113769112eddSAli Bahrami@ MSG_MAP_SEGSAME	"segments '%s' and '%s' have the same assigned \
11387c478bd9Sstevel@tonic-gate			 virtual address"
11397c478bd9Sstevel@tonic-gate@ MSG_MAP_EXCLIMIT	"exceeds internal limit"
11407c478bd9Sstevel@tonic-gate@ MSG_MAP_NOBADFRM	"number is badly formed"
11417c478bd9Sstevel@tonic-gate
11427c478bd9Sstevel@tonic-gate@ MSG_MAP_SEGTYP	"segment type"
11437c478bd9Sstevel@tonic-gate@ MSG_MAP_SEGVADDR	"segment virtual address"
11447c478bd9Sstevel@tonic-gate@ MSG_MAP_SEGPHYS	"segment physical address"
11457c478bd9Sstevel@tonic-gate@ MSG_MAP_SEGLEN	"segment length"
11467c478bd9Sstevel@tonic-gate@ MSG_MAP_SEGFLAG	"segment flags"
11477c478bd9Sstevel@tonic-gate@ MSG_MAP_SEGALIGN	"segment alignment"
11487c478bd9Sstevel@tonic-gate@ MSG_MAP_SEGROUND	"segment rounding"
11497c478bd9Sstevel@tonic-gate
11507c478bd9Sstevel@tonic-gate@ MSG_MAP_SECTYP	"section type"
11517c478bd9Sstevel@tonic-gate@ MSG_MAP_SECFLAG	"section flags"
11527c478bd9Sstevel@tonic-gate@ MSG_MAP_SECNAME	"section name"
11537c478bd9Sstevel@tonic-gate
11547c478bd9Sstevel@tonic-gate@ MSG_MAP_SYMVAL	"symbol value"
11557c478bd9Sstevel@tonic-gate@ MSG_MAP_SYMSIZE	"symbol size"
11567c478bd9Sstevel@tonic-gate
115760758829Srie@ MSG_MAP_DIFF_SYMVAL	"symbol values differ"
115860758829Srie@ MSG_MAP_DIFF_SYMSZ	"symbol sizes differ"
115960758829Srie@ MSG_MAP_DIFF_SYMTYP	"symbol types differ"
116060758829Srie@ MSG_MAP_DIFF_SYMNDX	"symbol indexes differ"
116160758829Srie@ MSG_MAP_DIFF_SYMLCL	"symbol scope conflict against local and non-local"
116260758829Srie@ MSG_MAP_DIFF_SYMGLOB	"symbol scope conflict against singleton/exported"
116360758829Srie@ MSG_MAP_DIFF_SYMPROT	"symbol scope conflict against protected"
116460758829Srie@ MSG_MAP_DIFF_SYMVER	"symbol version conflict"
116560758829Srie@ MSG_MAP_DIFF_SYMMUL	"symbol multiple definition"
116660758829Srie@ MSG_MAP_DIFF_SNGLDIR	"singleton scope and direct declaration are \
116760758829Srie			 incompatible"
116860758829Srie@ MSG_MAP_DIFF_PROTNDIR	"protected scope and no-direct declaration \
116960758829Srie			 are incompatible"
117060758829Srie
117160758829Srie
11729a411307Srie@ MSG_MAP_SECORDER	"section ordering requested, but no matching section \
11739a411307Srie			 found: segment: %s section: %s"
11747c478bd9Sstevel@tonic-gate
117569112eddSAli Bahrami
117669112eddSAli Bahrami# Mapfile Directives
117769112eddSAli Bahrami
117869112eddSAli Bahrami@ MSG_MAP_EXP_ATTR	"%s: %llu: expected attribute name (%s), or \
117969112eddSAli Bahrami			 terminator (';', '}'): %s"
118069112eddSAli Bahrami@ MSG_MAP_EXP_CAPMASK	"%s: %llu: expected capability name, integer value, or \
118169112eddSAli Bahrami			 terminator (';', '}'): %s"
118269112eddSAli Bahrami@ MSG_MAP_EXP_CAPNAME	"%s: %llu: expected name, or terminator (';', '}'): %s"
118369112eddSAli Bahrami@ MSG_MAP_EXP_CAPID	"%s: %llu: expected name, or '{' following %s: %s"
118469112eddSAli Bahrami@ MSG_MAP_EXP_CAPHW	"%s: %llu: expected hardware capability, or \
118569112eddSAli Bahrami			 terminator (';', '}'): %s"
118669112eddSAli Bahrami@ MSG_MAP_EXP_CAPSF	"%s: %llu: expected software capability, or \
118769112eddSAli Bahrami			 terminator (';', '}'): %s"
118869112eddSAli Bahrami@ MSG_MAP_EXP_EQ	"%s: %llu: expected '=' following %s: %s"
118969112eddSAli Bahrami@ MSG_MAP_EXP_EQ_ALL	"%s: %llu: expected '=', '+=', or '-=' following %s: %s"
119069112eddSAli Bahrami@ MSG_MAP_EXP_EQ_PEQ	"%s: %llu: expected '=' following %s: %s"
119169112eddSAli Bahrami@ MSG_MAP_EXP_DIR	"%s: %llu: expected mapfile directive (%s): %s"
119269112eddSAli Bahrami@ MSG_MAP_SFLG_EXBANG	"%s: %llu: '!' appears without corresponding flag"
119369112eddSAli Bahrami@ MSG_MAP_EXP_FILNAM	"%s: %llu: expected file name following %s: %s"
119469112eddSAli Bahrami@ MSG_MAP_EXP_FILPATH	"%s: %llu: expected file path following %s: %s"
119569112eddSAli Bahrami@ MSG_MAP_EXP_INT	"%s: %llu: expected integer value following %s: %s"
119669112eddSAli Bahrami@ MSG_MAP_EXP_LBKT	"%s: %llu: expected '{' following %s: %s"
119769112eddSAli Bahrami@ MSG_MAP_EXP_OBJNAM	"%s: %llu: expected object name following %s: %s"
119869112eddSAli Bahrami@ MSG_MAP_SFLG_ONEBANG	"%s: %llu: '!' can only be specified once per flag"
119969112eddSAli Bahrami@ MSG_MAP_EXP_SECFLAG	"%s: %llu: expected section flag (%s), '!', or \
120069112eddSAli Bahrami			 terminator (';', '}'): %s"
120169112eddSAli Bahrami@ MSG_MAP_EXP_SECNAM	"%s: %llu: expected section name following %s: %s"
120269112eddSAli Bahrami@ MSG_MAP_EXP_SEGFLAG	"%s: %llu: expected segment flag (%s), or \
120369112eddSAli Bahrami			 terminator (';', '}'): %s"
120469112eddSAli Bahrami@ MSG_MAP_EXP_ECNAM	"%s: %llu: expected entrance criteria (ASSIGN_SECTION) \
120569112eddSAli Bahrami			 name, or terminator (';', '}'): %s"
120669112eddSAli Bahrami@ MSG_MAP_EXP_SEGNAM	"%s: %llu: expected segment name following %s: %s"
120769112eddSAli Bahrami@ MSG_MAP_EXP_SEM	"%s: %llu: expected ';' to terminate %s: %s"
120869112eddSAli Bahrami@ MSG_MAP_EXP_SEMLBKT	"%s: %llu: expected ';' or '{' following %s: %s"
120969112eddSAli Bahrami@ MSG_MAP_EXP_SEMRBKT	"%s: %llu: expected ';' or '}' to terminate %s: %s"
121069112eddSAli Bahrami@ MSG_MAP_EXP_SHTYPE	"%s: %llu: expected section type: %s"
121169112eddSAli Bahrami@ MSG_MAP_EXP_SYM	"%s: %llu: expected symbol name, symbol scope, \
121269112eddSAli Bahrami			 or '*': %s"
121369112eddSAli Bahrami@ MSG_MAP_EXP_SYMEND	"%s: %llu: expected inherited version name, or \
121469112eddSAli Bahrami			 terminator (';'): %s"
121569112eddSAli Bahrami@ MSG_MAP_EXP_SYMDELIM	"%s: %llu: expected one of ':', ';', or '{': %s"
121669112eddSAli Bahrami@ MSG_MAP_EXP_SYMFLAG	"%s: %llu: expected symbol flag (%s), or \
121769112eddSAli Bahrami			 terminator (';', '}'): %s"
121869112eddSAli Bahrami@ MSG_MAP_EXP_SYMNAM	"%s: %llu: expected symbol name following %s: %s"
121969112eddSAli Bahrami@ MSG_MAP_EXP_SYMSCOPE	"%s: %llu: expected symbol scope (%s): %s"
122069112eddSAli Bahrami@ MSG_MAP_EXP_SYMTYPE	"%s: %llu: expected symbol type (%s): %s"
122169112eddSAli Bahrami@ MSG_MAP_EXP_VERSION	"%s: %llu: expected version name following %s: %s"
122269112eddSAli Bahrami@ MSG_MAP_BADEXTRA	"%s: %llu: unexpected text found following %s directive"
122369112eddSAli Bahrami@ MSG_MAP_VALUELIMIT	"%s: %llu: numeric value exceeds word size: %s"
122469112eddSAli Bahrami@ MSG_MAP_MALVALUE	"%s: %llu: malformed numeric value: %s"
122569112eddSAli Bahrami@ MSG_MAP_BADVALUETAIL	"%s: %llu: unexpected characters following numeric \
122669112eddSAli Bahrami			 constant: %s"
122769112eddSAli Bahrami@ MSG_MAP_WSNEEDED	"%s: %llu: whitespace needed before token: %s"
122869112eddSAli Bahrami@ MSG_MAP_BADCHAR	"%s: %llu: unexpected text: %s"
122969112eddSAli Bahrami@ MSG_MAP_BADKWQUOTE	"%s: %llu: mapfile keywords should not be quoted: %s"
123069112eddSAli Bahrami@ MSG_MAP_CDIR_NOTBOL	"%s: %llu: mapfile control directive not at start of \
123169112eddSAli Bahrami			 line: %s"
123269112eddSAli Bahrami@ MSG_MAP_NOATTR	"%s: %llu: %s specified no attributes (empty {})"
123369112eddSAli Bahrami@ MSG_MAP_NOVALUES	"%s: %llu: %s specified without values"
123469112eddSAli Bahrami@ MSG_MAP_INTERR	"<internal error>"
123569112eddSAli Bahrami@ MSG_MAP_ISORDVER	"%s: %llu: version 0 mapfile ?O flag and version 1 \
123669112eddSAli Bahrami			 segment IS_ORDER attribute are mutually exclusive: %s"
123769112eddSAli Bahrami@ MSG_MAP_SYMATTR	"symbol attributes";
123869112eddSAli Bahrami
123969112eddSAli Bahrami# Mapfile Control Directives
124069112eddSAli Bahrami
124169112eddSAli Bahrami@ MSG_MAP_CDIR_BADVDIR	"%s: %llu: $mapfile_version directive must specify \
124269112eddSAli Bahrami			 version 2 or higher: %d"
124369112eddSAli Bahrami@ MSG_MAP_CDIR_BADVER	"%s: %llu: unknown mapfile version: %d"
124469112eddSAli Bahrami@ MSG_MAP_CDIR_REPVER	"%s: %llu: $mapfile_version must be first directive \
124569112eddSAli Bahrami			 in file"
124669112eddSAli Bahrami@ MSG_MAP_CDIR_REQARG	"%s: %llu: %s directive requires an argument"
124769112eddSAli Bahrami@ MSG_MAP_CDIR_REQNOARG	"%s: %llu: %s directive does not accept arguments"
124869112eddSAli Bahrami@ MSG_MAP_CDIR_BAD	"%s: %llu: unrecognized mapfile control directive"
124969112eddSAli Bahrami@ MSG_MAP_CDIR_NOIF	"%s: %llu: %s directive used without opening $if"
125069112eddSAli Bahrami@ MSG_MAP_CDIR_ELSE	"%s: %llu: %s directive preceded by $else on line %d"
125169112eddSAli Bahrami@ MSG_MAP_CDIR_NOEND	"%s: %llu: EOF encountered without closing $endif \
125269112eddSAli Bahrami			 for $if on line %d"
125369112eddSAli Bahrami@ MSG_MAP_CDIR_ERROR	"%s: %llu: error: %s"
125469112eddSAli Bahrami
125569112eddSAli Bahrami
125669112eddSAli Bahrami# Mapfile Conditional Expressions
125769112eddSAli Bahrami
125869112eddSAli Bahrami@ MSG_MAP_CEXP_TOKERR	"%s: %llu: syntax error in conditional expression at: %s"
125969112eddSAli Bahrami@ MSG_MAP_CEXP_SEMERR	"%s: %llu: malformed conditional expression"
126069112eddSAli Bahrami@ MSG_MAP_CEXP_BADOPUSE	"%s: %llu: invalid operator use in conditional \
126169112eddSAli Bahrami			 expression"
126269112eddSAli Bahrami@ MSG_MAP_CEXP_UNBALPAR	"%s: %llu: unbalanced parenthesis in conditional \
126369112eddSAli Bahrami			 expression"
126469112eddSAli Bahrami@ MSG_MAP_BADCESC	"%s: %llu: unrecognized escape in double quoted \
126569112eddSAli Bahrami			 token: \\%c\n"
126669112eddSAli Bahrami
12677c478bd9Sstevel@tonic-gate# Generic error diagnostic labels
12687c478bd9Sstevel@tonic-gate
12697c478bd9Sstevel@tonic-gate@ MSG_STR_NULL		"(null)"
12707c478bd9Sstevel@tonic-gate
12717c478bd9Sstevel@tonic-gate@ MSG_DBG_DFLT_FMT	"debug: "
12727c478bd9Sstevel@tonic-gate@ MSG_DBG_AOUT_FMT	"debug: a.out: "
12737c478bd9Sstevel@tonic-gate@ MSG_DBG_NAME_FMT	"debug: %s: "
12747c478bd9Sstevel@tonic-gate
1275059c3debSRichard Lowe# -z assert-deflib strings
1276059c3debSRichard Lowe
1277059c3debSRichard Lowe@ MSG_ARG_ASSDEFLIB_MALFORMED	"library name malformed: %s"
1278059c3debSRichard Lowe@ MSG_ARG_ASSDEFLIB_FOUND	"dynamic library found on default search path \
1279059c3debSRichard Lowe				(%s): lib%s.so"
12807c478bd9Sstevel@tonic-gate
12817c478bd9Sstevel@tonic-gate@ _END_
12827c478bd9Sstevel@tonic-gate
12837c478bd9Sstevel@tonic-gate
12847c478bd9Sstevel@tonic-gate# Software identification.  Note, the SGU strings is historic, and has
128508278a5eSRod Evans# little relevance.  It is preserved as applications have used this
12867c478bd9Sstevel@tonic-gate# string to identify the Solaris link-editor.
12877c478bd9Sstevel@tonic-gate
12887c478bd9Sstevel@tonic-gate@ MSG_SGS_ID		"ld: Software Generation Utilities - \
12897c478bd9Sstevel@tonic-gate			 Solaris Link Editors: "
12907c478bd9Sstevel@tonic-gate
12917c478bd9Sstevel@tonic-gate# The following strings represent reserved words, files, pathnames and symbols.
12927c478bd9Sstevel@tonic-gate# Reference to this strings is via the MSG_ORIG() macro, and thus no message
12937c478bd9Sstevel@tonic-gate# translation is required.
12947c478bd9Sstevel@tonic-gate
1295e23c41c9SAli Bahrami@ MSG_DBG_FOPEN_MODE	"w"
1296e23c41c9SAli Bahrami
12977c478bd9Sstevel@tonic-gate@ MSG_DBG_CLS32_FMT	"32: "
12987c478bd9Sstevel@tonic-gate@ MSG_DBG_CLS64_FMT	"64: "
12997c478bd9Sstevel@tonic-gate
13007c478bd9Sstevel@tonic-gate@ MSG_STR_PATHTOK	";:"
13017c478bd9Sstevel@tonic-gate@ MSG_STR_AOUT		"a.out"
13027c478bd9Sstevel@tonic-gate
13037c478bd9Sstevel@tonic-gate@ MSG_STR_LIB_A		"%s/lib%s.a"
13047c478bd9Sstevel@tonic-gate@ MSG_STR_LIB_SO	"%s/lib%s.so"
13057c478bd9Sstevel@tonic-gate@ MSG_STR_PATH		"%s/%s"
13067c478bd9Sstevel@tonic-gate@ MSG_STR_STRNL		"%s\n"
13077c478bd9Sstevel@tonic-gate@ MSG_STR_NL		"\n"
130808278a5eSRod Evans@ MSG_STR_CAPGROUPID 	"CAP_GROUP_%d"
13097c478bd9Sstevel@tonic-gate
13107c478bd9Sstevel@tonic-gate@ MSG_STR_LD_DYNAMIC	"dynamic"
13117c478bd9Sstevel@tonic-gate@ MSG_STR_SYMBOLIC	"symbolic"
13127c478bd9Sstevel@tonic-gate@ MSG_STR_ELIMINATE	"eliminate"
13137c478bd9Sstevel@tonic-gate@ MSG_STR_LOCAL		"local"
13147c478bd9Sstevel@tonic-gate@ MSG_STR_PROGBITS	"progbits"
13157c478bd9Sstevel@tonic-gate@ MSG_STR_SYMTAB	"symtab"
13167c478bd9Sstevel@tonic-gate@ MSG_STR_DYNSYM	"dynsym"
13177c478bd9Sstevel@tonic-gate@ MSG_STR_REL		"rel"
13187c478bd9Sstevel@tonic-gate@ MSG_STR_RELA		"rela"
13197c478bd9Sstevel@tonic-gate@ MSG_STR_STRTAB	"strtab"
13207c478bd9Sstevel@tonic-gate@ MSG_STR_HASH		"hash"
13217c478bd9Sstevel@tonic-gate@ MSG_STR_LIB		"lib"
13227c478bd9Sstevel@tonic-gate@ MSG_STR_NOTE		"note"
13237c478bd9Sstevel@tonic-gate@ MSG_STR_NOBITS	"nobits"
13247c478bd9Sstevel@tonic-gate@ MSG_STR_HWCAP_1	"hwcap_1"
13257c478bd9Sstevel@tonic-gate@ MSG_STR_SFCAP_1	"sfcap_1"
1326b533f56bSRobert Mustacchi@ MSG_STR_SOEXT		".so"
13277c478bd9Sstevel@tonic-gate
132856e2cc86SAli Bahrami@ MSG_STR_OPTIONS	"3:6:abc:d:e:f:h:il:mo:p:rstu:z:B:CD:F:GI:L:M:N:P:Q:R:\
132992a02081SRod Evans			 S:VW:Y:?"
13307c478bd9Sstevel@tonic-gate
13317c478bd9Sstevel@tonic-gate# Argument processing strings
13327c478bd9Sstevel@tonic-gate
133356e2cc86SAli Bahrami@ MSG_ARG_3		"-3"
13347c478bd9Sstevel@tonic-gate@ MSG_ARG_6		"-6"
13357c478bd9Sstevel@tonic-gate@ MSG_ARG_A		"-a"
13367c478bd9Sstevel@tonic-gate@ MSG_ARG_B		"-b"
13377c478bd9Sstevel@tonic-gate@ MSG_ARG_CB		"-B"
13387c478bd9Sstevel@tonic-gate@ MSG_ARG_BDIRECT	"-Bdirect"
13397c478bd9Sstevel@tonic-gate@ MSG_ARG_BDYNAMIC	"-Bdynamic"
13407c478bd9Sstevel@tonic-gate@ MSG_ARG_BELIMINATE	"-Beliminate"
13417c478bd9Sstevel@tonic-gate@ MSG_ARG_BGROUP	"-Bgroup"
13427c478bd9Sstevel@tonic-gate@ MSG_ARG_BLOCAL	"-Blocal"
13437c478bd9Sstevel@tonic-gate@ MSG_ARG_BNODIRECT	"-Bnodirect"
13447c478bd9Sstevel@tonic-gate@ MSG_ARG_BSYMBOLIC	"-Bsymbolic"
1345635216b6SRod Evans@ MSG_ARG_BTRANSLATOR	"-Btranslator"
13467c478bd9Sstevel@tonic-gate@ MSG_ARG_C		"-c"
13477c478bd9Sstevel@tonic-gate@ MSG_ARG_D		"-d"
13487c478bd9Sstevel@tonic-gate@ MSG_ARG_DY		"-dy"
13497c478bd9Sstevel@tonic-gate@ MSG_ARG_CI		"-I"
13507c478bd9Sstevel@tonic-gate@ MSG_ARG_CN		"-N"
13517c478bd9Sstevel@tonic-gate@ MSG_ARG_P		"-p"
13527c478bd9Sstevel@tonic-gate@ MSG_ARG_CP		"-P"
13537c478bd9Sstevel@tonic-gate@ MSG_ARG_CQ		"-Q"
13547c478bd9Sstevel@tonic-gate@ MSG_ARG_CY		"-Y"
13557c478bd9Sstevel@tonic-gate@ MSG_ARG_CYL		"-YL"
13567c478bd9Sstevel@tonic-gate@ MSG_ARG_CYP		"-YP"
13577c478bd9Sstevel@tonic-gate@ MSG_ARG_CYU		"-YU"
13587c478bd9Sstevel@tonic-gate@ MSG_ARG_Z		"-z"
13597c478bd9Sstevel@tonic-gate@ MSG_ARG_ZDEFNODEF	"-z[defs|nodefs]"
13601007fd6fSAli Bahrami@ MSG_ARG_ZGUIDE	"-zguidance"
13617c478bd9Sstevel@tonic-gate@ MSG_ARG_ZNODEF	"-znodefs"
136270d3e49eSrie@ MSG_ARG_ZNOINTERP	"-znointerp"
13630e233487SRod Evans@ MSG_ARG_ZRELAXRELOC	"-zrelaxreloc"
13640e233487SRod Evans@ MSG_ARG_ZNORELAXRELOC	"-znorelaxreloc"
13657c478bd9Sstevel@tonic-gate@ MSG_ARG_ZTEXT		"-ztext"
13667c478bd9Sstevel@tonic-gate@ MSG_ARG_ZTEXTOFF	"-ztextoff"
13677c478bd9Sstevel@tonic-gate@ MSG_ARG_ZTEXTWARN	"-ztextwarn"
13687c478bd9Sstevel@tonic-gate@ MSG_ARG_ZTEXTALL	"-z[text|textwarn|textoff]"
13697c478bd9Sstevel@tonic-gate@ MSG_ARG_ZLOADFLTR	"-zloadfltr"
13707c478bd9Sstevel@tonic-gate@ MSG_ARG_ZCOMBRELOC	"-zcombreloc"
137108278a5eSRod Evans@ MSG_ARG_ZSYMBOLCAP	"-zsymbolcap"
13721007fd6fSAli Bahrami@ MSG_ARG_ZFATWNOFATW	"-z[fatal-warnings|nofatalwarnings]"
13737c478bd9Sstevel@tonic-gate
13747c478bd9Sstevel@tonic-gate@ MSG_ARG_ABSEXEC	"absexec"
13757010c12aSrie@ MSG_ARG_ALTEXEC64	"altexec64"
13767c478bd9Sstevel@tonic-gate@ MSG_ARG_NOCOMPSTRTAB	"nocompstrtab"
13777c478bd9Sstevel@tonic-gate@ MSG_ARG_GROUPPERM	"groupperm"
13787c478bd9Sstevel@tonic-gate@ MSG_ARG_NOGROUPPERM	"nogroupperm"
13797c478bd9Sstevel@tonic-gate@ MSG_ARG_LAZYLOAD	"lazyload"
13807c478bd9Sstevel@tonic-gate@ MSG_ARG_NOLAZYLOAD	"nolazyload"
13817c478bd9Sstevel@tonic-gate@ MSG_ARG_INTERPOSE	"interpose"
13827c478bd9Sstevel@tonic-gate@ MSG_ARG_DIRECT	"direct"
13837c478bd9Sstevel@tonic-gate@ MSG_ARG_NODIRECT	"nodirect"
13847c478bd9Sstevel@tonic-gate@ MSG_ARG_IGNORE	"ignore"
13857c478bd9Sstevel@tonic-gate@ MSG_ARG_RECORD	"record"
13867c478bd9Sstevel@tonic-gate@ MSG_ARG_INITFIRST	"initfirst"
13877c478bd9Sstevel@tonic-gate@ MSG_ARG_INITARRAY	"initarray="
13887c478bd9Sstevel@tonic-gate@ MSG_ARG_FINIARRAY	"finiarray="
13897c478bd9Sstevel@tonic-gate@ MSG_ARG_PREINITARRAY	"preinitarray="
13907c478bd9Sstevel@tonic-gate@ MSG_ARG_RTLDINFO	"rtldinfo="
13917c478bd9Sstevel@tonic-gate@ MSG_ARG_DTRACE	"dtrace="
13927c478bd9Sstevel@tonic-gate@ MSG_ARG_TRANSLATOR	"translator"
13937c478bd9Sstevel@tonic-gate@ MSG_ARG_NOOPEN	"nodlopen"
13947c478bd9Sstevel@tonic-gate@ MSG_ARG_NOW		"now"
13957c478bd9Sstevel@tonic-gate@ MSG_ARG_ORIGIN	"origin"
13967c478bd9Sstevel@tonic-gate@ MSG_ARG_DEFS		"defs"
13977c478bd9Sstevel@tonic-gate@ MSG_ARG_NODEFS	"nodefs"
13987c478bd9Sstevel@tonic-gate@ MSG_ARG_NODUMP	"nodump"
13997c478bd9Sstevel@tonic-gate@ MSG_ARG_NOVERSION	"noversion"
14007c478bd9Sstevel@tonic-gate@ MSG_ARG_TEXT		"text"
14017c478bd9Sstevel@tonic-gate@ MSG_ARG_TEXTOFF	"textoff"
14027c478bd9Sstevel@tonic-gate@ MSG_ARG_TEXTWARN	"textwarn"
14037c478bd9Sstevel@tonic-gate@ MSG_ARG_MULDEFS	"muldefs"
14047c478bd9Sstevel@tonic-gate@ MSG_ARG_NODELETE	"nodelete"
140570d3e49eSrie@ MSG_ARG_NOINTERP	"nointerp"
14067c478bd9Sstevel@tonic-gate@ MSG_ARG_NOPARTIAL	"nopartial"
14077c478bd9Sstevel@tonic-gate@ MSG_ARG_NORELOC	"noreloc"
14087c478bd9Sstevel@tonic-gate@ MSG_ARG_REDLOCSYM	"redlocsym"
14097c478bd9Sstevel@tonic-gate@ MSG_ARG_VERBOSE	"verbose"
14107c478bd9Sstevel@tonic-gate@ MSG_ARG_WEAKEXT	"weakextract"
14111007fd6fSAli Bahrami@ MSG_ARG_LOADFLTR	"loadfltr"
14127c478bd9Sstevel@tonic-gate@ MSG_ARG_ALLEXTRT	"allextract"
14137c478bd9Sstevel@tonic-gate@ MSG_ARG_DFLEXTRT	"defaultextract"
14147c478bd9Sstevel@tonic-gate@ MSG_ARG_COMBRELOC	"combreloc"
1415e38a713aSrie@ MSG_ARG_NOCOMBRELOC	"nocombreloc"
14167c478bd9Sstevel@tonic-gate@ MSG_ARG_NODEFAULTLIB	"nodefaultlib"
14177c478bd9Sstevel@tonic-gate@ MSG_ARG_ENDFILTEE	"endfiltee"
14187c478bd9Sstevel@tonic-gate@ MSG_ARG_LD32		"ld32="
14197c478bd9Sstevel@tonic-gate@ MSG_ARG_LD64		"ld64="
14207c478bd9Sstevel@tonic-gate@ MSG_ARG_RESCAN	"rescan"
1421551cffe3SAli Bahrami@ MSG_ARG_RESCAN_NOW	"rescan-now"
1422551cffe3SAli Bahrami@ MSG_ARG_RESCAN_START	"rescan-start"
1423551cffe3SAli Bahrami@ MSG_ARG_RESCAN_END	"rescan-end"
14241007fd6fSAli Bahrami@ MSG_ARG_GUIDE		"guidance"
14259039eeafSab196087@ MSG_ARG_NOLDYNSYM	"noldynsym"
1426d2ef9fe9Sab196087@ MSG_ARG_RELAXRELOC	"relaxreloc"
14270e233487SRod Evans@ MSG_ARG_NORELAXRELOC	"norelaxreloc"
142856e2cc86SAli Bahrami@ MSG_ARG_NOSIGHANDLER	"nosighandler"
14297247f888Srie@ MSG_ARG_GLOBAUDIT	"globalaudit"
1430ba2be530Sab196087@ MSG_ARG_TARGET	"target="
1431cdcc71c0SAli Bahrami@ MSG_ARG_WRAP		"wrap="
14321007fd6fSAli Bahrami@ MSG_ARG_FATWARN	"fatal-warnings"
14331007fd6fSAli Bahrami@ MSG_ARG_NOFATWARN	"nofatal-warnings"
14347c478bd9Sstevel@tonic-gate@ MSG_ARG_HELP		"help"
14357c478bd9Sstevel@tonic-gate@ MSG_ARG_GROUP		"group"
14367c478bd9Sstevel@tonic-gate@ MSG_ARG_REDUCE	"reduce"
14377c478bd9Sstevel@tonic-gate@ MSG_ARG_STATIC	"static"
143808278a5eSRod Evans@ MSG_ARG_SYMBOLCAP	"symbolcap"
1439f441771bSRod Evans@ MSG_ARG_DEFERRED	"deferred"
1440f441771bSRod Evans@ MSG_ARG_NODEFERRED	"nodeferred"
1441b533f56bSRobert Mustacchi@ MSG_ARG_ASSDEFLIB	"assert-deflib"
14427c478bd9Sstevel@tonic-gate
14437c478bd9Sstevel@tonic-gate@ MSG_ARG_LCOM		"L,"
14447c478bd9Sstevel@tonic-gate@ MSG_ARG_PCOM		"P,"
14457c478bd9Sstevel@tonic-gate@ MSG_ARG_UCOM		"U,"
14467c478bd9Sstevel@tonic-gate
144792a02081SRod Evans@ MSG_ARG_T_RPATH	"rpath"
144892a02081SRod Evans@ MSG_ARG_T_SHARED	"shared"
144992a02081SRod Evans@ MSG_ARG_T_SONAME	"soname"
145092a02081SRod Evans@ MSG_ARG_T_WL		"l,-"
145192a02081SRod Evans
145292a02081SRod Evans@ MSG_ARG_T_AUXFLTR	"-auxiliary"
145392a02081SRod Evans@ MSG_ARG_T_MULDEFS	"-allow-multiple-definition"
145492a02081SRod Evans@ MSG_ARG_T_INTERP	"-dynamic-linker"
1455551cffe3SAli Bahrami@ MSG_ARG_T_ENDGROUP	"-end-group"
145692a02081SRod Evans@ MSG_ARG_T_ENTRY	"-entry"
145792a02081SRod Evans@ MSG_ARG_T_STDFLTR	"-filter"
14581007fd6fSAli Bahrami@ MSG_ARG_T_FATWARN	"-fatal-warnings"
14591007fd6fSAli Bahrami@ MSG_ARG_T_NOFATWARN	"-no-fatal-warnings"
146092a02081SRod Evans@ MSG_ARG_T_HELP	"-help"
146192a02081SRod Evans@ MSG_ARG_T_LIBRARY	"-library"
146292a02081SRod Evans@ MSG_ARG_T_LIBPATH	"-library-path"
146392a02081SRod Evans@ MSG_ARG_T_NOUNDEF	"-no-undefined"
146492a02081SRod Evans@ MSG_ARG_T_NOWHOLEARC	"-no-whole-archive"
146592a02081SRod Evans@ MSG_ARG_T_OUTPUT	"-output"
146692a02081SRod Evans@ MSG_ARG_T_RELOCATABLE	"-relocatable"
1467551cffe3SAli Bahrami@ MSG_ARG_T_STARTGROUP	"-start-group"
146892a02081SRod Evans@ MSG_ARG_T_STRIP	"-strip-all"
146992a02081SRod Evans@ MSG_ARG_T_UNDEF	"-undefined"
147092a02081SRod Evans@ MSG_ARG_T_VERSION	"-version"
147192a02081SRod Evans@ MSG_ARG_T_WHOLEARC	"-whole-archive"
1472cdcc71c0SAli Bahrami@ MSG_ARG_T_WRAP	"-wrap"
1473551cffe3SAli Bahrami@ MSG_ARG_T_OPAR	"("
1474551cffe3SAli Bahrami@ MSG_ARG_T_CPAR	")"
14757c478bd9Sstevel@tonic-gate
14761007fd6fSAli Bahrami# -z guidance=item strings
14771007fd6fSAli Bahrami@ MSG_ARG_GUIDE_DELIM		",: \t"
14781007fd6fSAli Bahrami@ MSG_ARG_GUIDE_NO_ALL		"noall"
14791007fd6fSAli Bahrami@ MSG_ARG_GUIDE_NO_DEFS		"nodefs"
14801007fd6fSAli Bahrami@ MSG_ARG_GUIDE_NO_DIRECT	"nodirect"
14811007fd6fSAli Bahrami@ MSG_ARG_GUIDE_NO_LAZYLOAD	"nolazyload"
14821007fd6fSAli Bahrami@ MSG_ARG_GUIDE_NO_MAPFILE	"nomapfile"
14831007fd6fSAli Bahrami@ MSG_ARG_GUIDE_NO_TEXT		"notext"
14841007fd6fSAli Bahrami@ MSG_ARG_GUIDE_NO_UNUSED	"nounused"
14851007fd6fSAli Bahrami
14867c478bd9Sstevel@tonic-gate# Environment variable strings
14877c478bd9Sstevel@tonic-gate
14887c478bd9Sstevel@tonic-gate@ MSG_LD_RUN_PATH	"LD_RUN_PATH"
14897c478bd9Sstevel@tonic-gate@ MSG_LD_LIBPATH_32	"LD_LIBRARY_PATH_32"
14907c478bd9Sstevel@tonic-gate@ MSG_LD_LIBPATH_64	"LD_LIBRARY_PATH_64"
14917c478bd9Sstevel@tonic-gate@ MSG_LD_LIBPATH	"LD_LIBRARY_PATH"
14927c478bd9Sstevel@tonic-gate
14937c478bd9Sstevel@tonic-gate@ MSG_LD_NOVERSION_32	"LD_NOVERSION_32"
14947c478bd9Sstevel@tonic-gate@ MSG_LD_NOVERSION_64	"LD_NOVERSION_64"
14957c478bd9Sstevel@tonic-gate@ MSG_LD_NOVERSION	"LD_NOVERSION"
14967c478bd9Sstevel@tonic-gate
14977c478bd9Sstevel@tonic-gate@ MSG_SGS_SUPPORT_32	"SGS_SUPPORT_32"
14987c478bd9Sstevel@tonic-gate@ MSG_SGS_SUPPORT_64	"SGS_SUPPORT_64"
14997c478bd9Sstevel@tonic-gate@ MSG_SGS_SUPPORT	"SGS_SUPPORT"
15007c478bd9Sstevel@tonic-gate
15017c478bd9Sstevel@tonic-gate
15027c478bd9Sstevel@tonic-gate# Symbol names
15037c478bd9Sstevel@tonic-gate
15047c478bd9Sstevel@tonic-gate@ MSG_SYM_LIBVER_U	"_lib_version"
15057c478bd9Sstevel@tonic-gate
15067c478bd9Sstevel@tonic-gate
15077c478bd9Sstevel@tonic-gate# Mapfile tokens
15087c478bd9Sstevel@tonic-gate
15097c478bd9Sstevel@tonic-gate@ MSG_MAP_LOAD		"load"
15107c478bd9Sstevel@tonic-gate@ MSG_MAP_NOTE		"note"
1511d1827f25Srie@ MSG_MAP_NULL		"null"
15127c478bd9Sstevel@tonic-gate@ MSG_MAP_STACK		"stack"
15137c478bd9Sstevel@tonic-gate@ MSG_MAP_ADDVERS	"addvers"
15147c478bd9Sstevel@tonic-gate@ MSG_MAP_FUNCTION	"function"
15157c478bd9Sstevel@tonic-gate@ MSG_MAP_DATA		"data"
15167c478bd9Sstevel@tonic-gate@ MSG_MAP_COMMON	"common"
15177c478bd9Sstevel@tonic-gate@ MSG_MAP_PARENT	"parent"
15187c478bd9Sstevel@tonic-gate@ MSG_MAP_EXTERN	"extern"
15197c478bd9Sstevel@tonic-gate@ MSG_MAP_DIRECT	"direct"
15207c478bd9Sstevel@tonic-gate@ MSG_MAP_NODIRECT	"nodirect"
15217c478bd9Sstevel@tonic-gate@ MSG_MAP_FILTER	"filter"
15227c478bd9Sstevel@tonic-gate@ MSG_MAP_AUXILIARY	"auxiliary"
15237c478bd9Sstevel@tonic-gate@ MSG_MAP_OVERRIDE	"override"
15249a411307Srie@ MSG_MAP_INTERPOSE	"interpose"
1525d579eb63Sab196087@ MSG_MAP_DYNSORT	"dynsort"
1526d579eb63Sab196087@ MSG_MAP_NODYNSORT	"nodynsort"
15277c478bd9Sstevel@tonic-gate
152869112eddSAli Bahrami@ MSG_MAPKW_ALIGN		"ALIGN"
152969112eddSAli Bahrami@ MSG_MAPKW_ALLOC		"ALLOC"
153069112eddSAli Bahrami@ MSG_MAPKW_ALLOW		"ALLOW"
153169112eddSAli Bahrami@ MSG_MAPKW_AMD64_LARGE		"AMD64_LARGE"
153269112eddSAli Bahrami@ MSG_MAPKW_ASSIGN_SECTION	"ASSIGN_SECTION"
153369112eddSAli Bahrami@ MSG_MAPKW_AUX			"AUXILIARY"
153469112eddSAli Bahrami@ MSG_MAPKW_CAPABILITY		"CAPABILITY"
153569112eddSAli Bahrami@ MSG_MAPKW_COMMON		"COMMON"
153669112eddSAli Bahrami@ MSG_MAPKW_DATA		"DATA"
153769112eddSAli Bahrami@ MSG_MAPKW_DEFAULT		"DEFAULT"
153869112eddSAli Bahrami@ MSG_MAPKW_DEPEND_VERSIONS	"DEPEND_VERSIONS"
153969112eddSAli Bahrami@ MSG_MAPKW_DIRECT		"DIRECT"
154069112eddSAli Bahrami@ MSG_MAPKW_DISABLE		"DISABLE"
154169112eddSAli Bahrami@ MSG_MAPKW_DYNSORT		"DYNSORT"
154269112eddSAli Bahrami@ MSG_MAPKW_ELIMINATE		"ELIMINATE"
154369112eddSAli Bahrami@ MSG_MAPKW_EXECUTE		"EXECUTE"
154469112eddSAli Bahrami@ MSG_MAPKW_EXPORTED		"EXPORTED"
154569112eddSAli Bahrami@ MSG_MAPKW_EXTERN		"EXTERN"
154669112eddSAli Bahrami@ MSG_MAPKW_FILTER		"FILTER"
154769112eddSAli Bahrami@ MSG_MAPKW_FILE_BASENAME	"FILE_BASENAME"
154869112eddSAli Bahrami@ MSG_MAPKW_FILE_PATH		"FILE_PATH"
154969112eddSAli Bahrami@ MSG_MAPKW_FILE_OBJNAME	"FILE_OBJNAME"
155069112eddSAli Bahrami@ MSG_MAPKW_FUNCTION		"FUNCTION"
155169112eddSAli Bahrami@ MSG_MAPKW_FLAGS		"FLAGS"
155269112eddSAli Bahrami@ MSG_MAPKW_GLOBAL		"GLOBAL"
155369112eddSAli Bahrami@ MSG_MAPKW_INTERPOSE		"INTERPOSE"
155469112eddSAli Bahrami@ MSG_MAPKW_HIDDEN		"HIDDEN"
155569112eddSAli Bahrami@ MSG_MAPKW_HDR_NOALLOC		"HDR_NOALLOC"
155669112eddSAli Bahrami@ MSG_MAPKW_HW			"HW"
155769112eddSAli Bahrami@ MSG_MAPKW_HW_1		"HW_1"
155869112eddSAli Bahrami@ MSG_MAPKW_HW_2		"HW_2"
155969112eddSAli Bahrami@ MSG_MAPKW_IS_NAME		"IS_NAME"
156069112eddSAli Bahrami@ MSG_MAPKW_IS_ORDER		"IS_ORDER"
156169112eddSAli Bahrami@ MSG_MAPKW_LOAD_SEGMENT	"LOAD_SEGMENT"
156269112eddSAli Bahrami@ MSG_MAPKW_LOCAL		"LOCAL"
156369112eddSAli Bahrami@ MSG_MAPKW_MACHINE		"MACHINE"
156469112eddSAli Bahrami@ MSG_MAPKW_MAX_SIZE		"MAX_SIZE"
156569112eddSAli Bahrami@ MSG_MAPKW_NOHDR		"NOHDR"
156669112eddSAli Bahrami@ MSG_MAPKW_NODIRECT		"NODIRECT"
156769112eddSAli Bahrami@ MSG_MAPKW_NODYNSORT		"NODYNSORT"
156869112eddSAli Bahrami@ MSG_MAPKW_NOTE_SEGMENT	"NOTE_SEGMENT"
156969112eddSAli Bahrami@ MSG_MAPKW_NULL_SEGMENT	"NULL_SEGMENT"
157069112eddSAli Bahrami@ MSG_MAPKW_OS_ORDER		"OS_ORDER"
157169112eddSAli Bahrami@ MSG_MAPKW_PADDR		"PADDR"
157269112eddSAli Bahrami@ MSG_MAPKW_PARENT		"PARENT"
157369112eddSAli Bahrami@ MSG_MAPKW_PHDR_ADD_NULL	"PHDR_ADD_NULL"
157469112eddSAli Bahrami@ MSG_MAPKW_PLATFORM		"PLATFORM"
157569112eddSAli Bahrami@ MSG_MAPKW_PROTECTED		"PROTECTED"
157669112eddSAli Bahrami@ MSG_MAPKW_READ		"READ"
157769112eddSAli Bahrami@ MSG_MAPKW_ROUND		"ROUND"
157869112eddSAli Bahrami@ MSG_MAPKW_REQUIRE		"REQUIRE"
157969112eddSAli Bahrami@ MSG_MAPKW_SEGMENT_ORDER	"SEGMENT_ORDER"
158069112eddSAli Bahrami@ MSG_MAPKW_SF			"SF"
158169112eddSAli Bahrami@ MSG_MAPKW_SF_1		"SF_1"
158269112eddSAli Bahrami@ MSG_MAPKW_SINGLETON		"SINGLETON"
158369112eddSAli Bahrami@ MSG_MAPKW_SIZE		"SIZE"
158469112eddSAli Bahrami@ MSG_MAPKW_SIZE_SYMBOL		"SIZE_SYMBOL"
158569112eddSAli Bahrami@ MSG_MAPKW_STACK		"STACK"
158669112eddSAli Bahrami@ MSG_MAPKW_SYMBOL_SCOPE	"SYMBOL_SCOPE"
158769112eddSAli Bahrami@ MSG_MAPKW_SYMBOL_VERSION	"SYMBOL_VERSION"
158869112eddSAli Bahrami@ MSG_MAPKW_SYMBOLIC		"SYMBOLIC"
158969112eddSAli Bahrami@ MSG_MAPKW_TYPE		"TYPE"
159069112eddSAli Bahrami@ MSG_MAPKW_VADDR		"VADDR"
159169112eddSAli Bahrami@ MSG_MAPKW_VALUE		"VALUE"
159269112eddSAli Bahrami@ MSG_MAPKW_WRITE		"WRITE"
15930e233487SRod Evans
159469112eddSAli Bahrami
159569112eddSAli Bahrami@ MSG_STR_DTRACE	"PT_SUNWDTRACE"
1596