xfail all scan-tree-dump-times checks on hppa*64*-*-* in sra-17.c and sra-18.c
[official-gcc.git] / libstdc++-v3 / src / c++17 / Makefile.am
blobee9e77a53c097263838a0e4d6742526bf81d3c6d
1 ## Makefile for the C++17 sources of the GNU C++ Standard library.
2 ##
3 ## Copyright (C) 1997-2024 Free Software Foundation, Inc.
4 ##
5 ## This file is part of the libstdc++ version 3 distribution.
6 ## Process this file with automake to produce Makefile.in.
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.
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.
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/>.
23 include $(top_srcdir)/fragment.am
25 # Convenience library for C++17 runtime.
26 noinst_LTLIBRARIES = libc++17convenience.la
28 headers =
30 if ENABLE_DUAL_ABI
31 extra_string_inst_sources = cow-string-inst.cc
32 extra_fs_sources = \
33         cow-fs_dir.cc \
34         cow-fs_ops.cc \
35         cow-fs_path.cc
36 else
37 extra_string_inst_sources =
38 extra_fs_sources =
39 endif
41 if ENABLE_EXTERN_TEMPLATE
42 # XTEMPLATE_FLAGS = -fno-implicit-templates
43 inst_sources = \
44         ostream-inst.cc \
45         string-inst.cc \
46         $(extra_string_inst_sources)
47 else
48 # XTEMPLATE_FLAGS =
49 inst_sources =
50 endif
52 sources = \
53         floating_from_chars.cc \
54         floating_to_chars.cc \
55         fs_dir.cc \
56         fs_ops.cc \
57         fs_path.cc \
58         memory_resource.cc \
59         $(extra_fs_sources)
61 vpath % $(top_srcdir)/src/c++17
63 if GLIBCXX_HOSTED
64 libc__17convenience_la_SOURCES = $(sources)  $(inst_sources)
65 else
66 libc__17convenience_la_SOURCES =
67 endif
69 if GLIBCXX_LDBL_ALT128_COMPAT
70 floating_from_chars.lo: floating_from_chars.cc
71         $(LTCXXCOMPILE) -mabi=ibmlongdouble $(LONG_DOUBLE_128_FLAGS) -c $<
72 floating_from_chars.o: floating_from_chars.cc
73         $(CXXCOMPILE) -mabi=ibmlongdouble $(LONG_DOUBLE_128_FLAGS) -c $<
74 floating_to_chars.lo: floating_to_chars.cc
75         $(LTCXXCOMPILE) -mabi=ibmlongdouble $(LONG_DOUBLE_128_FLAGS) -c $<
76 floating_to_chars.o: floating_to_chars.cc
77         $(CXXCOMPILE) -mabi=ibmlongdouble $(LONG_DOUBLE_128_FLAGS) -c $<
78 endif
80 # AM_CXXFLAGS needs to be in each subdirectory so that it can be
81 # modified in a per-library or per-sub-library way.  Need to manually
82 # set this option because CONFIG_CXXFLAGS has to be after
83 # OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden
84 # as the occasion calls for it.
85 AM_CXXFLAGS = \
86         -std=gnu++17 -nostdinc++ \
87         $(glibcxx_lt_pic_flag) $(glibcxx_compiler_shared_flag) \
88         $(XTEMPLATE_FLAGS) $(VTV_CXXFLAGS) \
89         $(WARN_CXXFLAGS) $(OPTIMIZE_CXXFLAGS) $(CONFIG_CXXFLAGS) \
90         -fimplicit-templates
92 AM_MAKEFLAGS = \
93         "gxx_include_dir=$(gxx_include_dir)"
95 # Libtool notes
97 # 1) In general, libtool expects an argument such as `--tag=CXX' when
98 # using the C++ compiler, because that will enable the settings
99 # detected when C++ support was being configured.  However, when no
100 # such flag is given in the command line, libtool attempts to figure
101 # it out by matching the compiler name in each configuration section
102 # against a prefix of the command line.  The problem is that, if the
103 # compiler name and its initial flags stored in the libtool
104 # configuration file don't match those in the command line, libtool
105 # can't decide which configuration to use, and it gives up.  The
106 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
107 # CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to
108 # attempt to infer which configuration to use.
110 # The second tag argument, `--tag disable-shared` means that libtool
111 # only compiles each source once, for static objects. In actuality,
112 # glibcxx_lt_pic_flag and glibcxx_compiler_shared_flag are added to
113 # the libtool command that is used create the object, which is
114 # suitable for shared libraries.  The `--tag disable-shared` must be
115 # placed after --tag CXX lest things CXX undo the affect of
116 # disable-shared.
118 # 2) Need to explicitly set LTCXXCOMPILE so that EXTRA_CXX_FLAGS is
119 # last. (That way, things like -O2 passed down from the toplevel can
120 # be overridden by --enable-debug.)
121 LTCXXCOMPILE = \
122         $(LIBTOOL) --tag CXX --tag disable-shared \
123         $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
124         --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
125         $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) $(EXTRA_CXX_FLAGS)
127 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
129 # 3) We'd have a problem when building the shared libstdc++ object if
130 # the rules automake generates would be used.  We cannot allow g++ to
131 # be used since this would add -lstdc++ to the link line which of
132 # course is problematic at this point.  So, we get the top-level
133 # directory to configure libstdc++-v3 to use gcc as the C++
134 # compilation driver.
135 CXXLINK = \
136         $(LIBTOOL) --tag CXX --tag disable-shared \
137         $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
138         --mode=link $(CXX) \
139         $(VTV_CXXLINKFLAGS) \
140         $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LTLDFLAGS) -o $@