]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/src/c++17/Makefile.am
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / src / c++17 / Makefile.am
CommitLineData
51a5511d 1## Makefile for the C++17 sources of the GNU C++ Standard library.
2##
fbd26352 3## Copyright (C) 1997-2019 Free Software Foundation, Inc.
51a5511d 4##
5## This file is part of the libstdc++ version 3 distribution.
6## Process this file with automake to produce Makefile.in.
7
8## This file is part of the GNU ISO C++ Library. This library is free
9## software; you can redistribute it and/or modify it under the
10## terms of the GNU General Public License as published by the
11## Free Software Foundation; either version 3, or (at your option)
12## any later version.
13
14## This library is distributed in the hope that it will be useful,
15## but WITHOUT ANY WARRANTY; without even the implied warranty of
16## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17## GNU General Public License for more details.
18
19## You should have received a copy of the GNU General Public License along
20## with this library; see the file COPYING3. If not see
21## <http://www.gnu.org/licenses/>.
22
23include $(top_srcdir)/fragment.am
24
25# Convenience library for C++17 runtime.
26noinst_LTLIBRARIES = libc++17convenience.la
27
28headers =
29
30sources = \
31 memory_resource.cc
32
33if ENABLE_DUAL_ABI
34extra_string_inst_sources =
35else
36extra_string_inst_sources =
37endif
38
39if ENABLE_EXTERN_TEMPLATE
40# XTEMPLATE_FLAGS = -fno-implicit-templates
41inst_sources = \
42 $(extra_string_inst_sources)
43else
44# XTEMPLATE_FLAGS =
45inst_sources =
46endif
47
48vpath % $(top_srcdir)/src/c++17
49
50libc__17convenience_la_SOURCES = $(sources) $(inst_sources)
51
52# AM_CXXFLAGS needs to be in each subdirectory so that it can be
53# modified in a per-library or per-sub-library way. Need to manually
54# set this option because CONFIG_CXXFLAGS has to be after
55# OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden
56# as the occasion calls for it.
57AM_CXXFLAGS = \
58 -std=gnu++17 \
59 $(glibcxx_lt_pic_flag) $(glibcxx_compiler_shared_flag) \
60 $(XTEMPLATE_FLAGS) $(VTV_CXXFLAGS) \
61 $(WARN_CXXFLAGS) $(OPTIMIZE_CXXFLAGS) $(CONFIG_CXXFLAGS)
62
63AM_MAKEFLAGS = \
64 "gxx_include_dir=$(gxx_include_dir)"
65
76b49a08 66memory_resource.lo: memory_resource.cc
67 $(LTCXXCOMPILE) -fimplicit-templates -c $< -o $@
68memory_resource.o: memory_resource.cc
69 $(CXXCOMPILE) -fimplicit-templates -c $< -o $@
70
51a5511d 71# Libtool notes
72
73# 1) In general, libtool expects an argument such as `--tag=CXX' when
74# using the C++ compiler, because that will enable the settings
75# detected when C++ support was being configured. However, when no
76# such flag is given in the command line, libtool attempts to figure
77# it out by matching the compiler name in each configuration section
78# against a prefix of the command line. The problem is that, if the
79# compiler name and its initial flags stored in the libtool
80# configuration file don't match those in the command line, libtool
81# can't decide which configuration to use, and it gives up. The
82# correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
83# CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to
84# attempt to infer which configuration to use.
85#
86# The second tag argument, `--tag disable-shared` means that libtool
87# only compiles each source once, for static objects. In actuality,
88# glibcxx_lt_pic_flag and glibcxx_compiler_shared_flag are added to
89# the libtool command that is used create the object, which is
90# suitable for shared libraries. The `--tag disable-shared` must be
91# placed after --tag CXX lest things CXX undo the affect of
92# disable-shared.
93
94# 2) Need to explicitly set LTCXXCOMPILE so that EXTRA_CXX_FLAGS is
95# last. (That way, things like -O2 passed down from the toplevel can
96# be overridden by --enable-debug.)
97LTCXXCOMPILE = \
98 $(LIBTOOL) --tag CXX --tag disable-shared \
99 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
100 --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
101 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) $(EXTRA_CXX_FLAGS)
102
103LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
104
105# 3) We'd have a problem when building the shared libstdc++ object if
106# the rules automake generates would be used. We cannot allow g++ to
107# be used since this would add -lstdc++ to the link line which of
108# course is problematic at this point. So, we get the top-level
109# directory to configure libstdc++-v3 to use gcc as the C++
110# compilation driver.
111CXXLINK = \
112 $(LIBTOOL) --tag CXX --tag disable-shared \
113 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
114 --mode=link $(CXX) \
115 $(VTV_CXXLINKFLAGS) \
116 $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LTLDFLAGS) -o $@