Print this page
11238 librtld_db demos should work with gcc 7
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/sgs/librtld_db/demo/Makefile.targ
+++ new/usr/src/cmd/sgs/librtld_db/demo/Makefile.targ
1 1 #
2 2 # CDDL HEADER START
3 3 #
4 4 # The contents of this file are subject to the terms of the
5 5 # Common Development and Distribution License (the "License").
6 6 # You may not use this file except in compliance with the License.
7 7 #
8 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 # or http://www.opensolaris.org/os/licensing.
10 10 # See the License for the specific language governing permissions
11 11 # and limitations under the License.
12 12 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 # If applicable, add the following below this CDDL HEADER, with the
16 16 # fields enclosed by brackets "[]" replaced with your own identifying
17 17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 21 # Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved.
22 22 # Copyright 2019 OmniOS Community Edition (OmniOSce) Association.
23 23 #
24 24
25 25 $(OBJDIR)/%.o: %.c
26 26 $(COMPILE.c) $< -o $@
27 27 $(POST_PROCESS_O)
28 28
29 29 $(OBJDIR)/%.o: ../common/%.c
30 30 $(COMPILE.c) $< -o $@
31 31 $(POST_PROCESS_O)
32 32
33 33 # DEMO DELETE START
34 34 $(ROOTONLDBIN)/%: %
35 35 $(INS.file)
36 36
37 37 $(ROOTONLDBIN)/$(MACH64)/%: %
38 38 $(INS.file)
39 39 # DEMO DELETE END
40 40
41 41 $(OBJDIR)/main.o: gram.h
42 42
43 43 gram.c + gram.h: ../common/gram.y
44 44 $(YACC) -d ../common/gram.y
45 45 $(MV) y.tab.c gram.c
46 46 $(MV) y.tab.h gram.h
47 47
48 48 lex.c: ../common/lex.l
49 49 $(LEX) ../common/lex.l
50 50 $(MV) lex.yy.c lex.c
51 51
52 52 $(PROG): $(OBJS)
↓ open down ↓ |
52 lines elided |
↑ open up ↑ |
53 53 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
54 54 # DEMO DELETE START
55 55 $(POST_PROCESS)
56 56 # DEMO DELETE END
57 57
58 58
59 59 simp: ../tests/simp.c libsub.so.1
60 60 $(LINK.c) $(LDFLAG) -o $@ ../tests/simp.c -R. ./libsub.so.1
61 61
62 62 libsub.so.1: ../tests/sub.c
63 - $(LINK.c) $(LDFLAG) -o $@ -G -Kpic -hlibsub.so.1 ../tests/sub.c
63 + $(LINK.c) $(LDFLAG) -o $@ -G -fpic -hlibsub.so.1 ../tests/sub.c
64 64
65 65 #
66 66 # RDB sample runs & tests
67 67 #
68 68 test-maps: simp FRC
69 69 ./rdb -f ../tests/loadmaps ./simp
70 70
71 71 test-breaks: simp FRC
72 72 ./rdb -f ../tests/breaks ./simp
73 73
74 74 test-steps: simp FRC
75 75 ./rdb -f ../tests/steps ./simp
76 76
77 77 test-plt_skip: simp FRC
78 78 ./rdb -f ../tests/plt_skip ./simp
79 79
80 80 test-sparc-regs: simp FRC
81 81 ./rdb -f ../tests/test-sparc-regs simp
82 82
83 83 test-object-padding: simp FRC
84 84 ./rdb -f ../tests/object_padding_maps simp
85 85
86 86 $(OBJDIR):
87 87 -@mkdir -p $(OBJDIR)
88 88
89 89 clean: FRC
90 90 $(RM) $(OBJS) $(CLEANFILES)
91 91
92 92 clobber: clean FRC
93 93 $(RM) $(PROG)
94 94
95 95 FRC:
96 96
97 97 # DEMO DELETE START
98 98
99 99 include $(SRC)/cmd/sgs/Makefile.targ
100 100 # DEMO DELETE END
↓ open down ↓ |
27 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX