1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21 22# 23# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26 27@ _START_ 28 29# Message file for cmd/sgs/liblddbg. 30 31@ MSG_ID_LIBLDDBG 32 33 34# Usage messages 35 36@ MSG_USE_UNRECOG "warning: unrecognized debug option (try help): %s" 37@ MSG_USE_CNTNEGOPT "warning: ignoring non-negatable debug option: %s" 38 39@ MSG_USE_HDR_DCT "Display Control Tokens:" 40@ MSG_USE_HDR_CST "Category Selection Tokens:" 41@ MSG_USE_HDR_BOTH " [ld and ld.so.1]" 42@ MSG_USE_HDR_RTLD " [ld.so.1 only]" 43@ MSG_USE_HDR_LD " [ld only]" 44 45# TRANSLATION_NOTE - Use the following output in the C locale as reference 1. 46# 47# The runtime linker and link-editor support a shared debugging 48# facility. Options are selected via a comma separated list of tokens, 49# each of which specifies a display option or a category for which 50# information is desired. Many tokens apply to both linker components, 51# while some are specific to one or the other. Diagnostics are printed, 52# one per line, with a standard prefix prepended to each one. Diagnostic 53# output is sent to stderr unless otherwise redirected. 54 55# TRANSLATION_NOTE - The next series of messages makes the above output in C 56# locale. 57 58@ MSG_USE_R1_A "The runtime linker and link-editor support a \ 59 shared debugging" 60@ MSG_USE_R1_B "facility. Options are selected via a comma separated list \ 61 of tokens," 62@ MSG_USE_R1_C "each of which specifies a display option or a category \ 63 for which" 64@ MSG_USE_R1_D "information is desired. Many tokens apply to both linker \ 65 components," 66@ MSG_USE_R1_E "while some are specific to one or the other. Diagnostics \ 67 are printed," 68@ MSG_USE_R1_F "one per line, with a standard prefix prepended to each one. \ 69 Diagnostic" 70 71# TRANSLATION_NOTE -- do not translate "stderr" 72@ MSG_USE_R1_G "output is sent to stderr unless otherwise redirected." 73 74# TRANSLATION_NOTE - End of reference 1 75 76 77# TRANSLATION_NOTE - Use the following output in the C locale as reference 2. 78# 79# Runtime Linking (ld.so.1): 80# Diagnostics that trace the runtime linking of an application 81# can be enabled via the LD_DEBUG environment variable: 82# LD_DEBUG=token1,token2 app ... 83# In addition to the "output" token described below, diagnostic 84# output from the runtime linker can be redirected to an output 85# file using the additional environment variable: 86# LD_DEBUG_OUTPUT=file 87# If the "output" token and LD_DEBUG_OUTPUT are both specified, 88# the file specified by LD_DEBUG_OUTPUT is used. If LD_DEBUG_OUTPUT 89# is used, the output file name is suffixed with the process id. 90# An output file specified via the "output" token is used as 91# specified, without a process id suffix. 92# 93# All runtime linker diagnostics are prepended with the process 94# id. If thread capabilities are enabled for the process, the 95# thread id is also shown. All Solaris applications are thread 96# capable, and a single threaded application may use threads via 97# the libraries it links to. Diagnostics from such applications 98# reference thread id 1. 99 100# TRANSLATION_NOTE - The next series of messages makes the above output in C 101# locale. 102 103@ MSG_USE_R2_A "Runtime Linking (ld.so.1):" 104@ MSG_USE_R2_B " Diagnostics that trace the runtime linking \ 105 of an application" 106 107# TRANSLATION_NOTE -- do not translate "LD_DEBUG" 108@ MSG_USE_R2_C " can be enabled via the LD_DEBUG environment variable:" 109 110# TRANSLATION_NOTE -- do not translate "LD_DEBUG" 111@ MSG_USE_R2_D " LD_DEBUG=token1,token2 app ..." 112 113# TRANSLATION_NOTE -- do not translate "output" 114@ MSG_USE_R2_E " In addition to the \"output\" token described \ 115 below, diagnostic" 116@ MSG_USE_R2_F " output from the runtime linker can be redirected to \ 117 an output" 118@ MSG_USE_R2_G " file using the additional environment variable:" 119 120# TRANSLATION_NOTE -- do not translate "LD_DEBUG_OUTPUT" 121@ MSG_USE_R2_H " LD_DEBUG_OUTPUT=file" 122 123# TRANSLATION_NOTE -- do not translate "output" or "LD_DEBUG_OUTPUT" 124@ MSG_USE_R2_I " If the \"output\" token and LD_DEBUG_OUTPUT are \ 125 both specified," 126 127# TRANSLATION_NOTE -- do not translate "LD_DEBUG_OUTPUT" 128@ MSG_USE_R2_J " the file specified by LD_DEBUG_OUTPUT is used. \ 129 If LD_DEBUG_OUTPUT" 130@ MSG_USE_R2_K " is used, the output file name is suffixed with \ 131 the process id." 132 133# TRANSLATION_NOTE -- do not translate "output" 134@ MSG_USE_R2_L " An output file specified via the \"output\" token \ 135 is used as" 136@ MSG_USE_R2_M " specified, without a process id suffix." 137 138 139@ MSG_USE_R2_N " All runtime linker diagnostics are prepended with \ 140 the process" 141@ MSG_USE_R2_O " id. If thread capabilities are enabled for the \ 142 process, the" 143@ MSG_USE_R2_P " thread id is also shown. All Solaris applications are \ 144 thread" 145@ MSG_USE_R2_Q " capable, and a single threaded application may \ 146 use threads via" 147@ MSG_USE_R2_R " the libraries it links to. Diagnostics from such \ 148 applications" 149@ MSG_USE_R2_S " reference thread id 1." 150 151# TRANSLATION_NOTE - End of reference 2 152 153 154# TRANSLATION_NOTE - Use the following output in the C locale as reference 3. 155# 156# Link-Editing (ld): 157# Diagnostics that trace the link-editing of an application are 158# enabled using the -D option: 159# ld -Dtoken1,token2 -o prog ... 160# As compiler drivers may assign -D a different meaning, the 161# LD_OPTIONS environment variable is often used: 162# LD_OPTIONS=-Dtoken1,token2 cc -o prog ... 163# 164# The position of -D on the link-edit command line is significant. 165# Diagnostics are enabled when a debug token is first encountered, 166# and can be switched off by prepending the token with "!". 167# 168# Diagnostic output can be directed to a file using the "output" 169# token, The output file is used as specified, without a process 170# id suffix. 171# 172# All link-editor diagnostics are prepended with the string "debug". 173# 174 175# TRANSLATION_NOTE - The next series of messages makes the above output in C 176# locale. 177 178@ MSG_USE_R3_A " Link-Editing (ld):" 179@ MSG_USE_R3_B " Diagnostics that trace the link-editing of an \ 180 application are" 181@ MSG_USE_R3_C " enabled using the -D option:" 182@ MSG_USE_R3_D " ld -Dtoken1,token2 -o prog ..." 183@ MSG_USE_R3_E " As compiler drivers may assign -D a different meaning, the" 184 185# TRANSLATION_NOTE -- do not translate "LD_OPTIONS" 186@ MSG_USE_R3_F " LD_OPTIONS environment variable is often used:" 187 188# TRANSLATION_NOTE -- do not translate "LD_OPTIONS" 189@ MSG_USE_R3_G " LD_OPTIONS=-Dtoken1,token2 cc -o prog ..." 190 191@ MSG_USE_R3_H " The position of -D on the link-edit command line \ 192 is significant." 193@ MSG_USE_R3_I " Diagnostics are enabled when a debug token is \ 194 first encountered," 195@ MSG_USE_R3_J " and can be switched off by prepending the token \ 196 with \"!\"." 197 198# TRANSLATION_NOTE -- do not translate "output" 199@ MSG_USE_R3_K " Diagnostic output can be directed to a file using \ 200 the \"output\"" 201 202@ MSG_USE_R3_L " token, The output file is used as specified, \ 203 without a process" 204@ MSG_USE_R3_M " id suffix." 205 206 207# TRANSLATION_NOTE -- do not translate "debug" 208@ MSG_USE_R3_N " All link-editor diagnostics are prepended with the \ 209 string \"debug\"." 210 211# TRANSLATION_NOTE - End of reference 3 212 213 214# TRANSLATION_NOTE - Use the following output in the C locale as reference 4. 215# 216# demangle show C++ symbol names in their demangled form 217# detail provide more information in conjunction with 218# other options 219# dtime prepend a time delta to diagnostics. The value 220# appears as seconds.fraction, and represents 221# the elapsed time since that last diagnostic. 222# long display long object names without truncation 223# output=file debug output is sent to the named file 224# instead of stderr. If file is empty (\"\"), 225# following output will be sent to stderr. 226# ttime prepend a time stamp to diagnostics. The value 227# appears as seconds.fraction, and represents 228# the time since entering ld or ld.so.1. 229# Note, all diagnostics induce a probe affect, 230# which should be taken into account when 231# interpreting dtime and ttime information. 232# 233 234# TRANSLATION_NOTE - The next series of messages makes the above output in C 235# locale. 236 237# TRANSLATION_NOTE -- do not translate the first token "demangle". 238@ MSG_USE_R4_A " demangle show C++ symbol names in their \ 239 demangled form" 240 241# TRANSLATION_NOTE -- do not translate the first token "detail". 242@ MSG_USE_R4_B " detail provide more information in \ 243 conjunction with" 244@ MSG_USE_R4_B2 " other options" 245 246# TRANSLATION_NOTE -- do not translate the first token "dtime". 247@ MSG_USE_R4_C " dtime prepend a time delta to diagnostics. \ 248 The value" 249@ MSG_USE_R4_C2 " appears as seconds.fraction, and \ 250 represents" 251@ MSG_USE_R4_C3 " the elapsed time since that last \ 252 diagnostic." 253 254# TRANSLATION_NOTE -- do not translate the first token "long". 255@ MSG_USE_R4_D " long display long object names without \ 256 truncation" 257 258# TRANSLATION_NOTE -- do not translate the first token "output". 259@ MSG_USE_R4_E " output=file debug output is sent to the \ 260 named file" 261@ MSG_USE_R4_E2 " instead of stderr. If file is \ 262 empty (\"\")," 263@ MSG_USE_R4_E3 " following output will be \ 264 sent to stderr." 265 266# TRANSLATION_NOTE -- do not translate the first token "ttime". 267@ MSG_USE_R4_F " ttime prepend a time stamp to diagnostics. \ 268 The value" 269@ MSG_USE_R4_F2 " appears as seconds.fraction, and \ 270 represents" 271@ MSG_USE_R4_F3 " the time since entering ld or \ 272 ld.so.1." 273@ MSG_USE_R4_F4 " Note all diagnostics induce a \ 274 probe affect," 275@ MSG_USE_R4_F5 " which should be taken into \ 276 account when" 277@ MSG_USE_R4_F6 " interpreting dtime and ttime \ 278 information." 279 280# TRANSLATION_NOTE - End of reference 4 281 282 283# TRANSLATION_NOTE - Use the following output in the C locale as reference 5. 284# 285# lmid[=name] prepend link-map list id to diagnostics, and 286# optionally filter the lists: By default, 287# diagnostics are produced for all link-map 288# lists except that of the runtime linker 289# (ldso), without identification. "lmid" causes 290# the link-map list id to be prepended. 291# "name" limits diagnostics to the named 292# link-map list. Additional "lmid" tokens 293# can specify multiple link-map lists. 294# Valid names are: 295# all all link-map lists except ldso 296# alt all alternative link-map lists 297# alt[0-9]+ specific alternative link-map list 298# base the base, or main, link-map list 299# ldso the runtime linker link-map list 300# 301 302# TRANSLATION_NOTE - The next series of messages makes the above output in C 303# locale. 304 305 306# TRANSLATION_NOTE -- do not translate the first token "lmid". 307@ MSG_USE_R5_A " lmid[=name] prepend link-map list id to \ 308 diagnostics, and" 309@ MSG_USE_R5_A2 " optionally filter the lists: By \ 310 default," 311@ MSG_USE_R5_A3 " diagnostics are produced for all \ 312 link-map" 313@ MSG_USE_R5_A4 " lists except that of the runtime \ 314 linker" 315@ MSG_USE_R5_A5 " (ldso), without identification. \ 316 \"lmid\" causes" 317 318# TRANSLATION_NOTE -- do not translate "name" 319@ MSG_USE_R5_A6 " the link-map list id to be prepended." 320@ MSG_USE_R5_A7 " \"name\" limits diagnostics to the \ 321 named" 322@ MSG_USE_R5_A8 " link-map list. Additional \"lmid\" \ 323 tokens" 324@ MSG_USE_R5_A9 " can specify multiple link-map \ 325 lists." 326@ MSG_USE_R5_A0 " Valid names are:" 327 328# TRANSLATION_NOTE -- do not translate the token "all". 329@ MSG_USE_R5_B " all all link-map lists \ 330 except ldso" 331 332# TRANSLATION_NOTE -- do not translate the token "alt". 333@ MSG_USE_R5_C " alt all alternative \ 334 link-map lists" 335 336# TRANSLATION_NOTE -- do not translate the token "alt". 337@ MSG_USE_R5_D " alt[0-9]+ specific alt \ 338 link-map list" 339 340# TRANSLATION_NOTE -- do not translate the token "base". 341@ MSG_USE_R5_E " base base (main) \ 342 link-map list" 343@ MSG_USE_R5_F " ldso runtime linker \ 344 link-map list " 345# TRANSLATION_NOTE - End of reference 5 346 347 348# TRANSLATION_NOTE - Use the following output in the C locale as reference 6. 349# 350# name prepend output file basename to diagnostics 351# fullname prepend full output file name to diagnostics 352# class prepend output file elfclass (32/64) to 353# diagnostics 354# 355 356# TRANSLATION_NOTE - The next series of messages makes the above output in C 357# locale. 358 359# TRANSLATION_NOTE -- do not translate the first token "name". 360@ MSG_USE_R6_A " name prepend output file basename \ 361 to diagnostics" 362 363# TRANSLATION_NOTE -- do not translate the first token "fullname". 364@ MSG_USE_R6_B " fullname prepend full output file name \ 365 to diagnostics" 366 367# TRANSLATION_NOTE -- do not translate the first token "class". 368@ MSG_USE_R6_C " class prepend output file elfclass \ 369 (32/64) to" 370@ MSG_USE_R6_C2 " diagnostics" 371 372# TRANSLATION_NOTE - End of reference 6 373 374 375# TRANSLATION_NOTE - Use the following output in the C locale as reference 7. 376# 377# all display information for all categories 378# basic basic trace information/warnings 379# cap hardware/software capabilities 380# files input file processing (files and libraries) 381# help this help message 382# libs library search paths; detail flag shows 383# actual library lookup (-l) processing 384# move move sections 385# reloc relocations 386# symbols symbol tables; detail flag shows internal 387# symbol table addition and resolution (ld only) 388# tls thread local storage (TLS) 389# unused unused/unreferenced files; detail flag 390# shows unused sections (ld only) 391# versions ELF versioning 392 393# TRANSLATION_NOTE - The next series of messages makes the above output in C 394# locale. 395 396 397# TRANSLATION_NOTE -- do not translate the first token "all". 398@ MSG_USE_R7_A " all display information for \ 399 all categories" 400 401# TRANSLATION_NOTE -- do not translate the first token "basic". 402@ MSG_USE_R7_B " basic basic trace information/warnings" 403 404# TRANSLATION_NOTE -- do not translate the first token "cap". 405@ MSG_USE_R7_C " cap hardware/software capabilities" 406 407# TRANSLATION_NOTE -- do not translate the first token "files". 408@ MSG_USE_R7_D " files input file processing (files \ 409 and libraries)" 410 411# TRANSLATION_NOTE -- do not translate the first token "help". 412@ MSG_USE_R7_E " help this help message" 413 414# TRANSLATION_NOTE -- do not translate the first token "libs". 415@ MSG_USE_R7_F " libs library search paths; detail \ 416 flag shows" 417@ MSG_USE_R7_F2 " actual library lookup (-l) \ 418 processing" 419 420# TRANSLATION_NOTE -- do not translate the first token "move". 421@ MSG_USE_R7_G " move move sections" 422 423# TRANSLATION_NOTE -- do not translate the first token "reloc". 424@ MSG_USE_R7_H " reloc relocations" 425 426# TRANSLATION_NOTE -- do not translate the first token "symbols". 427@ MSG_USE_R7_I " symbols symbol tables; detail flag shows \ 428 internal" 429@ MSG_USE_R7_I2 " symbol table addition/resolution \ 430 (ld only)" 431 432# TRANSLATION_NOTE -- do not translate the first token "tls". 433@ MSG_USE_R7_J " tls thread local storage (TLS)" 434 435# TRANSLATION_NOTE -- do not translate the first token "unused". 436@ MSG_USE_R7_K " unused unused/unreferenced files; \ 437 detail flag" 438@ MSG_USE_R7_K2 " shows unused sections (ld only)" 439 440# TRANSLATION_NOTE -- do not translate the first token "versions". 441@ MSG_USE_R7_L " versions ELF versioning" 442 443# TRANSLATION_NOTE - End of reference 7 444 445 446# TRANSLATION_NOTE - Use the following output in the C locale as reference 8. 447# 448# audit runtime link-audit processing 449# bindings symbol binding; detail flag shows 450# absolute:relative addresses 451# init init and fini processing 452 453 454# TRANSLATION_NOTE - The next series of messages makes the above output in C 455# locale. 456 457 458# TRANSLATION_NOTE -- do not translate the first token "audit". 459@ MSG_USE_R8_A " audit runtime link-audit processing" 460 461# TRANSLATION_NOTE -- do not translate the first token "bindings". 462@ MSG_USE_R8_B " bindings symbol binding; detail flag shows" 463@ MSG_USE_R8_B2 " absolute:relative addresses" 464 465# TRANSLATION_NOTE -- do not translate the first token "init". 466@ MSG_USE_R8_C " init init and fini processing" 467 468# TRANSLATION_NOTE - End of reference 8 469 470 471# TRANSLATION_NOTE - Use the following output in the C locale as reference 9. 472# 473# args input arguments 474# entry entrance criteria descriptors 475# got GOT symbol information 476# map map file processing 477# sections input sections 478# segments output segments and address/offset processing; 479# detail flag shows associated sections 480# statistics symbol table and relocation statistics 481# strtab string table compression statistics; 482# detail flag shows layout of string tables 483# support support libraries 484 485# TRANSLATION_NOTE - The next series of messages makes the above output in C 486# locale. 487 488# TRANSLATION_NOTE -- do not translate the first token "args". 489@ MSG_USE_R9_A " args input arguments" 490 491# TRANSLATION_NOTE -- do not translate the first token "entry". 492@ MSG_USE_R9_B " entry entrance criteria descriptors" 493 494# TRANSLATION_NOTE -- do not translate the first token "got". 495@ MSG_USE_R9_C " got GOT symbol information" 496 497# TRANSLATION_NOTE -- do not translate the first token "map". 498@ MSG_USE_R9_D " map map file processing" 499 500# TRANSLATION_NOTE -- do not translate the first token "sections". 501@ MSG_USE_R9_E " sections input sections" 502 503# TRANSLATION_NOTE -- do not translate the first token "segments". 504@ MSG_USE_R9_F " segments output segments and address/offset \ 505 processing;" 506@ MSG_USE_R9_F2 " detail flag shows associated \ 507 sections" 508 509# TRANSLATION_NOTE -- do not translate the first token "statistics". 510@ MSG_USE_R9_G " statistics symbol table and relocation \ 511 statistics" 512 513# TRANSLATION_NOTE -- do not translate the first token "strtab". 514@ MSG_USE_R9_H " strtab string table compression statistics;" 515@ MSG_USE_R9_H2 " detail flag shows layout of \ 516 string tables" 517 518# TRANSLATION_NOTE -- do not translate the first token "support". 519@ MSG_USE_R9_I " support support libraries" 520 521# TRANSLATION_NOTE - End of reference 9 522 523 524# Basic processing (ld). 525 526@ MSG_BASIC_COLLECT "collect relocations" 527@ MSG_BASIC_CREATE "create output image" 528@ MSG_BASIC_FILES "process files" 529@ MSG_BASIC_FINISHED "processing finished" 530@ MSG_BASIC_OPTIONS "process options" 531@ MSG_BASIC_RELOCATE "relocate output image" 532@ MSG_BASIC_VALIDATE "validating symbols" 533 534# Argument messages 535 536@ MSG_ARG_OPTION "arg[%d]\toption=-%c" 537@ MSG_ARG_OPTARG "arg[%d]\toption=-%c: option-argument: %s" 538@ MSG_ARG_STR2CHR "arg[%d]\toption=-%s: translated: new option=-%c" 539@ MSG_ARG_WLDEL "arg[%d]\toption=-W%s: translated: prefix -Wl,: \ 540 removed" 541@ MSG_ARG_FILE "arg[%d]\tfile=%s" 542 543 544# Bindings messages 545# NOTE: these are used by appcert(1) and lari(1), use care when changing. 546 547@ MSG_BND_BASIC "binding file=%s to file=%s: symbol `%s'" 548@ MSG_BND_PLT "binding file=%s (%#llx:%#llx) at plt[%lld]:%s to \ 549 file=%s (%#llx:%#llx): symbol `%s'%s" 550@ MSG_BND_DLSYM "binding file=%s (dlsym) to file=%s \ 551 (%#llx:%#llx): symbol `%s'%s" 552@ MSG_BND_DEFAULT "binding file=%s (%#llx:%#llx) to file=%s \ 553 (%#llx:%#llx): symbol `%s'%s" 554@ MSG_BND_WEAK_1 "binding file=%s to 0x0 (undefined weak): symbol `%s'" 555@ MSG_BND_WEAK_2 "binding file=%s (%#llx:%#llx) to 0x0 \ 556 (undefined weak): symbol `%s'" 557 558# NOTE: the rejected message is used by lari(1), use care when changing. This 559# message is formatted to conform to the pattern used by the MSG_BINFO messages. 560@ MSG_BND_REJECT "binding file=%s to file=%s: symbol `%s' \ 561 (rejected: %s)" 562@ MSG_BNDREJ_DIRECT "attempt to directly bind to a NODIRECT definition" 563@ MSG_BNDREJ_GROUP "attempt to bind within a group to a NODIRECT \ 564 definition" 565@ MSG_BNDREJ_SINGLE "attempt to bind to a SINGLETON definition without \ 566 following default search model" 567 568@ MSG_BND_PLTPAD_TO " pltpad: %#llx: file=%s bound to file=%s: \ 569 symbol `%s'" 570@ MSG_BND_PLTPAD_FROM " pltpad: %#llx: bound from file=%s: symbol `%s'" 571 572@ MSG_BND_PSUM_SPARCV9 "Summary of PLT types bound: 21d=%d, 24d=%d, u32=%d, \ 573 u44=%d, full=%d, far=%d, Total=%d" 574@ MSG_BND_PSUM_SPARC "Summary of PLT types bound: 21d=%d, 24d=%d, \ 575 full=%d, Total=%d" 576@ MSG_BND_PSUM_DEFAULT "Summary of PLT types bound: total=%d" 577 578# Relocation messages 579 580@ MSG_REL_GENERATE "generating input relocations: section=%s" 581@ MSG_REL_COLLECT "collecting input relocations: section=%s, file=%s" 582@ MSG_REL_ACTIVE "performing active relocations" 583@ MSG_REL_CREATING "creating output relocations" 584@ MSG_REL_START "relocation processing: file=%s%s" 585@ MSG_REL_FINISH "relocation processing: file=%s; finished%s" 586@ MSG_REL_NONE "relocation processing: file=%s%s; nothing to do" 587 588@ MSG_REL_PLT " (plt processing only)" 589@ MSG_REL_FAIL " (failed)" 590 591@ MSG_REL_BADROFFSET "<offset lies outside memory image; \ 592 relocation discarded>" 593 594@ MSG_REL_TRANSITION "relocation: %s: section=%s; input from file=%s; \ 595 offset=0x%llx; symbol=%s; transitioned to: %s" 596@ MSG_REL_DISCARDED "relocation against discarded section=%s from file=%s; \ 597 relocation type=%s offset=0x%llx; relocation discarded" 598@ MSG_REL_COPY "copy data from file=%s to file=%s: symbol `%s'%s" 599@ MSG_REL_SLOPPYCOMDAT "the following relocation references a discarded \ 600 section; relocation redirected to section %s in \ 601 file %s" 602 603# Entrance criteria messages 604 605@ MSG_ECR_TITLE "%s Entrance Descriptor List (available)" 606@ MSG_ECR_DYNAMIC "Dynamic" 607@ MSG_ECR_STATIC "Static" 608@ MSG_ECR_DESC "entrance descriptor[%u]" 609 610 611# Elf Data (section) messages 612# TRANSLATION_NOTE - the following two entries provide for a series of one or 613# more standard 32-bit Elf_Data entries that align with the initial title. 614 615@ MSG_EDATA_TITLE_32 " addr type size offset al file" 616@ MSG_EDATA_ENTRY_32 " %3s %#10llx %-5s %#10llx %#8llx %2lld %s %s%s" 617 618# TRANSLATION_NOTE - the following two entries provide for a series of one or 619# more standard 64-bit Elf_Data entries that align with the initial title. 620 621@ MSG_EDATA_TITLE_64 " addr type \ 622 size offset al file" 623@ MSG_EDATA_ENTRY_64 " %3s %#18llx %-5s %#18llx %#16llx %2lld %s %s%s" 624 625@ MSG_EDATA_IGNSCN " (section ignored)" 626 627# File messages 628 629@ MSG_FIL_BASIC "file=%s [ %s ]" 630@ MSG_FIL_ARCHIVE "file=%s [ archive ] %s" 631@ MSG_FIL_SKIP_1 "file=%s; skipped: already processed as %s" 632@ MSG_FIL_SKIP_2 "file=%s; skipped: already processed" 633@ MSG_FIL_REUSE "file=%s; reusing: originally processed as %s" 634@ MSG_FIL_PROT "file=%s; modifying memory protections (%c PROT_WRITE)" 635@ MSG_FIL_DELETE "file=%s; deleting" 636@ MSG_FIL_DLOPEN "file=%s; dlopen() called from file=%s %s %s" 637@ MSG_FIL_DLCLOSE "file=%s; dlclose() %s" 638@ MSG_FIL_CLEANUP "file=%s; loading failed: cleaning up lmco 0x%llx" 639@ MSG_FIL_DLDUMP "file=%s; dldump() to file=%s %s" 640@ MSG_FIL_LAZYLOAD "file=%s; lazy loading from file=%s: symbol=%s" 641@ MSG_FIL_PRELOAD "file=%s; preloading" 642@ MSG_FIL_NEEDED "file=%s; needed by %s" 643@ MSG_FIL_FILTER_1 "file=%s; filter for %s (configuration definition)" 644@ MSG_FIL_FILTER_2 "file=%s; filter for %s" 645@ MSG_FIL_FILTEE_2 "file=%s; filtee processing failed" 646@ MSG_FIL_FILTEE_3 "file=%s; filtee skipped (auditing directed)" 647@ MSG_FIL_FIXNAME "file=%s; required name=%s" 648@ MSG_FIL_PROMOTE "file=%s; promoting mode to %s" 649@ MSG_FIL_AOUT "file=%s [ AOUT ]; generating link map" 650@ MSG_FIL_ELF "file=%s [ ELF ]; generating link map%s" 651@ MSG_FIL_LDSO "file=%s [ ELF ]" 652 653# NOTE: these are used by lari(1), use care when changing. 654@ MSG_FIL_ANALYZE "file=%s; analyzing %s" 655@ MSG_FIL_FILTEE_1 "file=%s; filtered by %s" 656@ MSG_FIL_CONFIG "file=%s [ ELF ]; configuration alternate found: %s" 657 658 659@ MSG_FIL_DATA_AS " addr: %#18llx size: %#18llx" 660@ MSG_FIL_DATA_LL " lmid: %18.18s lmco: %#18llx" 661@ MSG_FIL_DATA_EA " envp: %#18llx auxv: %#18llx" 662 663@ MSG_FIL_MMAPOBJ "file=%s mmapobj entries=%d" 664@ MSG_FIL_MMAPOBJ_1 " [%d]: addr: %#18llx fsize: %#18llx %s" 665@ MSG_FIL_MMAPOBJ_2 " offset: %#17llx msize: %#18llx" 666 667@ MSG_FIL_BND_ADD "file=%s; add binding to:" 668@ MSG_FIL_BND_FILE " file=%s %s" 669 670@ MSG_FIL_DEP_TITLE "processing %s dependencies %s:" 671@ MSG_FIL_DEP_NONE " file=%s; has no dependencies" 672@ MSG_FIL_DEP_ENT " file=%s; depends on:" 673 674@ MSG_FIL_DEP_ADD " file=%s; object added %s %s" 675@ MSG_FIL_DEP_UPDATE " file=%s; object updated %s %s" 676@ MSG_FIL_DEP_DELETE " file=%s; object deleting %s" 677@ MSG_FIL_DEP_REMOVE " file=%s; object removed from handle %s" 678@ MSG_FIL_DEP_REMAIN " file=%s; object must remain on handle %s" 679@ MSG_FIL_DEP_ORPHAN " file=%s; object remains on orphan handle %s" 680@ MSG_FIL_DEP_REINST " file=%s; object reinstated %s" 681 682@ MSG_FIL_HDL_CREATE "handle=%s; creating %s 0x%llx:" 683@ MSG_FIL_HDL_ADD "handle=%s; adding dependent objects %s:" 684@ MSG_FIL_HDL_DELETE "handle=%s; inspecting for deletion:" 685@ MSG_FIL_HDL_ORPHAN "handle=%s; deletion cannot be completed: moving to \ 686 orphan list:" 687@ MSG_FIL_HDL_REINST "handle=%s; reinstating from orphan list:" 688 689@ MSG_FIL_HDL_COLLECT "handle=%s; collected for possible removal %s" 690@ MSG_FIL_HDL_RETAIN "handle=%s; externally referenced from %s: handle \ 691 retained" 692@ MSG_FIL_DEL_RESCAN "pending deletions; rescanning orphan list for \ 693 available deletions" 694 695@ MSG_FIL_AR_RESCAN "rescanning archives from args[%d-%d]; additional \ 696 members may satisfy prior extractions" 697 698@ MSG_FIL_CONFIG_ERR "configuration file=%s: %s" 699@ MSG_FIL_CONFIG_ERR_1 "ignored (configuration building)" 700@ MSG_FIL_CONFIG_ERR_2 "invalid version" 701@ MSG_FIL_CONFIG_ERR_3 "unable to process file" 702@ MSG_FIL_CONFIG_ERR_4 "corrupt or truncated file" 703@ MSG_FIL_CONFIG_ERR_5 "incompatible ELF class, byte order, or machine \ 704 architecture" 705 706@ MSG_FIL_MODIFIED "file=%s; open modified by support library: %s" 707@ MSG_FIL_NAMECHANGE " name changed to: %s" 708@ MSG_FIL_FDCHANGE " file descriptor changed from: %d to: %d %s" 709@ MSG_FIL_ELFCHANGE " ELF descriptor changed from: 0x%llx to: 0x%llx %s" 710@ MSG_FIL_IGNORE " (file will be ignored)" 711 712@ MSG_CNTL_TITLE "control list processing complete: moving lmco 0x%llx \ 713 to lmco 0x%llx" 714 715@ MSG_REJ_MACH "file=%s; rejected: wrong machine type: %s" 716@ MSG_REJ_CLASS "file=%s; rejected: wrong ELF class: %s" 717@ MSG_REJ_DATA "file=%s; rejected: wrong ELF data format: %s" 718@ MSG_REJ_TYPE "file=%s; rejected: bad ELF type: %s" 719@ MSG_REJ_BADFLAG "file=%s; rejected: bad ELF flags value: %s" 720@ MSG_REJ_MISFLAG "file=%s; rejected: mismatched ELF flags value: %s" 721@ MSG_REJ_VERSION "file=%s; rejected: mismatched ELF/lib version: %s" 722@ MSG_REJ_HAL "file=%s; rejected: HAL R1 extensions required" 723@ MSG_REJ_US3 "file=%s; rejected: Sun UltraSPARC III extensions \ 724 required" 725@ MSG_REJ_STR "obj=%s; rejected: %s" 726@ MSG_REJ_UNKFILE "obj=%s; rejected: unknown file type" 727@ MSG_REJ_HWCAP_1 "obj=%s; rejected: hardware capability unsupported: \ 728 %s" 729 730# Libs messages 731 732@ MSG_LIB_INITPATH "Library Search Paths (initial)" 733@ MSG_LIB_UPPATH "Library Search Paths (-L updated)" 734@ MSG_LIB_LOPT "find lib=-l%s; path=%s" 735@ MSG_LIB_REQUIRED "find lib=%s; path=%s (required by %s)" 736@ MSG_LIB_LDLIBPATH " search path=%s (LD_LIBRARY_PATH)" 737@ MSG_LIB_LDLIBPATHC " search path=%s (configuration LD_LIBRARY_PATH - %s)" 738@ MSG_LIB_RUNPATH " search path=%s (RUNPATH/RPATH from file %s)" 739@ MSG_LIB_DEFAULT " search path=%s (default)" 740@ MSG_LIB_DEFAULTC " search path=%s (configuration default - %s)" 741@ MSG_LIB_TDEFAULT " search path=%s (trusted default)" 742@ MSG_LIB_TDEFAULTC " search path=%s (trusted configuration default - %s)" 743@ MSG_LIB_LIBPATH " search path=%s (LIBPATH or -YP)" 744@ MSG_LIB_YPATH " search path=%s replaces path=%s (-Y%c)" 745 746@ MSG_LIB_FIND "find object=%s; searching" 747@ MSG_LIB_TRYING " trying path=%s%s" 748@ MSG_LIB_ALTER " trying path=%s (auditing supplied alternative)" 749@ MSG_LIB_SKIP " skip path=%s (auditing directed)" 750@ MSG_LIB_IGNORE " ignore path=%s (insecure directory name)" 751@ MSG_LIB_INUSE " use path=%s (implicitly secure, as directory \ 752 has already provided dependencies)" 753 754# Mapfile messages 755 756@ MSG_MAP_MAPFILE "map file=%s" 757 758@ MSG_MAP_SEG_DECL_1 "segment declaration (=), segment added:" 759@ MSG_MAP_SEG_DECL_2 "segment declaration (=), segment updated:" 760@ MSG_MAP_SEG_DECL_3 "implicit segment declaration (:), segment added:" 761@ MSG_MAP_SEG_DECL_4 "implicit segment declaration (@), segment added:" 762@ MSG_MAP_SEG_DECL_5 "size-symbol declaration (@), segment updated:" 763 764@ MSG_MAP_CAP "hardware/software declaration (=), capabilities added:" 765 766@ MSG_MAP_MAP_DIR "mapping directive (:), entrance criteria added:" 767 768@ MSG_MAP_SEC_ORDER "map section ordering, segment: %s section: \ 769 %s index: %d" 770 771@ MSG_MAP_SYM_SCOPE "symbol scope definition ({})" 772@ MSG_MAP_SYM_SIZE "size-symbol declaration (@), symbol=%s; %s" 773@ MSG_MAP_SYM_VER_1 "%s, %s; symbol=%s (%s)" 774@ MSG_MAP_SYM_VER_2 "%s; symbol=%s (%s)" 775 776@ MSG_MAP_CNT_DEF_1 "library control definition (-), %s; needed=%s" 777@ MSG_MAP_CNT_DEF_2 "library control definition (-), %s; needed" 778 779@ MSG_MAP_SORT_TITLE "map file additions: segment sorting required (vaddr):" 780@ MSG_MAP_SORT_ORIG " original=%s" 781@ MSG_MAP_SORT_FINAL " sorted=%s" 782 783# Move messages 784 785@ MSG_MOVE_FILE "file=%s processing move data" 786 787@ MSG_MOVE_TITLE1 " i/o offset size repeat stride \ 788 value with respect to" 789@ MSG_MOVE_TITLE2 " i/o address size repeat stride \ 790 value with respect to" 791 792@ MSG_MOVE_ENTRYIN " in %#10llx %6d %6d %6d %#16llx %s" 793@ MSG_MOVE_ENTRYOUT " out %#10llx %6d %6d %6d %#16llx %s" 794@ MSG_MOVE_EXPAND " %#10llx %#16llx (expanded)" 795 796@ MSG_MOVE_ADJEXPAND "for symbol=%s roffset: new=0x%llx" 797@ MSG_MOVE_ADJMOVE "for symbol=%s roffset: from=0x%llx, to=0x%llx" 798@ MSG_MOVE_OUTSCTADJ "adjusting addend for symbol=%s" 799@ MSG_MOVE_PAREXPN "expanding symbol=%s into .data: %s" 800@ MSG_MOVE_OUTMOVE "copying move entries for symbol=%s into .SUNW_move" 801@ MSG_MOVE_INPUT "collecting move entries: file=%s" 802@ MSG_MOVE_BAD "move %lld offset invalid: %s: offset=0x%llx \ 803 lies outside memory image; move discarded" 804 805# Section header messages 806 807@ MSG_SHD_MODIFIED "section=%s; section header modified by support \ 808 library: %s" 809@ MSG_SHD_ORIG " original:" 810@ MSG_SHD_NEW " new:" 811 812# TRANSLATION_NOTE - The following two items are used following a number in 813# the MSG_SHD_OFFSET_ENT_XX format strings below. For example "1 entry" 814# or "23 entries". 815# 816@ MSG_SHD_ENTRY_1 "entry" 817@ MSG_SHD_ENTRY_N "entries" 818 819 820# Section messages 821 822@ MSG_SEC_BACKING "map file symbol definitions: create backing storage:" 823 824@ MSG_SEC_INPUT "section=%s; input from file=%s" 825@ MSG_SEC_INPUT_GEN "section=%s" 826@ MSG_SEC_INPUT_GENSTR "section=%s; input generated merged string section" 827@ MSG_SEC_ADDED "section=%s; added to segment=%s" 828@ MSG_SEC_CREATED "section=%s; added to segment=%s (created)" 829@ MSG_SEC_REDIRECTED "section=%s; redirected to section=%s" 830@ MSG_SEC_DISCARDED "section=%s; input from file=%s; \ 831 discarded in favor of section=%s; file=%s" 832 833@ MSG_SEC_GNU_COMDAT_1 "section=%s; identified as COMDAT with \ 834 relaxed relocations enabled" 835@ MSG_SEC_GNU_COMDAT_2 "section=%s; identified as COMDAT" 836@ MSG_SEC_GNU_COMDAT_3 "section=%s; relaxed relocations enabled" 837 838@ MSG_SEC_GRP_DEFINE "section=%s; input from file=%s; defines %s\ 839 group: signature symbol: %s" 840@ MSG_SEC_GRP_MEMBER "section=%s; input from file=%s; member of %s\ 841 group: signature symbol: %s" 842@ MSG_SEC_GRP_DISCARDED "section=%s; input from file=%s; discarded in \ 843 favor of group: signature symbol: %s: file=%s" 844 845@ MSG_SEC_STRMERGE_DISCARDED "section=%s; input from file=%s; \ 846 discarded in favor of generated merged string section" 847@ MSG_SEC_STRMERGE_UNSUP "section=%s; input from file=%s; sh_addralign=%lld; \ 848 sh_entsize=%lld; unable to merge sections with this \ 849 size and alignment" 850 851@ MSG_SEC_STRTAB_STND "strtab=%s; full size: %lld; uncompressed" 852@ MSG_SEC_STRTAB_COMP "strtab=%s; full size: %lld; compressed down to: %lld" 853@ MSG_SEC_GENSTR_COMP "section=%s (generated merged string section); \ 854 full size: %lld; compressed down to: %lld" 855@ MSG_SEC_STRTAB_HD "strtab=%s; compression information [%d buckets]:" 856@ MSG_SEC_STRTAB_BCKT " bucket[%d]:" 857@ MSG_SEC_STRTAB_MSTR " [%lld] %s <master>" 858@ MSG_SEC_STRTAB_SUFSTR " [%lld] %s <suffix of: %s>" 859 860# Unused messages 861 862@ MSG_USD_SEC "section=%s; size=0x%llx; input from file=%s; \ 863 unused: does not satisfy any references%s" 864@ MSG_USD_SECDISCARD "; discarded" 865@ MSG_USD_FILE "file=%s unused: does not satisfy any references" 866@ MSG_USD_NEEDSTR "file=%s unused: unable to determine use" 867@ MSG_USD_UNREF "file=%s unreferenced: unused dependency of %s" 868@ MSG_USD_FILECYCLIC "file=%s unused: cyclic group [%d] member: \ 869 unreferenced outside of group" 870@ MSG_USD_LCINTERFACE "file=%s unused interface [%s]: using interface \ 871 from previously loaded object: file=%s" 872 873@ MSG_USD_LDLIBPATH " search path=%s unused: LD_LIBRARY_PATH entry" 874@ MSG_DUP_LDLIBPATH " search path=%s unused: (duplicate) LD_LIBRARY_PATH \ 875 entry" 876@ MSG_USD_LDLIBPATHC " search path=%s unused: configuration \ 877 LD_LIBRARY_PATH entry - %s" 878@ MSG_DUP_LDLIBPATHC " search path=%s unused: (duplicate) configuration \ 879 LD_LIBRARY_PATH entry - %s" 880@ MSG_USD_RUNPATH " search path=%s unused: RUNPATH/RPATH from file %s" 881 882# Segment messages 883 884@ MSG_SEG_DESC_INUSE "Segment Descriptor List (in use)" 885@ MSG_SEG_DESC_AVAIL "Segment Descriptor List (available)" 886 887 888# Support messages 889 890@ MSG_SUP_REQ "support object request=%s (%s)" 891@ MSG_SUP_REQ_ENV "supplied via SGS_SUPPORT" 892@ MSG_SUP_REQ_CMD "supplied via -S" 893 894@ MSG_SUP_ROUTINE " support object=%s: provides routine %s" 895 896@ MSG_SUP_CALLING_1 " calling routine=%s (%s)" 897@ MSG_SUP_CALLING_2 " calling routine=%s (%s) %s=%s" 898@ MSG_SUP_VNONE " unloading object=%s: version=LD_SUP_VNONE" 899@ MSG_SUP_OUTFILE "output file" 900@ MSG_SUP_INFILE "input file" 901@ MSG_SUP_INSEC "input section" 902@ MSG_SUP_SEC "section" 903 904# Symbol strings 905@ MSG_SYM_AR_FILE "symbol table processing; input file=%s [ archive ] %s" 906@ MSG_SYM_AR_ENTRY "archive[%lld]=%s" 907@ MSG_SYM_AR_CHECK "archive[%lld]=%s (%s) checking for tentative or \ 908 restricted visibility override" 909@ MSG_SYM_AR_RESOLVE "archive[%lld]=%s (%s) resolves undefined or tentative \ 910 symbol" 911@ MSG_SYM_AR_FORCEDEXRT "archive[%lld]=%s (%s) forced extraction" 912 913@ MSG_SYM_SPECIAL "symbol table processing; building special symbols" 914@ MSG_SYM_PROCESS "symbol table processing; input file=%s [ %s ]" 915@ MSG_SYM_FINAL "symbol table processing; final update" 916@ MSG_SYM_INDEX "symbol table processing; determining section \ 917 symbol's index" 918@ MSG_SYM_BSS "symbol table processing; assigning to bss \ 919 (possible copy relocations)" 920@ MSG_SYM_REDUCED "symbol table processing; reducing global symbols" 921@ MSG_SYM_RETAINING "symbol table processing; retaining local symbols" 922@ MSG_SYM_VERSION "symbol table processing; adding version symbols" 923 924@ MSG_SYM_BASIC "symbol[%d]=%s" 925@ MSG_SYM_ADDING "symbol[%d]=%s (global); adding" 926@ MSG_SYM_SECTION "symbol[%d]=%s (section); segment=%s" 927@ MSG_SYM_RESOLVING "symbol[%d]=%s (global); resolving [%d][%d]" 928@ MSG_SYM_UPDATE "symbol=%s; updated" 929@ MSG_SYM_CREATE "symbol=%s; creating" 930@ MSG_SYM_REDUCING "symbol=%s; reducing to local" 931@ MSG_SYM_ELIMINATING "symbol=%s; eliminating" 932@ MSG_SYM_NOTELIMINATE "symbol=%s; not eliminated: referenced by \ 933 section=%s, entry[%d]" 934@ MSG_SYM_DISCARD_SEC "symbol=%s; discarded: originates from unused or \ 935 discarded section=%s from file=%s" 936@ MSG_SYM_DISCARD_FILE "symbol=%s; discarded: originates from unused or \ 937 discarded file=%s" 938@ MSG_SYM_DISCARD_DUP "symbol[%d]=%s; discarded duplicate: originates from \ 939 file=%s" 940 941@ MSG_SYM_AOUT "symbol=%s; (original AOUT name)" 942@ MSG_SYM_LOOKUP "symbol=%s; lookup in file=%s [ %s ]" 943@ MSG_SYM_DLSYM_1 "symbol=%s; dlsym() called from file=%s %s %s" 944@ MSG_SYM_DLSYM_2 "symbol=%s; dlsym() called from file=%s; starting \ 945 at file=%s %s %s" 946 947@ MSG_SYM_LAZY_RESCAN "rescanning for lazy dependencies for symbol: %s" 948 949@ MSG_SYM_DUPSORTADDR "section %s: symbol `%s' and symbol `%s' have the \ 950 same address: %#llx" 951 952@ MSG_SYM_IGNGNUVER "symbol=%s; hash index=%d; version=%d; skipping \ 953 symbol with GNU version hidden bit set in file=%s" 954 955# Syminfo string 956 957@ MSG_SYMINFO_INFO "syminfo information" 958 959 960# Version strings 961 962@ MSG_VER_AVAIL_1 "version availability: file=%s" 963@ MSG_VER_AVAIL_2 " available version selected from" 964@ MSG_VER_DEF_TITLE "version definition processing: file=%s" 965@ MSG_VER_NEED_TITLE "version needed processing: file=%s" 966@ MSG_VER_NOINTERFACE "version definition has no interface symbols: %s" 967 968# SHF_ORDERED related messages. Token used is sections. 969 970@ MSG_ORD_SORT_BEFORE "section=%s; requires output section reordering:" 971@ MSG_ORD_SORT_AFTER "section=%s; output section reordered:" 972@ MSG_ORD_HDR_1 " number of SHN_BEGIN=%u, SHN_AFTER=%u, \ 973 sh_info/sh_link=%u" 974@ MSG_ORD_TITLE_1 " %s=SHN_BEGIN: section=%s from %s" 975@ MSG_ORD_TITLE_2 " %s=SHN_AFTER: section=%s from %s" 976@ MSG_ORD_TITLE_3 " sort key=%u: section=%s from %s, %s=%s" 977 978@ MSG_ORD_ERR_TITLE "the SHF_ORDERED section %s from %s has \ 979 an error; flag ignored" 980 981@ MSG_ORD_ERR_INFORANGE " the sh_info field is out of range" 982@ MSG_ORD_ERR_ORDER " the section pointed by sh_info is an ordered section" 983@ MSG_ORD_ERR_LINKRANGE " the sh_link field is out of range" 984@ MSG_ORD_ERR_FLAGS " the sh_flag is incorrect" 985@ MSG_ORD_ERR_CYCLIC " the sh_link is cyclic" 986@ MSG_ORD_ERR_LINKINV " a section pointed to by sh_link has an error" 987 988# Link-Auditing Messages 989 990@ MSG_AUD_INIT "audit library %s: processing" 991@ MSG_AUD_VERSION "audit library %s: running at version: %d" 992@ MSG_AUD_INTERFACE "audit library %s: provides interface: %s" 993@ MSG_AUD_OBJECT "audit library %s: offered object: %s" 994@ MSG_AUD_SYM "audit library %s: %s: symbol: %s: value: 0x%llx %s" 995@ MSG_AUD_SYMNEW "modified to: 0x%llx" 996 997@ MSG_AUD_IGNORE "file=%s; global auditing request ignored: object \ 998 did not initiate process" 999@ MSG_AUD_SKIP "file=%s; skipped: using auditor from %s" 1000@ MSG_AUD_TERM "file=%s; auditing terminated search" 1001 1002# GOT Messages 1003 1004@ MSG_GOT_INFO "Global Offset Table information: (%u entries)" 1005 1006# TRANSLATION_NOTE 1007# Do not translate .init or .fini, they represent reserved section names. 1008 1009@ MSG_UTL_INIT "calling .init (%s): %s" 1010@ MSG_UTL_FINI "calling .fini: %s" 1011@ MSG_UTL_ARRAY "calling %s[%d]:0x%llx: %s" 1012@ MSG_UTL_TRANS "transferring control: %s" 1013@ MSG_UTL_INTOOLATE "loading after relocation has started: interposition \ 1014 request (DF_1_INTERPOSE) ignored: %s" 1015 1016@ MSG_UTL_EDGE_TITLE_I "traversing %s dependency edge for interposer:" 1017@ MSG_UTL_EDGE_TITLE_S "traversing %s dependency edge:" 1018@ MSG_UTL_EDGE_START " node (%d): file=%s" 1019@ MSG_UTL_EDGE_IN " node (%d): file=%s: referenced by %s %s" 1020@ MSG_UTL_EDGE_OUT " node (%d): file=%s; cyclic dependency on %s" 1021@ MSG_UTL_COLLECT " [%d] %s; collecting %s section" 1022 1023@ MSG_UTL_SORT "from sorted order" 1024@ MSG_UTL_PEND "pending" 1025@ MSG_UTL_DYN "dynamically triggered" 1026@ MSG_UTL_DONE "done" 1027 1028@ MSG_UTL_NOINIT "warning: calling %s whose init has not completed" 1029 1030@ MSG_UTL_DBNOTIFY "notify debugger: event: %s state: %s" 1031 1032@ MSG_UTL_SCC_TITLE " cycle detected - sorting cyclic dependencies in %s" 1033@ MSG_UTL_SCC_SUBI "reverse load-order" 1034@ MSG_UTL_SCC_SUBF "load-order" 1035 1036@ MSG_UTL_LCINTERFACE "file=%s; provides interface [%s]: 0x%llx" 1037 1038# Generic strings 1039 1040@ MSG_STR_IGNORE "ignored" 1041@ MSG_STR_ENTERED "entered" 1042@ MSG_STR_INITIAL "initialized" 1043@ MSG_STR_IN " in" 1044@ MSG_STR_OUT "out" 1045@ MSG_STR_ACT "act" 1046@ MSG_STR_OLD "old" 1047@ MSG_STR_NEW "new" 1048@ MSG_STR_RESOLVED "resolved" 1049@ MSG_STR_ADD "adding" 1050@ MSG_STR_UP_1 "updating" 1051@ MSG_STR_UP_2 "updated" 1052 1053@ MSG_STR_UNKNOWN "<unknown>" 1054@ MSG_STR_ORPHAN "<orphan>" 1055 1056@ MSG_STR_UNUSED "(unused)" 1057@ MSG_STR_AGAIN "(again)" 1058@ MSG_STR_NULL "(null)" 1059@ MSG_STR_ALTER " (alternate)" 1060@ MSG_STR_COPYZERO " (copy zero's unnecessary)" 1061@ MSG_STR_TEMPORARY " (temporary)" 1062@ MSG_STR_RETRY " (retry) " 1063 1064# TLS related messages 1065 1066@ MSG_TLS_STATBLOCK1 "static TLS module: [%ld] %s" 1067@ MSG_TLS_STATBLOCK2 "static TLS reservation: in use %#llx: \ 1068 additional backup: %#llx" 1069@ MSG_TLS_STATBLOCK3 "static TLS requirement: [%ld] %s: size %#llx: \ 1070 satisfied from backup reservation: remaining %#llx" 1071@ MSG_TLS_MODENT1 " block: %#18llx soff: %#10llx flags: %#llx \ 1072 %s" 1073@ MSG_TLS_MODENT2 " filesz: %#18llx memsz: %#10llx modid: %lld" 1074@ MSG_TLS_MODACT "%s TLS module: %s" 1075@ MSG_TLS_ADD "add" 1076@ MSG_TLS_REMOVE "remove" 1077 1078# Statistics related messages 1079 1080@ MSG_STATS_AR "archive %s: count=%d, used=%d (%d%%)" 1081 1082@ MSG_STATS_GENERAL "General Statistics:" 1083@ MSG_STATS_FILES " Input files: relocatables=%lld \ 1084 shared objects=%lld archives=%lld" 1085@ MSG_STATS_SYMBOLS_OUT " Symbols output: globals=%-10lld locals=%lld" 1086@ MSG_STATS_SYMBOLS_IN " Symbols input: globals=%-10lld scoped=%-10lld \ 1087 eliminated=%lld" 1088@ MSG_STATS_RELOCS_OUT " Relocations output: records=%lld" 1089@ MSG_STATS_RELOCS_IN " Relocations input: records=%-10lld applied=%lld" 1090 1091# Hardware/Software capabilities messages 1092 1093@ MSG_CAP_VAL_HW1 "hardware capabilities - %s" 1094 1095@ MSG_CAP_SEC_TITLE "hardware/software capabilities; input file=%s" 1096@ MSG_CAP_SEC_ENTRY "%12.12s %-15.15s %s" 1097 1098@ MSG_CAP_HW_CANDIDATE "obj=%s; hardware capabilities candidate" 1099 1100@ MSG_CAP_HWFILTR_1 "dir=%s; hardware capability directory filtered by %s" 1101@ MSG_CAP_HWFILTR_2 "dir=%s; no hardware capability objects found" 1102 1103 1104 1105@ MSG_ELF_HEADER "ELF Header" 1106 1107# Capabilities entries. 1108# TRANSLATION_NOTE - the following two entries provide for a series of one or 1109# more capabilities table entries that align with the initial title. 1110 1111@ MSG_CAP_ELF_TITLE " index tag value" 1112@ MSG_CAP_ELF_ENTRY "%10.10s %-15.15s %s" 1113 1114 1115# Dynamic entries. 1116# TRANSLATION_NOTE - the following two entries provide for a series of one or 1117# more dynamic table entries that align with the initial title. 1118 1119@ MSG_DYN_TITLE " index tag value" 1120@ MSG_DYN_ENTRY "%10.10s %-16.16s %-#16llx %s" 1121 1122 1123# Symbol table entries. 1124# TRANSLATION_NOTE - the following entries provide for a series of one or more 1125# standard 32-bit symbol table entries that align with the initial title. 1126 1127@ MSG_SYM_EFS_TITLE_32 " index value size type bind \ 1128 oth ver shndx name" 1129@ MSG_SYM_LDS_TITLE_32 " value size type bind \ 1130 oth ver shndx" 1131@ MSG_SYM_EFS_ENTRY_32 "%10.10s %10.10s 0x%8.8x %4s %4s %2s %4s \ 1132 %-14.14s %s" 1133 1134# TRANSLATION_NOTE - the following entries provide for a series of one or more 1135# long 32-bit symbol table entries that align with the initial title. 1136 1137@ MSG_SYM_EFL_TITLE_32 " index value size type bind \ 1138 oth ver shndx / name" 1139@ MSG_SYM_LDL_TITLE_32 " value size type bind \ 1140 oth ver shndx" 1141@ MSG_SYM_EFL_ENTRY_32 "%10.10s %10.10s 0x%8.8x %4s %4s %2s %4s \ 1142 %-14s %s" 1143 1144# TRANSLATION_NOTE - the following entries provide for a series of one or more 1145# standard 64-bit symbol table entries that align with the initial title. 1146 1147@ MSG_SYM_EFS_TITLE_64 " index value size \ 1148 type bind oth ver shndx name" 1149@ MSG_SYM_LDS_TITLE_64 " value size \ 1150 type bind oth ver shndx" 1151@ MSG_SYM_EFS_ENTRY_64 "%10.10s %18.18s 0x%16.16llx %4s %4s %2s %4s \ 1152 %-14.14s %s" 1153 1154# TRANSLATION_NOTE - the following entries provide for a series of one or more 1155# long 64-bit symbol table entries that align with the initial title. 1156 1157@ MSG_SYM_EFL_TITLE_64 " index value size \ 1158 type bind oth ver shndx / name" 1159@ MSG_SYM_LDL_TITLE_64 " value size \ 1160 type bind oth ver shndx" 1161@ MSG_SYM_EFL_ENTRY_64 "%10.10s %18.18s 0x%16.16llx %4s %4s %2s %4s \ 1162 %-14s %s" 1163 1164 1165# Syminfo entries. 1166# TRANSLATION_NOTE - the following two entries provide for a series of one or 1167# more symbol information table entries that align with the initial title. 1168 1169@ MSG_SYMINFO_TITLE " index flags \ 1170 bound to symbol" 1171@ MSG_SYMINFO_ENTRY "%10.10s %-8s %7s %-24s %s" 1172 1173@ MSG_SYMINFO_SELF "<self>" 1174@ MSG_SYMINFO_PARENT "<parent>" 1175@ MSG_SYMINFO_EXTERN "<extern>" 1176 1177 1178# Global offset table entries. 1179# TRANSLATION_NOTE - the following two entries are used by elfdump(1), and 1180# provide for a series of one or more 32-bit got table entries that align with 1181# the initial title. 1182 1183@ MSG_GOT_TITLE_32 " index addr value \ 1184 pending relocation" 1185@ MSG_GOT_ENTRY_RE_32 "%10.10s 0x%08llx 0x%08llx %-24s %s" 1186@ MSG_GOT_ENTRY_NR_32 "%10.10s 0x%08llx 0x%08llx" 1187 1188# TRANSLATION_NOTE - the following two entries are used by elfdump(1), and 1189# provide for a series of one or more 64-bit got table entries that align with 1190# the initial title. 1191 1192@ MSG_GOT_TITLE_64 " index addr \ 1193 value pending relocation" 1194@ MSG_GOT_ENTRY_RE_64 "%10.10s 0x%016llx 0x%016llx %-24s %s" 1195@ MSG_GOT_ENTRY_NR_64 "%10.10s 0x%016llx 0x%016llx" 1196 1197# TRANSLATION_NOTE - the following three entries are used by ld(1), and provide 1198# for a series of one or more 32-bit got table entries that align with one of 1199# the initial titles. 1200 1201@ MSG_GOT_COLUMNS1_32 " index ref offset addend symbol" 1202@ MSG_GOT_COLUMNS2_32 " index ref offset value symbol" 1203@ MSG_GOT_FORMAT1_32 "%10.10s %3s 0x%08llx 0x%08llx %s" 1204@ MSG_GOT_FORMAT2_32 "%10.10s %3s 0x%08llx 0x%08llx %s:%s" 1205 1206# TRANSLATION_NOTE - the following three entries are used by ld(1), and provide 1207# for a series of one or more 64-bit got table entries that align with one of 1208# the initial titles. 1209 1210@ MSG_GOT_COLUMNS1_64 " index ref offset \ 1211 addend symbol" 1212@ MSG_GOT_COLUMNS2_64 " index ref offset \ 1213 value symbol" 1214@ MSG_GOT_FORMAT1_64 "%10.10s %3s 0x%016llx 0x%016llx %s" 1215@ MSG_GOT_FORMAT2_64 "%10.10s %3s 0x%016llx 0x%016llx %s:%s" 1216 1217# Version table entries. 1218@ MSG_VER_DEF " index version dependency" 1219@ MSG_VER_NEED " file version" 1220@ MSG_VER_NEED_GNUVER " index file version" 1221 1222@ MSG_VER_LINE_1 "%10.10s %-26.26s %-20s %s" 1223@ MSG_VER_LLINE_1 "%10s %-26s %-20s %s" 1224@ MSG_VER_LINE_2 "%47s %s" 1225@ MSG_VER_LINE_3 "%38s %-20s %s" 1226@ MSG_VER_LINE_4 " %s" 1227@ MSG_VER_LINE_5 " %-26.26s %s" 1228@ MSG_VER_LLINE_5 " %-26s %s" 1229 1230 1231# Relocation entries. 1232# TRANSLATION_NOTE - the following strings are used by elfdump(1). These 1233# strings provide for a series of one or more 32-bit relocation table entries, 1234# using truncated section names, that align with one of the initial titles. 1235 1236@ MSG_REL_EFSA_TITLE_32 " type offset addend \ 1237 section symbol" 1238@ MSG_REL_EFSN_TITLE_32 " type offset \ 1239 section symbol" 1240@ MSG_REL_EFSA_ENTRY_32 " %-24s %#10llx %#10llx %-14.14s %s" 1241@ MSG_REL_EFSN_ENTRY_32 " %-24s %#10llx %-14.14s %s" 1242 1243# TRANSLATION_NOTE - the following strings are used by elfdump(1). These 1244# strings provide for a series of one or more 32-bit relocation table entries, 1245# using long section names, that align with one of the initial titles. 1246 1247@ MSG_REL_EFLA_TITLE_32 " type offset addend \ 1248 section / symbol" 1249@ MSG_REL_EFLN_TITLE_32 " type offset \ 1250 section / symbol" 1251@ MSG_REL_EFLA_ENTRY_32 " %-24s %#10llx %#10llx %-14s %s" 1252@ MSG_REL_EFLN_ENTRY_32 " %-24s %#10llx %-14s %s" 1253 1254 1255# TRANSLATION_NOTE - the following strings are used by ld.so.1(1). These 1256# strings provide for a series of one or more 32-bit relocation table entries, 1257# that align with the initial titles. 1258 1259@ MSG_REL_RTA_TITLE_32 " type offset \ 1260 addend symbol" 1261@ MSG_REL_RTN_TITLE_32 " type offset \ 1262 value symbol" 1263@ MSG_REL_RTV_TITLE_32 " value" 1264@ MSG_REL_RTA_ENTRY_32 " %5s %-24s %#10llx %#10llx %s %s" 1265@ MSG_REL_RTN_ENTRY_32 " %5s %-24s %#10llx %s %s" 1266@ MSG_REL_RT_APLVAL_32 " apply %#10llx %#10llx" 1267@ MSG_REL_RT_APLREG_32 " apply %10.10s %#10llx" 1268 1269 1270# TRANSLATION_NOTE - the following strings are used by ld(1). These strings 1271# provide for a series of one or more 32-bit relocation table entries, using 1272# truncated section names, that align with one of the initial titles. 1273 1274@ MSG_REL_LDSA_TITLE_32 " type \ 1275 offset addend section symbol" 1276@ MSG_REL_LDSN_TITLE_32 " type \ 1277 offset section symbol" 1278@ MSG_REL_LDSV_TITLE_32 " type \ 1279 offset value section symbol" 1280@ MSG_REL_LDSA_ENTRY_32 " %5s %-24s %#10llx %#10llx %-14.14s %s %s" 1281@ MSG_REL_LDSN_ENTRY_32 " %5s %-24s %#10llx %-14.14s %s %s" 1282 1283# TRANSLATION_NOTE - the following strings are used by ld(1). These strings 1284# provide for a series of one or more 32-bit relocation table entries, using 1285# long section names, that align with one of the initial titles. 1286 1287@ MSG_REL_LDLA_TITLE_32 " type \ 1288 offset addend section / symbol" 1289@ MSG_REL_LDLN_TITLE_32 " type \ 1290 offset section / symbol" 1291@ MSG_REL_LDLV_TITLE_32 " type \ 1292 offset value section / symbol" 1293@ MSG_REL_LDLA_ENTRY_32 " %5s %-24s %#10llx %#10llx %-14s %s %s" 1294@ MSG_REL_LDLN_ENTRY_32 " %5s %-24s %#10llx %-14s %s %s" 1295 1296 1297# TRANSLATION_NOTE - the following strings are used by elfdump(1). These 1298# strings provide for a series of one or more 64-bit relocation table entries, 1299# using truncated section names, that align with one of the initial titles. 1300 1301@ MSG_REL_EFSA_TITLE_64 " type \ 1302 offset addend section symbol" 1303@ MSG_REL_EFSN_TITLE_64 " type \ 1304 offset section symbol" 1305@ MSG_REL_EFSA_ENTRY_64 " %-24s %#18llx %#18llx %-14.14s %s" 1306@ MSG_REL_EFSN_ENTRY_64 " %-24s %#18llx %-14.14s %s" 1307 1308# TRANSLATION_NOTE - the following strings are used by elfdump(1). These 1309# strings provide for a series of one or more 64-bit relocation table entries, 1310# using long section names, that align with one of the initial titles. 1311 1312@ MSG_REL_EFLA_TITLE_64 " type \ 1313 offset addend section / symbol" 1314@ MSG_REL_EFLN_TITLE_64 " type \ 1315 offset section / symbol" 1316@ MSG_REL_EFLA_ENTRY_64 " %-24s %#18llx %#18llx %-14s %s" 1317@ MSG_REL_EFLN_ENTRY_64 " %-24s %#18llx %-14s %s" 1318 1319 1320# TRANSLATION_NOTE - the following strings are used by ld.so.1(1). These 1321# strings provide for a series of one or more 64-bit relocation table entries, 1322# that align with the initial titles. 1323 1324@ MSG_REL_RTA_TITLE_64 " type \ 1325 offset addend symbol" 1326@ MSG_REL_RTN_TITLE_64 " type \ 1327 offset value symbol" 1328@ MSG_REL_RTV_TITLE_64 " value" 1329@ MSG_REL_RTA_ENTRY_64 " %5s %-24s %#18llx %#18llx %s %s" 1330@ MSG_REL_RTN_ENTRY_64 " %5s %-24s %#18llx %s %s" 1331@ MSG_REL_RT_APLVAL_64 " apply %#18llx %#18llx" 1332@ MSG_REL_RT_APLREG_64 " apply %18.18s %#18llx" 1333 1334# TRANSLATION_NOTE - the following strings are used by ld(1). These strings 1335# provide for a series of one or more 64-bit relocation table entries, using 1336# truncated section names, that align with one of the initial titles. 1337 1338@ MSG_REL_LDSA_TITLE_64 " type \ 1339 offset addend section symbol" 1340@ MSG_REL_LDSN_TITLE_64 " type \ 1341 offset section symbol" 1342@ MSG_REL_LDSV_TITLE_64 " type \ 1343 offset value section symbol" 1344@ MSG_REL_LDSA_ENTRY_64 " %5s %-24s %#18llx %#18llx %-14.14s %s %s" 1345@ MSG_REL_LDSN_ENTRY_64 " %5s %-24s %#18llx %-14.14s %s %s" 1346 1347# TRANSLATION_NOTE - the following strings are used by ld(1). These strings 1348# provide for a series of one or more 64-bit relocation table entries, using 1349# long section names, that align with one of the initial titles. 1350 1351@ MSG_REL_LDLA_TITLE_64 " type \ 1352 offset addend section / symbol" 1353@ MSG_REL_LDLN_TITLE_64 " type \ 1354 offset section / symbol" 1355@ MSG_REL_LDLV_TITLE_64 " type \ 1356 offset value section / symbol" 1357@ MSG_REL_LDLA_ENTRY_64 " %5s %-24s %#18llx %#18llx %-14s %s %s" 1358@ MSG_REL_LDLN_ENTRY_64 " %5s %-24s %#18llx %-14s %s %s" 1359 1360@ _END_ 1361 1362# Debug enabling tokens (for now these are untranslated) 1363 1364@ MSG_TOK_ALL "all" 1365@ MSG_TOK_ARGS "args" 1366@ MSG_TOK_BINDINGS "bindings" 1367@ MSG_TOK_CAP "cap" 1368@ MSG_TOK_BASIC "basic" 1369@ MSG_TOK_ENTRY "entry" 1370@ MSG_TOK_FILES "files" 1371@ MSG_TOK_HELP "help" 1372@ MSG_TOK_INIT "init" 1373@ MSG_TOK_LIBS "libs" 1374@ MSG_TOK_MAP "map" 1375@ MSG_TOK_RELOC "reloc" 1376@ MSG_TOK_SECTIONS "sections" 1377@ MSG_TOK_SEGMENTS "segments" 1378@ MSG_TOK_SUPPORT "support" 1379@ MSG_TOK_SYMBOLS "symbols" 1380@ MSG_TOK_TLS "tls" 1381@ MSG_TOK_VERSIONS "versions" 1382@ MSG_TOK_AUDIT "audit" 1383@ MSG_TOK_GOT "got" 1384@ MSG_TOK_MOVE "move" 1385@ MSG_TOK_DEMANGLE "demangle" 1386@ MSG_TOK_STRTAB "strtab" 1387@ MSG_TOK_STATS "statistics" 1388@ MSG_TOK_UNUSED "unused" 1389 1390@ MSG_TOK_DETAIL "detail" 1391@ MSG_TOK_LONG "long" 1392@ MSG_TOK_NAME "name" 1393@ MSG_TOK_FULLNAME "fullname" 1394@ MSG_TOK_CLASS "class" 1395@ MSG_TOK_LMID "lmid" 1396@ MSG_TOK_TTIME "ttime" 1397@ MSG_TOK_DTIME "dtime" 1398 1399@ MSG_TOK_OUTFILE "output" 1400 1401@ MSG_TOK_LMID_ALL "ALL" 1402@ MSG_TOK_LMID_ALT "ALT" 1403@ MSG_TOK_LMID_BASE "BASE" 1404@ MSG_TOK_LMID_LDSO "LDSO" 1405 1406 1407# The following strings represent reserved words, files, pathnames and symbols. 1408# Reference to this strings is via the MSG_ORIG() macro, and thus no message 1409# translation is required. 1410 1411@ MSG_STR_EMPTY "" 1412@ MSG_STR_DELIMIT ",:" 1413@ MSG_STR_COMDAT "COMDAT " 1414 1415@ MSG_SCN_GOT ".got" 1416@ MSG_SCN_PLT ".plt" 1417@ MSG_SCN_BSS ".bss" 1418@ MSG_SCN_INIT ".init" 1419@ MSG_SCN_FINI ".fini" 1420@ MSG_SCN_INITARRAY ".initarray" 1421@ MSG_SCN_FINIARRAY ".finiarray" 1422@ MSG_SCN_PREINITARRAY ".preinitarray" 1423 1424@ MSG_SH_INFO "sh_info" 1425@ MSG_SH_LINK "sh_link" 1426 1427@ MSG_UTL_SCC_ENTRY " [%d] %s" 1428 1429@ MSG_FMT_INDEX " [%d]" 1430@ MSG_FMT_INDEX_RANGE " [%d-%d]" 1431@ MSG_FMT_STR "%s" 1432@ MSG_FMT_PATH "%s/%s" 1433 1434@ MSG_PTH_OBJECT "/tmp/ld.so-OBJECT-" 1435 1436@ MSG_SUNW_OST_SGS "SUNW_OST_SGS" 1437 1438# Entrance criteria messages 1439 1440@ MSG_ECR_NAME " ec_name: %-8s ec_attrmask: %s" 1441@ MSG_ECR_SEGMENT " ec_segment: %-8s ec_attrbits: %s" 1442@ MSG_ECR_NDX " ec_ndx: %-8d ec_type: %s" 1443@ MSG_ECR_FILES " ec_files:" 1444@ MSG_ECR_FILE " %s" 1445 1446# Libs messages 1447 1448@ MSG_LIB_FILE " %s" 1449 1450# PLT binding methods 1451 1452@ MSG_PLT_21D "21d" 1453@ MSG_PLT_24D "24d" 1454@ MSG_PLT_U32 "u32" 1455@ MSG_PLT_U44 "u44" 1456@ MSG_PLT_FULL "full" 1457@ MSG_PLT_FAR "far" 1458 1459# Segment messages 1460 1461@ MSG_SEG_NAME "segment[%d] sg_name: %s" 1462@ MSG_SEG_LENGTH " sg_length: %#llx" 1463@ MSG_SEG_FLAGS " sg_flags: %s" 1464@ MSG_SEG_SIZESYM " sg_sizesym: %s" 1465@ MSG_SEG_ORDER " sec_order:" 1466@ MSG_SEG_SECTION " sec_name: %-8s sec_index: %u" 1467 1468# Section messages (used when expanding segment information) 1469 1470@ MSG_SEC_NAME " section[%d] os_name: %s" 1471 1472# Symbol strings 1473 1474@ MSG_SYM_GLOBAL "global" 1475@ MSG_SYM_LOCAL "local" 1476@ MSG_SYM_COPY "copy rel" 1477@ MSG_SYM_NEXT "[ RTLD_NEXT ]" 1478@ MSG_SYM_DEFAULT "[ RTLD_DEFAULT ]" 1479@ MSG_SYM_SELF "[ RTLD_SELF ]" 1480@ MSG_SYM_PROBE "[ RTLD_PROBE ]" 1481@ MSG_SYM_SINGLETON "( singleton reference )" 1482 1483# Link-map mode strings 1484 1485@ MSG_MODE_GLOBNODEL "[ GLOBAL NODELETE ]" 1486@ MSG_MODE_GLOB "[ GLOBAL ]" 1487@ MSG_MODE_NODEL "[ NODELETE ]" 1488 1489# NOTE: these are used by lari(1), use care when changing. 1490@ MSG_BINFO_START " (" 1491@ MSG_BINFO_DIRECT "direct" 1492@ MSG_BINFO_INTERPOSE "interpose" 1493@ MSG_BINFO_COPYREF "copy-ref" 1494@ MSG_BINFO_FILTEE "filtee" 1495@ MSG_BINFO_PLTADDR "plt-addr" 1496@ MSG_BINFO_END ")" 1497@ MSG_BINFO_SEP "," 1498 1499# Utility messages 1500 1501@ MSG_UTL_EVNT_PREINIT "RD_PREINIT" 1502@ MSG_UTL_EVNT_POSTINIT "RD_POSTINIT" 1503@ MSG_UTL_EVNT_DLACT "RD_DLACTIVITY" 1504 1505@ MSG_UTL_STA_ADD "RT_ADD" 1506@ MSG_UTL_STA_DELETE "RT_DELETE" 1507@ MSG_UTL_STA_CONSIST "RT_CONSISTENT" 1508 1509# Version messages 1510 1511@ MSG_VER_SELECTED " SELECTED %-26.26s %s" 1512@ MSG_VER_L_SELECTED " SELECTED %-26s %s" 1513@ MSG_VER_ALL " ALL %-26.26s" 1514@ MSG_VER_L_ALL " ALL %-26s" 1515 1516# Global offset table entries. 1517 1518@ MSG_GOT_INDEX " [%d]" 1519@ MSG_GOT_SMALL_PIC "pic" 1520@ MSG_GOT_BIG_PIC "PIC" 1521 1522@ MSG_CNTL_ENTRY " [0x%llx] %s" 1523 1524@ MSG_STR_NL "\n" 1525 1526@ MSG_FMT_INDEX " [%d]" 1527@ MSG_FMT_ISEC_NAME "[%u]%s" 1528 1529@ MSG_SUNW_OST_SGS "SUNW_OST_SGS" 1530 1531@ MSG_ELF_MAGIC " ei_magic: { 0x%x, %c, %c, %c }" 1532@ MSG_ELF_CLASS " ei_class: %-18s ei_data: %s" 1533@ MSG_ELF_OSABI " ei_osabi: %-18s ei_abiversion: %s" 1534@ MSG_ELF_MACHINE " e_machine: %-18s e_version: %s" 1535@ MSG_ELF_TYPE " e_type: %s" 1536@ MSG_ELF_FLAGS " e_flags: %18s" 1537@ MSG_ELF_FLAGS_FMT " e_flags: %s" 1538@ MSG_ELF_ESIZE " e_entry: %#18llx e_ehsize: %2d \ 1539 e_shstrndx: %d" 1540@ MSG_ELFX_ESIZE " e_entry: %#18llx e_ehsize: %2d \ 1541 e_shstrndx: SHN_XINDEX (see shdr[0].sh_link)" 1542@ MSG_ELF_SHOFF " e_shoff: %#18llx e_shentsize: %2d \ 1543 e_shnum: %d" 1544@ MSG_ELFX_SHOFF " e_shoff: %#18llx e_shentsize: %2d \ 1545 e_shnum: 0 (see shdr[0].sh_size)" 1546@ MSG_ELF_PHOFF " e_phoff: %#18llx e_phentsize: %2d \ 1547 e_phnum: %d" 1548@ MSG_ELFX_PHOFF " e_phoff: %#18llx e_phentsize: %2d \ 1549 e_phnum: PN_XNUM (see shdr[0].sh_info)" 1550 1551# Shdr[0] messages 1552 1553@ MSG_SHD0_TITLE "Section Header[0]: (ELF Ehdr extensions)" 1554@ MSG_SHD0_ADDR " sh_addr: %-6lld sh_flags: %s" 1555@ MSG_SHD0_SIZE " sh_size: %-6lld (e_shnum) sh_type: %s" 1556@ MSG_SHD0_OFFSET " sh_offset: %-6lld \ 1557 sh_entsize: %lld" 1558@ MSG_SHD0_LINK " sh_link: %-6d (e_shstrndx) sh_info: \ 1559 %d (e_phnum)" 1560@ MSG_SHD0_ALIGN " sh_addralign: %-6lld" 1561 1562# Section header messages 1563 1564@ MSG_SHD_ADDR_32 " sh_addr: %#-10llx sh_flags: %s" 1565@ MSG_SHD_SIZE_32 " sh_size: %#-10llx sh_type: %s" 1566@ MSG_SHD_OFFSET_32 " sh_offset: %#-10llx sh_entsize: %#llx" 1567@ MSG_SHD_OFFSET_ENT_32 " sh_offset: %#-10llx sh_entsize: %#llx \ 1568 (%lld %s)" 1569@ MSG_SHD_LINK_32 " sh_link: %-14s sh_info: %s" 1570@ MSG_SHD_ALIGN_32 " sh_addralign: %#-10llx" 1571 1572@ MSG_SHD_ADDR_64 " sh_addr: %#-18llx sh_flags: %s" 1573@ MSG_SHD_SIZE_64 " sh_size: %#-18llx sh_type: %s" 1574@ MSG_SHD_OFFSET_64 " sh_offset: %#-18llx sh_entsize: %#llx" 1575@ MSG_SHD_OFFSET_ENT_64 " sh_offset: %#-18llx sh_entsize: %#llx \ 1576 (%lld %s)" 1577@ MSG_SHD_LINK_64 " sh_link: %-18s sh_info: %s" 1578@ MSG_SHD_ALIGN_64 " sh_addralign: %#-18llx" 1579 1580# Program header messages 1581 1582@ MSG_PHD_VADDR_32 " p_vaddr: %#-10llx p_flags: %s" 1583@ MSG_PHD_PADDR_32 " p_paddr: %#-10llx p_type: %s" 1584@ MSG_PHD_FILESZ_32 " p_filesz: %#-10llx p_memsz: %#llx" 1585@ MSG_PHD_OFFSET_32 " p_offset: %#-10llx p_align: %#llx" 1586 1587@ MSG_PHD_VADDR_64 " p_vaddr: %#-18llx p_flags: %s" 1588@ MSG_PHD_PADDR_64 " p_paddr: %#-18llx p_type: %s" 1589@ MSG_PHD_FILESZ_64 " p_filesz: %#-18llx p_memsz: %#llx" 1590@ MSG_PHD_OFFSET_64 " p_offset: %#-18llx p_align: %#llx" 1591 1592# Syminfo formats 1593 1594@ MSG_SYMINFO_UNKFLAG "[0x%x]" 1595 1596# Lc_interface interface tags. 1597 1598@ MSG_CI_NULL "NULL" 1599@ MSG_CI_VERSION "VERSION" 1600@ MSG_CI_ATEXIT "ATEXIT" 1601@ MSG_CI_LCMESSAGES "LCMESSAGES" 1602@ MSG_CI_BIND_GUARD "BIND_GUARD" 1603@ MSG_CI_BIND_CLEAR "BIND_CLEAR" 1604@ MSG_CI_THR_SELF "THR_SELF" 1605@ MSG_CI_TLS_MODADD "TLS_MODADD" 1606@ MSG_CI_TLS_MODREM "TLS_MODREM" 1607@ MSG_CI_TLS_STATMOD "TLS_STATMOD" 1608@ MSG_CI_THRINIT "THRINIT" 1609@ MSG_CI_CRITICAL "CRITICAL" 1610 1611# TLS information flags 1612 1613@ MSG_TLS_FLAG_STATIC "STATIC-TLS" 1614 1615# mmapobj() mr_flags. 1616 1617@ MSG_MR_PADDING "[ PADDING ]" 1618@ MSG_MR_HDR_ELF "[ HDR_ELF ]" 1619@ MSG_MR_HDR_AOUT "[ HDR_AOUT ]" 1620