xfail scan-tree-dump-not throw in g++.dg/pr99966.C on hppa*64*-*-*
[official-gcc.git] / gcc / jit / Make-lang.in
blobb1f0ce73e1243c307fb4e3304f68d4fdac9414b8
1 # Top level -*- makefile -*- fragment for libgccjit.so.
2 #   Copyright (C) 2013-2024 Free Software Foundation, Inc.
4 #This file is part of GCC.
6 #GCC is free software; you can redistribute it and/or modify
7 #it under the terms of the GNU General Public License as published by
8 #the Free Software Foundation; either version 3, or (at your option)
9 #any later version.
11 #GCC is distributed in the hope that it will be useful,
12 #but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with GCC; see the file COPYING3.  If not see
18 # <http://www.gnu.org/licenses/>.
20 # This file provides the language dependent support in the main Makefile.
21 # Each language makefile fragment must provide the following targets:
23 # foo.all.cross, foo.start.encap, foo.rest.encap,
24 # foo.install-common, foo.install-man, foo.install-info, foo.install-pdf,
25 # foo.install-html, foo.info, foo.dvi, foo.pdf, foo.html, foo.uninstall,
26 # foo.mostlyclean, foo.clean, foo.distclean,
27 # foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
29 # where `foo' is the name of the language.
31 # It should also provide rules for:
33 # - making any compiler driver (eg: g++)
34 # - the compiler proper (eg: cc1plus)
35 # - define the names for selecting the language in LANGUAGES.
37 #\f
38 # Define the names for selecting jit in LANGUAGES.
39 # Note that it would be nice to move the dependency on g++
40 # into the jit rule, but that needs a little bit of work
41 # to do the right thing within all.cross.
43 LIBGCCJIT_VERSION_NUM = 0
44 LIBGCCJIT_MINOR_NUM = 0
45 LIBGCCJIT_RELEASE_NUM = 1
47 ifneq (,$(findstring mingw,$(target)))
48 LIBGCCJIT_FILENAME = libgccjit-$(LIBGCCJIT_VERSION_NUM).dll
49 LIBGCCJIT_IMPORT_LIB = libgccjit.dll.a
51 jit: $(LIBGCCJIT_FILENAME) \
52         $(FULL_DRIVER_NAME)
54 else
56 ifneq (,$(findstring darwin,$(host)))
58 LIBGCCJIT_AGE = 1
59 LIBGCCJIT_BASENAME = libgccjit
61 LIBGCCJIT_SONAME = \
62   $(DARWIN_RPATH)/$(LIBGCCJIT_BASENAME).$(LIBGCCJIT_VERSION_NUM).dylib
63 LIBGCCJIT_FILENAME = $(LIBGCCJIT_BASENAME).$(LIBGCCJIT_VERSION_NUM).dylib
64 LIBGCCJIT_LINKER_NAME = $(LIBGCCJIT_BASENAME).dylib
66 # Conditionalize the use of the LD_VERSION_SCRIPT_OPTION and
67 # LD_SONAME_OPTION depending if configure found them, using $(if)
68 # We have to define a COMMA here, otherwise the commas in the "true"
69 # result are treated as separators by the $(if).
70 COMMA := ,
71 LIBGCCJIT_VERSION_SCRIPT_OPTION = \
72         $(if $(LD_VERSION_SCRIPT_OPTION),\
73           -Wl$(COMMA)$(LD_VERSION_SCRIPT_OPTION)$(COMMA)$(srcdir)/jit/libgccjit.map)
75 LIBGCCJIT_SONAME_OPTION = \
76         $(if $(LD_SONAME_OPTION), \
77              -Wl$(COMMA)$(LD_SONAME_OPTION)$(COMMA)$(LIBGCCJIT_SONAME))
79 LIBGCCJIT_SONAME_SYMLINK = $(LIBGCCJIT_FILENAME)
80 LIBGCCJIT_LINKER_NAME_SYMLINK = $(LIBGCCJIT_LINKER_NAME)
82 jit: $(LIBGCCJIT_FILENAME) \
83         $(LIBGCCJIT_SYMLINK) \
84         $(LIBGCCJIT_LINKER_NAME_SYMLINK) \
85         $(FULL_DRIVER_NAME)
87 else
89 LIBGCCJIT_LINKER_NAME = libgccjit.so
90 LIBGCCJIT_SONAME = $(LIBGCCJIT_LINKER_NAME).$(LIBGCCJIT_VERSION_NUM)
91 LIBGCCJIT_FILENAME = \
92   $(LIBGCCJIT_SONAME).$(LIBGCCJIT_MINOR_NUM).$(LIBGCCJIT_RELEASE_NUM)
94 LIBGCCJIT_LINKER_NAME_SYMLINK = $(LIBGCCJIT_LINKER_NAME)
95 LIBGCCJIT_SONAME_SYMLINK = $(LIBGCCJIT_SONAME)
97 # Conditionalize the use of the LD_VERSION_SCRIPT_OPTION and
98 # LD_SONAME_OPTION depending if configure found them, using $(if)
99 # We have to define a COMMA here, otherwise the commas in the "true"
100 # result are treated as separators by the $(if).
101 COMMA := ,
102 LIBGCCJIT_VERSION_SCRIPT_OPTION = \
103         $(if $(LD_VERSION_SCRIPT_OPTION),\
104           -Wl$(COMMA)$(LD_VERSION_SCRIPT_OPTION)$(COMMA)$(srcdir)/jit/libgccjit.map)
106 LIBGCCJIT_SONAME_OPTION = \
107         $(if $(LD_SONAME_OPTION), \
108              -Wl$(COMMA)$(LD_SONAME_OPTION)$(COMMA)$(LIBGCCJIT_SONAME))
110 jit: $(LIBGCCJIT_FILENAME) \
111         $(LIBGCCJIT_SYMLINK) \
112         $(LIBGCCJIT_LINKER_NAME_SYMLINK) \
113         $(FULL_DRIVER_NAME)
115 endif
116 endif
118 jit.serial = $(LIBGCCJIT_FILENAME)
120 # Tell GNU make to ignore these if they exist.
121 .PHONY: jit
123 jit_OBJS = attribs.o \
124         jit/dummy-frontend.o \
125         jit/libgccjit.o \
126         jit/jit-logging.o \
127         jit/jit-recording.o \
128         jit/jit-playback.o \
129         jit/jit-result.o \
130         jit/jit-tempdir.o \
131         jit/jit-builtins.o \
132         jit/jit-spec.o \
133         gcc.o
135 ifneq (,$(findstring mingw,$(target)))
136 jit_OBJS += jit/jit-w32.o
137 endif
139 # Use strict warnings for this front end.
140 jit-warn = $(STRICT_WARN)
142 ifneq (,$(findstring mingw,$(target)))
143 # Create import library
144 LIBGCCJIT_EXTRA_OPTS = -Wl,--out-implib,$(LIBGCCJIT_IMPORT_LIB)
145 else
147 ifneq (,$(findstring darwin,$(host)))
148 # TODO : Construct a Darwin-style symbol export file.
149 LIBGCCJIT_EXTRA_OPTS = -Wl,-compatibility_version,$(LIBGCCJIT_VERSION_NUM) \
150         -Wl,-current_version,$(LIBGCCJIT_VERSION_NUM).$(LIBGCCJIT_MINOR_NUM).$(LIBGCCJIT_AGE) \
151         $(LIBGCCJIT_VERSION_SCRIPT_OPTION) \
152         $(LIBGCCJIT_SONAME_OPTION)
153 else
155 LIBGCCJIT_EXTRA_OPTS = $(LIBGCCJIT_VERSION_SCRIPT_OPTION) \
156         $(LIBGCCJIT_SONAME_OPTION)
157 endif
158 endif
160 # Only link objects from $(EXTRA_GCC_OBJS) that's not already
161 # included in libbackend.a ($(EXTRA_OBJS)).
162 EXTRA_GCC_OBJS_EXCLUSIVE = $(foreach _obj1, $(EXTRA_GCC_OBJS), \
163         $(if $(filter $(_obj1), $(EXTRA_OBJS)),, $(_obj1)))
165 # We avoid using $(BACKEND) from Makefile.in in order to avoid pulling
166 # in main.o
167 $(LIBGCCJIT_FILENAME): $(jit_OBJS) \
168         libbackend.a libcommon-target.a libcommon.a \
169         $(CPPLIB) $(LIBDECNUMBER) \
170         $(LIBDEPS) $(srcdir)/jit/libgccjit.map \
171         $(EXTRA_GCC_OBJS_EXCLUSIVE) $(jit.prev)
172         @$(call LINK_PROGRESS,$(INDEX.jit),start)
173         +$(LLINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ -shared \
174              $(jit_OBJS) libbackend.a libcommon-target.a libcommon.a \
175              $(CPPLIB) $(LIBDECNUMBER) $(EXTRA_GCC_LIBS) $(LIBS) $(BACKENDLIBS) \
176              $(EXTRA_GCC_OBJS_EXCLUSIVE) \
177              $(LIBGCCJIT_EXTRA_OPTS)
178         @$(call LINK_PROGRESS,$(INDEX.jit),end)
180 # Create symlinks when not building for Windows
181 ifeq (,$(findstring mingw,$(target)))
183 ifeq (,$(findstring darwin,$(host)))
184 # but only one level for Darwin, version info is embedded.
185 $(LIBGCCJIT_SONAME_SYMLINK): $(LIBGCCJIT_FILENAME)
186         ln -sf $(LIBGCCJIT_FILENAME) $(LIBGCCJIT_SONAME_SYMLINK)
187 endif
189 $(LIBGCCJIT_LINKER_NAME_SYMLINK): $(LIBGCCJIT_SONAME_SYMLINK)
190         ln -sf $(LIBGCCJIT_SONAME_SYMLINK) $(LIBGCCJIT_LINKER_NAME_SYMLINK)
191 endif
194 # Build hooks:
196 jit.all.cross:
197 jit.start.encap:
198 jit.rest.encap:
200 # Documentation build hooks.
202 # The documentation can be built using the texinfo toolchain, or
203 # the sphinx toolchain
205 # The jit documentation is authored using Sphinx, which has numerous
206 # advantages over Texinfo, including:
208 #   * much faster
210 #   * use of CSS and JS to provide less of a 1990s feel in the generated
211 #     HTML.
213 #   * sane, stable HTML page and anchor names
215 #   * sane HTML navigation: ability to move forward and back in the HTML
216 #     at every node to read the HTML like a book
218 #   * syntax-coloring of examples
220 #   * the ability to "include" fragments of code inline.  This is used
221 #     heavily by the jit docs, so that the example code is shared by both
222 #     the test suite and the documentation to ensure that the examples
223 #     appearing in the docs actually compile and work
225 # Sphinx is not a "blessed" dependency, and so a prebuilt libgccjit.texinfo
226 # file built by Sphinx is checked into the source tree to avoid requiring
227 # everyone to have Sphinx installed.
229 # This prebuilt libgccjit.texinfo has the "include" fragments "baked in",
230 # and so contains the content from the sphinx toolchain, but lacks the
231 # syntax-coloring, and the generated HTML is (IMHO) greatly inferior to
232 # that generated by Sphinx.
234 # These targets redirect HTML creation and installation to either
235 # jit.sphinx.(install-)html or jit.texinfo.(install-)html.
236 jit.html: jit.$(doc_build_sys).html
237 jit.install-html: jit.$(doc_build_sys).install-html
239 # For now, use texinfo for pdf, since the sphinx latex toolchain currently
240 # fails for me deep inside pdflatex (see notes below)
241 jit.pdf: jit.texinfo.pdf
242 jit.install-pdf: jit.texinfo.install-pdf
244 # Hooks for building docs using texinfo
245 JIT_TEXI_FILES = $(srcdir)/jit/docs/_build/texinfo/libgccjit.texi
247 jit.info: doc/libgccjit.info
248 doc/libgccjit.info: $(JIT_TEXI_FILES)
249         if test "x$(BUILD_INFO)" = xinfo; then \
250           rm -f doc/libgccjit.info*; \
251           $(MAKEINFO) $(MAKEINFOFLAGS) -I $(gcc_docdir) \
252                 -I $(gcc_docdir)/include -o $@ $<; \
253         else true; fi
255 jit.install-info: $(DESTDIR)$(infodir)/libgccjit.info
257 jit.dvi: doc/libgccjit.dvi
258 doc/libgccjit.dvi: $(JIT_TEXI_FILES)
259         $(TEXI2DVI) -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $<
261 jit.texinfo.html: $(build_htmldir)/jit/index.html
263 $(build_htmldir)/jit/index.html: $(srcdir)/jit/docs/_build/texinfo/libgccjit.texi
264         $(mkinstalldirs) $(@D)
265         rm -f $(@D)/*
266         $(TEXI2HTML) -I $(gcc_docdir)/include -I $(srcdir)/jit -o $(@D) $<
268 jit.texinfo.install-html: jit.texinfo.html
269         @$(NORMAL_INSTALL)
270         test -z "$(htmldir)" || $(mkinstalldirs) "$(DESTDIR)$(htmldir)"
271         @for p in $(build_htmldir)/jit; do \
272           if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \
273           f=$(html__strip_dir) \
274           if test -d "$$d$$p"; then \
275             echo " $(mkinstalldirs) '$(DESTDIR)$(htmldir)/$$f'"; \
276             $(mkinstalldirs) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
277             echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
278             $(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
279           else \
280             echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
281             $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
282           fi; \
283         done
285 jit.texinfo.pdf: doc/libgccjit.pdf
287 doc/libgccjit.pdf: $(JIT_TEXI_FILES)
288         $(TEXI2PDF) -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $<
290 jit.texinfo.install-pdf: doc/libgccjit.pdf
291         @$(NORMAL_INSTALL)
292         test -z "$(pdfdir)" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)/gcc"
293         @for p in doc/libgccjit.pdf; do \
294           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
295           f=$(pdf__strip_dir) \
296           echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/gcc/$$f'"; \
297           $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/gcc/$$f"; \
298         done
300 # Hooks for building docs using the Sphinx toolchain:
302 SPHINX_BUILD_DIR=jit/sphinx-build
304 jit.sphinx.html:
305         $(mkinstalldirs) $(SPHINX_BUILD_DIR)
306         (cd $(srcdir)/jit/docs && \
307           make html BUILDDIR=$(PWD)/$(SPHINX_BUILD_DIR) )
309 jit_htmldir=$(htmldir)/jit
311 jit.sphinx.install-html: jit.sphinx.html
312         @$(NORMAL_INSTALL)
313         test -z "$(jit_htmldir)" || $(mkinstalldirs) "$(DESTDIR)$(jit_htmldir)"
314         @for f in $(shell cd $(SPHINX_BUILD_DIR)/html && find) ; do \
315           if test -f $(SPHINX_BUILD_DIR)/html/"$$f"; then \
316              $(INSTALL_DATA) $(SPHINX_BUILD_DIR)/html/"$$f" $(DESTDIR)$(jit_htmldir)/"$$f"; \
317           else \
318              mkdir $(DESTDIR)$(jit_htmldir)/"$$f"; \
319           fi; \
320         done
322 # (This one is currently failing deep inside pdflatex for me;
323 # see https://bugzilla.redhat.com/show_bug.cgi?id=1148845 )
324 jit.sphinx.pdf: $(SPHINX_BUILD_DIR)/latex/libgccjit.pdf
325 $(SPHINX_BUILD_DIR)/latex/libgccjit.pdf:
326         $(mkinstalldirs) $(SPHINX_BUILD_DIR)
327         (cd $(srcdir)/jit/docs && \
328           make latexpdf BUILDDIR=$(PWD)/$(SPHINX_BUILD_DIR) )
330 jit.sphinx.install-pdf: $(SPHINX_BUILD_DIR)/latex/libgccjit.pdf
331         @$(NORMAL_INSTALL)
332         test -z "$(pdfdir)" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)/gcc"
333         @for p in $(SPHINX_BUILD_DIR)/latex/libgccjit.pdf; do \
334           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
335           f=$(pdf__strip_dir) \
336           echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/gcc/$$f'"; \
337           $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/gcc/$$f"; \
338         done
340 jit.srcinfo:
341 jit.srcextra:
343 jit.tags:
345 jit.man:
347 jit.srcman:
349 lang_checks += check-jit
350 lang_checks_parallelized += check-jit
351 # This number is somewhat arbitrary.  Two tests are much slower
352 # than all the others (test-combination.c and test-threads.c) so
353 # we want them to be placed in different "buckets".
354 check_jit_parallelize = 10
356 # No jit-specific selftests
357 selftest-jit:
360 # Install hooks:
361 jit.install-headers: installdirs
362         $(INSTALL_DATA) $(srcdir)/jit/libgccjit.h \
363           $(DESTDIR)$(includedir)/libgccjit.h
364         $(INSTALL_DATA) $(srcdir)/jit/libgccjit++.h \
365           $(DESTDIR)$(includedir)/libgccjit++.h
367 ifneq (,$(findstring mingw,$(target)))
368 jit.install-common: installdirs jit.install-headers
369 # Install import library
370         $(INSTALL_PROGRAM) $(LIBGCCJIT_IMPORT_LIB) \
371           $(DESTDIR)$(libdir)/$(LIBGCCJIT_IMPORT_LIB)
372 # Install DLL file
373         $(INSTALL_PROGRAM) $(LIBGCCJIT_FILENAME) \
374           $(DESTDIR)$(bindir)/$(LIBGCCJIT_FILENAME)
376 else
377 ifneq (,$(findstring darwin,$(host)))
378 # but only one level for Darwin
380 jit.install-common: installdirs jit.install-headers
381         $(INSTALL_PROGRAM) $(LIBGCCJIT_FILENAME) \
382           $(DESTDIR)$(libdir)/$(LIBGCCJIT_FILENAME)
383         ln -sf \
384           $(LIBGCCJIT_SONAME_SYMLINK)\
385           $(DESTDIR)$(libdir)/$(LIBGCCJIT_LINKER_NAME_SYMLINK)
387 else
388 jit.install-common: installdirs jit.install-headers
389         $(INSTALL_PROGRAM) $(LIBGCCJIT_FILENAME) \
390           $(DESTDIR)$(libdir)/$(LIBGCCJIT_FILENAME)
391         ln -sf \
392           $(LIBGCCJIT_FILENAME) \
393           $(DESTDIR)$(libdir)/$(LIBGCCJIT_SONAME_SYMLINK)
394         ln -sf \
395           $(LIBGCCJIT_SONAME_SYMLINK)\
396           $(DESTDIR)$(libdir)/$(LIBGCCJIT_LINKER_NAME_SYMLINK)
397 endif
398 endif
400 jit.install-man:
402 jit.install-plugin:
404 jit.uninstall:
407 # Clean hooks:
408 # A lot of the ancillary files are deleted by the main makefile.
409 # We just have to delete files specific to us.
411 jit.mostlyclean:
412         -rm -f $(LIBGCCJIT_FILENAME) $(LIBGCCJIT_SYMLINK)
413         -rm -f $(LIBGCCJIT_LINKER_NAME_SYMLINK) $(FULL_DRIVER_NAME)
414         -rm -f $(LIBGCCJIT_SONAME)
415         -rm -f $(jit_OBJS)
417 jit.clean:
419 jit.distclean:
421 jit.maintainer-clean:
424 # Stage hooks:
425 # The main makefile has already created stage?/jit.
427 jit.stage1: stage1-start
428         -mv jit/*$(objext) stage1/jit
429 jit.stage2: stage2-start
430         -mv jit/*$(objext) stage2/jit
431 jit.stage3: stage3-start
432         -mv jit/*$(objext) stage3/jit
433 jit.stage4: stage4-start
434         -mv jit/*$(objext) stage4/jit
435 jit.stageprofile: stageprofile-start
436         -mv jit/*$(objext) stageprofile/jit
437 jit.stagefeedback: stagefeedback-start
438         -mv jit/*$(objext) stagefeedback/jit