blob: 4cc0f5d8bc143be3b678bfe25e3a6c6ccae959d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
# Copyright 2018 Joyent, Inc.
# Copyright 2019 OmniOS Community Edition (OmniOSce) Association.
#
LIBRARY = libconv.a
COMOBJS32 = cap_machelf32.o dynamic_machelf32.o \
globals_machelf32.o sections_machelf32.o \
symbols_machelf32.o symbols_sparc_machelf32.o
COMOBJS64 = cap_machelf64.o dynamic_machelf64.o \
globals_machelf64.o sections_machelf64.o \
symbols_machelf64.o symbols_sparc_machelf64.o
COMOBJS= arch.o audit.o \
c_literal.o \
cap.o config.o \
corenote.o data.o \
deftag.o demangle.o \
dl.o dwarf.o \
dwarf_ehe.o dynamic.o \
elf.o entry.o \
globals.o group.o \
lddstub.o map.o \
phdr.o relocate.o \
relocate_i386.o relocate_amd64.o \
relocate_sparc.o sections.o \
segments.o strproc.o \
symbols.o syminfo.o \
tokens.o time.o \
version.o
ELFCAP_OBJS= elfcap.o
ASOBJS= vernote.o
BLTOBJS= arch_msg.o audit_msg.o \
c_literal_msg.o \
cap_msg.o config_msg.o \
corenote_msg.o data_msg.o \
deftag_msg.o demangle_msg.o \
dl_msg.o dwarf_msg.o \
dwarf_ehe_msg.o dynamic_msg.o \
elf_msg.o entry_msg.o \
globals_msg.o group_msg.o \
map_msg.o lddstub_msg.o \
phdr_msg.o relocate_amd64_msg.o \
relocate_i386_msg.o relocate_sparc_msg.o \
sections_msg.o segments_msg.o \
symbols_msg.o symbols_sparc_msg.o \
syminfo_msg.o time_msg.o \
version_msg.o
OBJECTS = $(COMOBJS) $(COMOBJS32) $(COMOBJS64) $(ELFCAP_OBJS) \
$(ASOBJS) $(BLTOBJS)
#
# This library is unusual since it's a static archive of PIC objects.
# Since static archives should never contain CTF data (regardless of
# whether the object code is position-independent), we disable CTF.
#
NOCTFOBJS = $(OBJECTS)
CTFMERGE_LIB = :
include $(SRC)/lib/Makefile.lib
include $(SRC)/cmd/sgs/Makefile.com
SRCDIR = $(SRC)/cmd/sgs/libconv
CERRWARN += -_gcc=-Wno-type-limits
CERRWARN += -_gcc=-Wno-switch
# not linted
SMATCH=off
CTFCONVERT_O=
README_REVISION= $(SGSHOME)/tools/readme_revision
ONLDREADME= $(SGSHOME)/tools/SUNWonld-README
PICS= $(OBJECTS:%=pics/%)
CPPFLAGS += -I$(SRC)/lib/libc/inc -I$(ELFCAP) \
-I$(SRC)/common/sgsrtcid
ARFLAGS= cr
AS_CPPFLAGS= -P -D_ASM $(CPPFLAGS)
BLTDATA= $(BLTOBJS:%.o=%.c) $(BLTOBJS:%.o=%.h) report_bufsize.h
MSGSRCS= $(COMOBJS:%.o=../common/%.c) \
$(COMOBJS_NOMSG:%.o=../common/%.c) \
$(ELFCOM_OBJS:%.o=$(ELFCAP)/%.c)
SGSMSGTARG= $(BLTOBJS:%_msg.o=../common/%.msg)
CLEANFILES += $(BLTDATA) bld_vernote vernote.s
#
# Disable the stack protector due to issues with bootstrapping rtld. See
# cmd/sgs/rtld/Makefile.com for more information.
#
STACKPROTECT = none
|