1 |
282 |
jeremybenn |
# Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
2 |
|
|
#
|
3 |
|
|
# This file is part of GCC.
|
4 |
|
|
#
|
5 |
|
|
# GCC is free software; you can redistribute it and/or modify
|
6 |
|
|
# it under the terms of the GNU General Public License as published by
|
7 |
|
|
# the Free Software Foundation; either version 3, or (at your option)
|
8 |
|
|
# any later version.
|
9 |
|
|
#
|
10 |
|
|
# GCC is distributed in the hope that it will be useful,
|
11 |
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12 |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13 |
|
|
# GNU General Public License for more details.
|
14 |
|
|
#
|
15 |
|
|
# You should have received a copy of the GNU General Public License
|
16 |
|
|
# along with GCC; see the file COPYING3. If not see
|
17 |
|
|
# .
|
18 |
|
|
|
19 |
|
|
# Build a shared libgcc library for ELF with symbol versioning
|
20 |
|
|
# with the GNU linker.
|
21 |
|
|
|
22 |
|
|
SHLIB_EXT = .so
|
23 |
|
|
SHLIB_SOLINK = @shlib_base_name@.so
|
24 |
|
|
SHLIB_SOVERSION = 1
|
25 |
|
|
SHLIB_SONAME = @shlib_base_name@.so.$(SHLIB_SOVERSION)
|
26 |
|
|
SHLIB_MAP = @shlib_map_file@
|
27 |
|
|
SHLIB_OBJS = @shlib_objs@
|
28 |
|
|
SHLIB_DIR = @multilib_dir@
|
29 |
|
|
SHLIB_SLIBDIR_QUAL = @shlib_slibdir_qual@
|
30 |
|
|
SHLIB_LC = -lc
|
31 |
|
|
SHLIB_MAKE_SOLINK = $(LN_S) $(SHLIB_SONAME) $(SHLIB_DIR)/$(SHLIB_SOLINK)
|
32 |
|
|
SHLIB_INSTALL_SOLINK = $(LN_S) $(SHLIB_SONAME) \
|
33 |
|
|
$$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK)
|
34 |
|
|
|
35 |
|
|
SHLIB_LINK = $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \
|
36 |
|
|
-Wl,--soname=$(SHLIB_SONAME) \
|
37 |
|
|
-Wl,--version-script=$(SHLIB_MAP) \
|
38 |
|
|
-o $(SHLIB_DIR)/$(SHLIB_SONAME).tmp @multilib_flags@ \
|
39 |
|
|
$(SHLIB_OBJS) $(SHLIB_LC) && \
|
40 |
|
|
rm -f $(SHLIB_DIR)/$(SHLIB_SOLINK) && \
|
41 |
|
|
if [ -f $(SHLIB_DIR)/$(SHLIB_SONAME) ]; then \
|
42 |
|
|
mv -f $(SHLIB_DIR)/$(SHLIB_SONAME) \
|
43 |
|
|
$(SHLIB_DIR)/$(SHLIB_SONAME).backup; \
|
44 |
|
|
else true; fi && \
|
45 |
|
|
mv $(SHLIB_DIR)/$(SHLIB_SONAME).tmp $(SHLIB_DIR)/$(SHLIB_SONAME) && \
|
46 |
|
|
$(SHLIB_MAKE_SOLINK)
|
47 |
|
|
# $(slibdir) double quoted to protect it from expansion while building
|
48 |
|
|
# libgcc.mk. We want this delayed until actual install time.
|
49 |
|
|
SHLIB_INSTALL = \
|
50 |
|
|
$$(mkinstalldirs) $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL); \
|
51 |
|
|
$(INSTALL_DATA) $(SHLIB_DIR)/$(SHLIB_SONAME) \
|
52 |
|
|
$$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SONAME); \
|
53 |
|
|
rm -f $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK); \
|
54 |
|
|
$(SHLIB_INSTALL_SOLINK)
|
55 |
|
|
SHLIB_MKMAP = $(srcdir)/mkmap-symver.awk
|
56 |
|
|
SHLIB_MAPFILES = $(srcdir)/libgcc-std.ver
|