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 5c13de8f6Sab196087# Common Development and Distribution License (the "License"). 6c13de8f6Sab196087# 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# 213906e0c2Srie 223906e0c2Srie# 23*ba7962c0SRod Evans# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 243906e0c2Srie# Use is subject to license terms. 253906e0c2Srie# 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gate@ _START_ 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gate# Message file for cmd/sgs/crle. 307c478bd9Sstevel@tonic-gate 317c478bd9Sstevel@tonic-gate@ MSG_ID_CRLE 327c478bd9Sstevel@tonic-gate 337c478bd9Sstevel@tonic-gate 347c478bd9Sstevel@tonic-gate# Argument usage messages. 357c478bd9Sstevel@tonic-gate 367c478bd9Sstevel@tonic-gate@ MSG_ARG_USAGE "usage: %s [-64] [-a name] [-A name] [-c conf] \ 377c478bd9Sstevel@tonic-gate [-e env] [-E env] [-f flags] [-g name] [-G name ] \ 387c478bd9Sstevel@tonic-gate [-i name] [-I name] [-l dir] [-o dir ] [-s dir] \ 397c478bd9Sstevel@tonic-gate [-t ELF|AOUT] [-u] [-v]\n\ 407c478bd9Sstevel@tonic-gate \t[-64]\t\tprocess 64-bit objects\n\ 413906e0c2Srie \t[-a name]\tdefine an alternative object name\n\ 423906e0c2Srie \t[-A name]\tdefine an optional alternative object \ 433906e0c2Srie name\n\ 447c478bd9Sstevel@tonic-gate \t[-c conf]\tspecify configuration file\n\ 453906e0c2Srie \t[-e env]\tdefine a replaceable environment \ 463906e0c2Srie variable\n\ 473906e0c2Srie \t[-E env]\tdefine a permanent environment variable\n\ 487c478bd9Sstevel@tonic-gate \t[-f flags]\tspecify flags for -G and -I\n\ 493906e0c2Srie \t[-g name]\tdefine a group object name\n\ 503906e0c2Srie \t[-G name]\tdefine a group object name and create \ 517c478bd9Sstevel@tonic-gate alternatives\n\ 523906e0c2Srie \t[-i name]\tdefine an individual object name\n\ 533906e0c2Srie \t[-I name]\tdefine an individual object name and \ 543906e0c2Srie create an\n\ 553906e0c2Srie \t\t\talternative\n\ 563906e0c2Srie \t[-l dir]\tdefine a default search directory\n\ 577c478bd9Sstevel@tonic-gate \t[-o dir]\tuse directory for alternative objects\n\ 583906e0c2Srie \t[-s dir]\tdefine a trusted search directory\n\ 597c478bd9Sstevel@tonic-gate \t[-t ELF|AOUT]\ttoggle object type for -l and -s\n\ 607c478bd9Sstevel@tonic-gate \t[-u]\t\tupdate existing configuration file\n\ 613906e0c2Srie \t[-v]\t\tprovide verbose processing information\n\ 623906e0c2Srie \n\ 633906e0c2Srie \tNote: without the -u option, the information \ 643906e0c2Srie defined by the options\n\ 653906e0c2Srie \tto crle() result in the replacement of any existing \ 663906e0c2Srie configuration\n\ 673906e0c2Srie \tfile, or default search paths. With the -u option, \ 683906e0c2Srie the information\n\ 693906e0c2Srie \tdefined by the options to crle() is appended to any \ 703906e0c2Srie existing\n\ 713906e0c2Srie \tconfiguration file, or default search paths.\n\ 723906e0c2Srie \n\ 733906e0c2Srie \tSet the environment variable LD_NOCONFIG=yes to \ 743906e0c2Srie disable the processing\n\ 753906e0c2Srie \tof any configuration file information. \ 763906e0c2Srie See ld.so.1(1).\n" 773906e0c2Srie 787c478bd9Sstevel@tonic-gate 797c478bd9Sstevel@tonic-gate@ MSG_ARG_ILLEGAL "%s: option %s has illegal argument `%s'\n" 807c478bd9Sstevel@tonic-gate@ MSG_ARG_MULT "%s: argument %s specified multiple times\n" 817c478bd9Sstevel@tonic-gate@ MSG_ARG_TYPE "%s: unknown object type: %s\n" 827c478bd9Sstevel@tonic-gate@ MSG_ARG_FLAGS "%s: unknown flags: %s\n" 837c478bd9Sstevel@tonic-gate@ MSG_ARG_MODE "%s: RTLD_REL_EXEC cannot be used with multiple \ 847c478bd9Sstevel@tonic-gate dynamic executables: %s: %s\n" 857c478bd9Sstevel@tonic-gate@ MSG_ARG_ALT "%s: %s: cannot override original file with \ 867c478bd9Sstevel@tonic-gate alternative; specify -o\n" 87587032cfSab196087@ MSG_ARG_UPDATE "%s: %s: version [%d] of configuration file provides \ 887c478bd9Sstevel@tonic-gate limited update (-u) and command-line regeneration \ 897c478bd9Sstevel@tonic-gate capabilities: best effort in effect\n" 903906e0c2Srie@ MSG_ARG_UPDATEVER "%s: %s: file version [%d] newer than crle() version \ 91587032cfSab196087 [%d]. Unable to update\n" 923906e0c2Srie@ MSG_ARG_PRINTVER "%s: %s: file version [%d] newer than crle() version \ 93587032cfSab196087 [%d]. Displayed information may be incomplete\n" 94587032cfSab196087@ MSG_ARG_CLASS "%s: %s: 32-bit file is incompatible with -64 \ 957c478bd9Sstevel@tonic-gate option\n" 96587032cfSab196087@ MSG_ARG_WRONGARCH "%s: %s: %s %s file is incompatible with \ 973906e0c2Srie %s %s version of crle()\n" 987c478bd9Sstevel@tonic-gate 997c478bd9Sstevel@tonic-gate@ MSG_WARN_ENV "%s: warning: %.*s: environment variable \ 1007c478bd9Sstevel@tonic-gate multiply-defined, first definition taken\n" 1017c478bd9Sstevel@tonic-gate 102c13de8f6Sab196087# ISA errors 103c13de8f6Sab196087@ MSG_ISA32_NO64SUP "%s: This system lacks support for 64-bit \ 104c13de8f6Sab196087 configuration files\n" 105c13de8f6Sab196087 1067c478bd9Sstevel@tonic-gate# System error messages 1077c478bd9Sstevel@tonic-gate 1087c478bd9Sstevel@tonic-gate@ MSG_SYS_MALLOC "%s: malloc failed: %s\n" 1097c478bd9Sstevel@tonic-gate@ MSG_SYS_TEMPNAME "%s: unable to create temporary filename: %s\n" 1107c478bd9Sstevel@tonic-gate@ MSG_SYS_PIPE "%s: pipe failed: %s\n" 1117c478bd9Sstevel@tonic-gate@ MSG_SYS_FORK "%s: fork failed: %s\n" 1127c478bd9Sstevel@tonic-gate@ MSG_SYS_PUTENV "%s: putenv failed: %s\n" 1137c478bd9Sstevel@tonic-gate 1147c478bd9Sstevel@tonic-gate@ MSG_COR_TRUNC "%s: %s: corrupt file, possible truncation\n" 1157c478bd9Sstevel@tonic-gate 1167c478bd9Sstevel@tonic-gate@ MSG_SYS_ACCESS "%s: %s: access failed: %s\n" 1177c478bd9Sstevel@tonic-gate@ MSG_SYS_OPEN "%s: %s: open failed: %s\n" 1187c478bd9Sstevel@tonic-gate@ MSG_SYS_MMAP "%s: %s: mmap failed: %s\n" 1197c478bd9Sstevel@tonic-gate@ MSG_SYS_TRUNC "%s: %s: ftruncate failed: %s\n" 1207c478bd9Sstevel@tonic-gate@ MSG_SYS_STAT "%s: %s: stat failed: %s\n" 1217c478bd9Sstevel@tonic-gate@ MSG_SYS_WRITE "%s: %s: write failed: %s\n" 1227c478bd9Sstevel@tonic-gate 1237c478bd9Sstevel@tonic-gate@ MSG_SYS_EXEC "%s: %s: exec failed: due to signal %d %s\n" 1247c478bd9Sstevel@tonic-gate@ MSG_SYS_EXECLP "%s: %s: exec failed: %s\n" 1257c478bd9Sstevel@tonic-gate@ MSG_SYS_CORE "(core dumped)" 1267c478bd9Sstevel@tonic-gate 1277c478bd9Sstevel@tonic-gate 1287c478bd9Sstevel@tonic-gate# Elf error messages 1297c478bd9Sstevel@tonic-gate 1307c478bd9Sstevel@tonic-gate@ MSG_ELF_TYPE "%s: %s: invalid ELF file\n" 1317c478bd9Sstevel@tonic-gate@ MSG_ELF_BEGIN "%s: %s: elf_begin: %s\n" 1327c478bd9Sstevel@tonic-gate 1337c478bd9Sstevel@tonic-gate 1347c478bd9Sstevel@tonic-gate# Generic error messages 1357c478bd9Sstevel@tonic-gate 1367c478bd9Sstevel@tonic-gate@ MSG_GEN_INVFILE "%s: %s: invalid file type\n" 1377c478bd9Sstevel@tonic-gate@ MSG_GEN_CREATE "%s: configuration file: %s: not created\n" 1387c478bd9Sstevel@tonic-gate 1397c478bd9Sstevel@tonic-gate 1407c478bd9Sstevel@tonic-gate# System defaults 1417c478bd9Sstevel@tonic-gate 1427c478bd9Sstevel@tonic-gate@ MSG_DEF_NOCONF "\nDefault configuration file (%s) not found\n" 1437c478bd9Sstevel@tonic-gate 1447c478bd9Sstevel@tonic-gate@ MSG_DEF_NEWDLP " Default Library Path (ELF):\t/lib:/usr/lib \ 1457c478bd9Sstevel@tonic-gate (system default)\n" 1467c478bd9Sstevel@tonic-gate@ MSG_DEF_OLDDLP " Default Library Path (ELF):\t/usr/lib \ 1477c478bd9Sstevel@tonic-gate (system default)\n" 1487c478bd9Sstevel@tonic-gate@ MSG_DEF_NEWTD " Trusted Directories (ELF):\t\ 1497c478bd9Sstevel@tonic-gate /lib/secure:/usr/lib/secure (system default)\n" 1507c478bd9Sstevel@tonic-gate@ MSG_DEF_OLDTD " Trusted Directories (ELF):\t/usr/lib/secure \ 1517c478bd9Sstevel@tonic-gate (system default)\n" 1527c478bd9Sstevel@tonic-gate@ MSG_DEF_NEWDLP_64 " Default Library Path (ELF):\t/lib/64:/usr/lib/64 \ 1537c478bd9Sstevel@tonic-gate (system default)\n" 1547c478bd9Sstevel@tonic-gate@ MSG_DEF_OLDDLP_64 " Default Library Path (ELF):\t/usr/lib/64 \ 1557c478bd9Sstevel@tonic-gate (system default)\n" 1567c478bd9Sstevel@tonic-gate@ MSG_DEF_NEWTD_64 " Trusted Directories (ELF):\t\ 1577c478bd9Sstevel@tonic-gate /lib/secure/64:/usr/lib/secure/64 (system default)\n" 1587c478bd9Sstevel@tonic-gate@ MSG_DEF_OLDTD_64 " Trusted Directories (ELF):\t\ 1597c478bd9Sstevel@tonic-gate /usr/lib/secure/64 (system default)\n" 1607c478bd9Sstevel@tonic-gate 1617c478bd9Sstevel@tonic-gate@ MSG_DEF_AOUTDLP " Default Library Path (AOUT):\t\ 1627c478bd9Sstevel@tonic-gate /usr/4lib:/usr/lib:/usr/local/lib \ 1637c478bd9Sstevel@tonic-gate (system default)\n" 164*ba7962c0SRod Evans@ MSG_DEF_AOUTNEWTD " Trusted Directories (AOUT):\t\ 165*ba7962c0SRod Evans /lib/secure:/usr/lib/secure (system default)\n" 166*ba7962c0SRod Evans@ MSG_DEF_AOUTOLDTD " Trusted Directories (AOUT):\t\/usr/lib/secure \ 1677c478bd9Sstevel@tonic-gate (system default)\n" 1687c478bd9Sstevel@tonic-gate 1697c478bd9Sstevel@tonic-gate@ MSG_ENV_TITLE "\nEnvironment Variables:\n" 1707c478bd9Sstevel@tonic-gate@ MSG_ENV_RPL " %s (replaceable)\n" 1717c478bd9Sstevel@tonic-gate@ MSG_ENV_PRM " %s (permanent)\n" 1727c478bd9Sstevel@tonic-gate 1737c478bd9Sstevel@tonic-gate@ MSG_FLT_TITLE "\nFilters:\n" 1747c478bd9Sstevel@tonic-gate@ MSG_FLT_FILTER " %s - %s:\n" 1757c478bd9Sstevel@tonic-gate@ MSG_FLT_FILTEE " %s (filtee)\n" 1767c478bd9Sstevel@tonic-gate 1777c478bd9Sstevel@tonic-gate# Diagnostic strings 1787c478bd9Sstevel@tonic-gate 1797c478bd9Sstevel@tonic-gate@ MSG_DIA_CONFILE "output configuration file: %s\n" 1807c478bd9Sstevel@tonic-gate@ MSG_DIA_OBJDIR "output object directory: %s\n" 1817c478bd9Sstevel@tonic-gate@ MSG_DIA_INSPECT "inspect: %s\n" 1827c478bd9Sstevel@tonic-gate@ MSG_DIA_RPLENV " adding replaceable environment variable: %s\n" 1837c478bd9Sstevel@tonic-gate@ MSG_DIA_PRMENV " adding permanent environment variable: %s\n" 1847c478bd9Sstevel@tonic-gate@ MSG_DIA_DLIBPTH " adding default library path (%s): %s\n" 1857c478bd9Sstevel@tonic-gate@ MSG_DIA_TLIBPTH " adding trusted library path (%s): %s\n" 1867c478bd9Sstevel@tonic-gate@ MSG_DIA_NOEXIST " adding directory [id=%d]: %s (non-existent path)\n" 1877c478bd9Sstevel@tonic-gate@ MSG_DIA_DIR " adding directory [id=%d]: %s\n", 1887c478bd9Sstevel@tonic-gate@ MSG_DIA_FILE " adding file [id=%d]: %s\n" 1897c478bd9Sstevel@tonic-gate@ MSG_DIA_ALTCREATE " creating alternate: %s (for %s)\n" 1907c478bd9Sstevel@tonic-gate@ MSG_DIA_ALTUPDATE " updating alternate: %s (for %s)\n" 1917c478bd9Sstevel@tonic-gate 1927c478bd9Sstevel@tonic-gate# Dump strings 1937c478bd9Sstevel@tonic-gate 194587032cfSab196087@ MSG_DMP_HEAD "\nConfiguration file [version %d]: %s %s\n" 195c13de8f6Sab196087@ MSG_DMP_PLATFORM " Platform:\t%s %s %s\n" 1967c478bd9Sstevel@tonic-gate@ MSG_DMP_APP " Specific application: %s (original: %s)\n" 1977c478bd9Sstevel@tonic-gate@ MSG_DMP_DLIBPTH " Default Library Path (%s):\t%s\n" 1987c478bd9Sstevel@tonic-gate@ MSG_DMP_TLIBPTH " Trusted Directories (%s):\t%s\n" 1997c478bd9Sstevel@tonic-gate@ MSG_DMP_RESV "\nMemory Reservation:\t%llx - %llx (%llx bytes)\n" 2007c478bd9Sstevel@tonic-gate@ MSG_DMP_DIR_1 "\nDirectory: %s\n" 2017c478bd9Sstevel@tonic-gate@ MSG_DMP_DIR_2 "\nDirectory: %s\t(non-existent)\n" 2027c478bd9Sstevel@tonic-gate@ MSG_DMP_FILE_1 " %s\n" 2037c478bd9Sstevel@tonic-gate@ MSG_DMP_FILE_2 " %s\t(alternate: %s)\n" 2047c478bd9Sstevel@tonic-gate@ MSG_DMP_HASH "Object Entries:\n Id\tBkt\tString\n" 2057c478bd9Sstevel@tonic-gate@ MSG_DMP_HASHENT_1 " %d\t[%d]\t%s\t%s\n" 2067c478bd9Sstevel@tonic-gate@ MSG_DMP_HASHENT_2 " %d\t\t%s\t%s\n" 2077c478bd9Sstevel@tonic-gate 2087c478bd9Sstevel@tonic-gate@ MSG_DMP_STAT "\nWARNING: original file %s: stat failed: %s\n\n" 2097c478bd9Sstevel@tonic-gate@ MSG_DMP_DCMP "\nWARNING: original directory %s: modified since \ 2107c478bd9Sstevel@tonic-gate configuration file creation\n\n" 2117c478bd9Sstevel@tonic-gate@ MSG_DMP_FCMP "\nWARNING: original file %s: modified since \ 2127c478bd9Sstevel@tonic-gate configuration file creation\n\n" 2137c478bd9Sstevel@tonic-gate 2147c478bd9Sstevel@tonic-gate@ MSG_DMP_CMD_TITLE "\nCommand line:\n" 2157c478bd9Sstevel@tonic-gate@ MSG_DMP_CMD_ONE " crle %s\n\n" 2167c478bd9Sstevel@tonic-gate@ MSG_DMP_CMD_BGN " crle %s " 2177c478bd9Sstevel@tonic-gate@ MSG_DMP_CMD_MID "%s " 2187c478bd9Sstevel@tonic-gate@ MSG_DMP_CMD_END "%s\n\n" 2197c478bd9Sstevel@tonic-gate 2207c478bd9Sstevel@tonic-gate@ MSG_DMP_CMD_ONE_V " crle %s\n\n" 2217c478bd9Sstevel@tonic-gate@ MSG_DMP_CMD_BGN_V " crle %s \\\n" 2227c478bd9Sstevel@tonic-gate@ MSG_DMP_CMD_MID_V " %s \\\n" 2237c478bd9Sstevel@tonic-gate@ MSG_DMP_CMD_END_V " %s\n\n" 2247c478bd9Sstevel@tonic-gate 2257c478bd9Sstevel@tonic-gate@ _END_ 2267c478bd9Sstevel@tonic-gate 2277c478bd9Sstevel@tonic-gate 2287c478bd9Sstevel@tonic-gate# The following strings represent reserved words, files, pathnames and symbols. 2297c478bd9Sstevel@tonic-gate# Reference to this strings is via the MSG_ORIG() macro, and thus no message 2307c478bd9Sstevel@tonic-gate# translation is required. 2317c478bd9Sstevel@tonic-gate 2327c478bd9Sstevel@tonic-gate@ MSG_ARG_OPTIONS "6:a:A:c:e:E:f:G:g:I:i:l:o:s:t:uv" 2337c478bd9Sstevel@tonic-gate@ MSG_ARG_6 "-6" 2347c478bd9Sstevel@tonic-gate@ MSG_ARG_C "-c" 2357c478bd9Sstevel@tonic-gate@ MSG_ARG_F "-f" 2367c478bd9Sstevel@tonic-gate 2377c478bd9Sstevel@tonic-gate@ MSG_CMD_64 "-64" 2387c478bd9Sstevel@tonic-gate@ MSG_CMD_ALTER "-a %s" 2397c478bd9Sstevel@tonic-gate@ MSG_CMD_OPTIONAL "-A %s" 2407c478bd9Sstevel@tonic-gate@ MSG_CMD_CONF "-c %s" 2417c478bd9Sstevel@tonic-gate@ MSG_CMD_RPLENV "-e %s" 2427c478bd9Sstevel@tonic-gate@ MSG_CMD_PRMENV "-E %s" 2437c478bd9Sstevel@tonic-gate@ MSG_CMD_FLAGS "-f %s" 2447c478bd9Sstevel@tonic-gate@ MSG_CMD_GRP "-g %s" 2457c478bd9Sstevel@tonic-gate@ MSG_CMD_DUMPGRP "-G %s" 2467c478bd9Sstevel@tonic-gate@ MSG_CMD_IND "-i %s" 2477c478bd9Sstevel@tonic-gate@ MSG_CMD_DUMPIND "-I %s" 2487c478bd9Sstevel@tonic-gate@ MSG_CMD_EDLIB "-l %s" 2497c478bd9Sstevel@tonic-gate@ MSG_CMD_OUTPUT "-o %s" 2507c478bd9Sstevel@tonic-gate@ MSG_CMD_ESLIB "-s %s" 2517c478bd9Sstevel@tonic-gate@ MSG_CMD_ASLIB "-t AOUT -s %s" 2527c478bd9Sstevel@tonic-gate@ MSG_CMD_ADLIB "-t AOUT -l %s" 2537c478bd9Sstevel@tonic-gate 2547c478bd9Sstevel@tonic-gate@ MSG_STR_ELF "ELF" 2557c478bd9Sstevel@tonic-gate@ MSG_STR_AOUT "AOUT" 2567c478bd9Sstevel@tonic-gate@ MSG_STR_EMPTY "" 2577c478bd9Sstevel@tonic-gate@ MSG_STR_READ "r" 2587c478bd9Sstevel@tonic-gate@ MSG_STR_NL "\n" 2597c478bd9Sstevel@tonic-gate@ MSG_STR_COLON ":" 2607c478bd9Sstevel@tonic-gate 2617c478bd9Sstevel@tonic-gate@ MSG_AUD_PRF "__CRLE_DEP__:" 2627c478bd9Sstevel@tonic-gate@ MSG_AUD_DEPEND "depend:" 2637c478bd9Sstevel@tonic-gate@ MSG_AUD_FILTER "filter:" 2647c478bd9Sstevel@tonic-gate@ MSG_AUD_RESBGN "resbgn:" 2657c478bd9Sstevel@tonic-gate@ MSG_AUD_RESEND "resend:" 2667c478bd9Sstevel@tonic-gate 2677c478bd9Sstevel@tonic-gate@ MSG_ENV_AUD_FD "CRLE_FD=%d" 2687c478bd9Sstevel@tonic-gate@ MSG_ENV_AUD_FLAGS "CRLE_FLAGS=%d" 2697c478bd9Sstevel@tonic-gate 2707c478bd9Sstevel@tonic-gate@ MSG_ENV_LD_AUDIT "LD_AUDIT=libcrle.so.1" 2717c478bd9Sstevel@tonic-gate@ MSG_ENV_LD_PRELOAD "LD_PRELOAD=%s" 2727c478bd9Sstevel@tonic-gate@ MSG_ENV_LD_CONFIG "LD_CONFIG=%s" 2737c478bd9Sstevel@tonic-gate@ MSG_ENV_LD_FLAGS "LD_FLAGS=confgen,loadfltr" 2747c478bd9Sstevel@tonic-gate 2757c478bd9Sstevel@tonic-gate@ MSG_LDFLG_LOADAVAIL ",loadavail" 2767c478bd9Sstevel@tonic-gate 2777c478bd9Sstevel@tonic-gate@ MSG_PTH_CONFIG "/var/ld/ld.config" 2787c478bd9Sstevel@tonic-gate@ MSG_PTH_CONFIG_64 "/var/ld/64/ld.config" 2797c478bd9Sstevel@tonic-gate@ MSG_PTH_DOT "./" 2807c478bd9Sstevel@tonic-gate 2817c478bd9Sstevel@tonic-gate@ MSG_PTH_NEWDLP "/lib:/usr/lib" 2827c478bd9Sstevel@tonic-gate@ MSG_PTH_OLDDLP "/usr/lib" 2837c478bd9Sstevel@tonic-gate@ MSG_PTH_UPDLP "/lib" 2847c478bd9Sstevel@tonic-gate@ MSG_PTH_NEWTD "/lib/secure:/usr/lib/secure" 2857c478bd9Sstevel@tonic-gate@ MSG_PTH_OLDTD "/usr/lib/secure" 2867c478bd9Sstevel@tonic-gate@ MSG_PTH_UPTD "/lib/secure" 2877c478bd9Sstevel@tonic-gate@ MSG_PTH_NEWDLP_64 "/lib/64:/usr/lib/64" 2887c478bd9Sstevel@tonic-gate@ MSG_PTH_OLDDLP_64 "/usr/lib/64" 2897c478bd9Sstevel@tonic-gate@ MSG_PTH_UPDLP_64 "/lib/64" 2907c478bd9Sstevel@tonic-gate@ MSG_PTH_NEWTD_64 "/lib/secure/64:/usr/lib/secure/64" 2917c478bd9Sstevel@tonic-gate@ MSG_PTH_OLDTD_64 "/usr/lib/secure/64" 2927c478bd9Sstevel@tonic-gate@ MSG_PTH_UPTD_64 "/lib/secure/64" 2937c478bd9Sstevel@tonic-gate 2947c478bd9Sstevel@tonic-gate@ MSG_PTH_AOUTDLP "/usr/4lib:/usr/lib:/usr/local/lib" 2957c478bd9Sstevel@tonic-gate 2967c478bd9Sstevel@tonic-gate@ MSG_DIR_ROOT "/" 2977c478bd9Sstevel@tonic-gate@ MSG_DIR_DOT "." 2987c478bd9Sstevel@tonic-gate 2997c478bd9Sstevel@tonic-gate@ MSG_TMP_DIR "/var/tmp" 3007c478bd9Sstevel@tonic-gate@ MSG_TMP_PFX "crle." 3017c478bd9Sstevel@tonic-gate 3027c478bd9Sstevel@tonic-gate@ MSG_FMT_PATH "%s/%s" 3037c478bd9Sstevel@tonic-gate@ MSG_FMT_COLON ":%s" 3047c478bd9Sstevel@tonic-gate 3057c478bd9Sstevel@tonic-gate@ MSG_SUNW_OST_SGS "SUNW_OST_SGS" 3067c478bd9Sstevel@tonic-gate 3077c478bd9Sstevel@tonic-gate 3087c478bd9Sstevel@tonic-gate@ MSG_MOD_SEPARATE " \t|" 3097c478bd9Sstevel@tonic-gate@ MSG_MOD_REL_RELATIVE "RTLD_REL_RELATIVE" 3107c478bd9Sstevel@tonic-gate@ MSG_MOD_REL_EXEC "RTLD_REL_EXEC" 3117c478bd9Sstevel@tonic-gate@ MSG_MOD_REL_DEPENDS "RTLD_REL_DEPENDS" 3127c478bd9Sstevel@tonic-gate@ MSG_MOD_REL_PRELOAD "RTLD_REL_PRELOAD" 3137c478bd9Sstevel@tonic-gate@ MSG_MOD_REL_SELF "RTLD_REL_SELF" 3147c478bd9Sstevel@tonic-gate@ MSG_MOD_REL_WEAK "RTLD_REL_WEAK" 3157c478bd9Sstevel@tonic-gate@ MSG_MOD_REL_ALL "RTLD_REL_ALL" 3167c478bd9Sstevel@tonic-gate@ MSG_MOD_REL_MEMORY "RTLD_MEMORY" 3177c478bd9Sstevel@tonic-gate@ MSG_MOD_REL_STRIP "RTLD_STRIP" 3187c478bd9Sstevel@tonic-gate@ MSG_MOD_REL_NOHEAP "RTLD_NOHEAP" 3197c478bd9Sstevel@tonic-gate@ MSG_MOD_REL_CONFGEN "RTLD_CONFGEN" 320