1# Top level -*- makefile -*- fragment for libgccjit.so. 2# Copyright (C) 2013-2018 Free Software Foundation, Inc. 3 4#This file is part of GCC. 5 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. 10 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. 15 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/>. 19 20# This file provides the language dependent support in the main Makefile. 21# Each language makefile fragment must provide the following targets: 22# 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 28# 29# where `foo' is the name of the language. 30# 31# It should also provide rules for: 32# 33# - making any compiler driver (eg: g++) 34# - the compiler proper (eg: cc1plus) 35# - define the names for selecting the language in LANGUAGES. 36 37# 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. 42 43LIBGCCJIT_LINKER_NAME = libgccjit.so 44LIBGCCJIT_VERSION_NUM = 0 45LIBGCCJIT_MINOR_NUM = 0 46LIBGCCJIT_RELEASE_NUM = 1 47LIBGCCJIT_SONAME = $(LIBGCCJIT_LINKER_NAME).$(LIBGCCJIT_VERSION_NUM) 48LIBGCCJIT_FILENAME = \ 49 $(LIBGCCJIT_SONAME).$(LIBGCCJIT_MINOR_NUM).$(LIBGCCJIT_RELEASE_NUM) 50 51LIBGCCJIT_LINKER_NAME_SYMLINK = $(LIBGCCJIT_LINKER_NAME) 52LIBGCCJIT_SONAME_SYMLINK = $(LIBGCCJIT_SONAME) 53 54# Conditionalize the use of the LD_VERSION_SCRIPT_OPTION and 55# LD_SONAME_OPTION depending if configure found them, using $(if) 56# We have to define a COMMA here, otherwise the commas in the "true" 57# result are treated as separators by the $(if). 58COMMA := , 59LIBGCCJIT_VERSION_SCRIPT_OPTION = \ 60 $(if $(LD_VERSION_SCRIPT_OPTION),\ 61 -Wl$(COMMA)$(LD_VERSION_SCRIPT_OPTION)$(COMMA)$(srcdir)/jit/libgccjit.map) 62 63LIBGCCJIT_SONAME_OPTION = \ 64 $(if $(LD_SONAME_OPTION), \ 65 -Wl$(COMMA)$(LD_SONAME_OPTION)$(COMMA)$(LIBGCCJIT_SONAME)) 66 67jit: $(LIBGCCJIT_FILENAME) \ 68 $(LIBGCCJIT_SYMLINK) \ 69 $(LIBGCCJIT_LINKER_NAME_SYMLINK) \ 70 $(FULL_DRIVER_NAME) 71 72# Tell GNU make to ignore these if they exist. 73.PHONY: jit 74 75jit_OBJS = attribs.o \ 76 jit/dummy-frontend.o \ 77 jit/libgccjit.o \ 78 jit/jit-logging.o \ 79 jit/jit-recording.o \ 80 jit/jit-playback.o \ 81 jit/jit-result.o \ 82 jit/jit-tempdir.o \ 83 jit/jit-builtins.o \ 84 jit/jit-spec.o \ 85 gcc.o 86 87# Use strict warnings for this front end. 88jit-warn = $(STRICT_WARN) 89 90# We avoid using $(BACKEND) from Makefile.in in order to avoid pulling 91# in main.o 92$(LIBGCCJIT_FILENAME): $(jit_OBJS) \ 93 libbackend.a libcommon-target.a libcommon.a \ 94 $(CPPLIB) $(LIBDECNUMBER) \ 95 $(LIBDEPS) $(srcdir)/jit/libgccjit.map \ 96 $(EXTRA_GCC_OBJS) 97 +$(LLINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ -shared \ 98 $(jit_OBJS) libbackend.a libcommon-target.a libcommon.a \ 99 $(CPPLIB) $(LIBDECNUMBER) $(EXTRA_GCC_LIBS) $(LIBS) $(BACKENDLIBS) \ 100 $(EXTRA_GCC_OBJS) \ 101 $(LIBGCCJIT_VERSION_SCRIPT_OPTION) \ 102 $(LIBGCCJIT_SONAME_OPTION) 103 104$(LIBGCCJIT_SONAME_SYMLINK): $(LIBGCCJIT_FILENAME) 105 ln -sf $(LIBGCCJIT_FILENAME) $(LIBGCCJIT_SONAME_SYMLINK) 106 107$(LIBGCCJIT_LINKER_NAME_SYMLINK): $(LIBGCCJIT_SONAME_SYMLINK) 108 ln -sf $(LIBGCCJIT_SONAME_SYMLINK) $(LIBGCCJIT_LINKER_NAME_SYMLINK) 109 110# 111# Build hooks: 112 113jit.all.cross: 114jit.start.encap: 115jit.rest.encap: 116 117# Documentation build hooks. 118# 119# The documentation can be built using the texinfo toolchain, or 120# the sphinx toolchain 121# 122# The jit documentation is authored using Sphinx, which has numerous 123# advantages over Texinfo, including: 124# 125# * much faster 126# 127# * use of CSS and JS to provide less of a 1990s feel in the generated 128# HTML. 129# 130# * sane, stable HTML page and anchor names 131# 132# * sane HTML navigation: ability to move forward and back in the HTML 133# at every node to read the HTML like a book 134# 135# * syntax-coloring of examples 136# 137# * the ability to "include" fragments of code inline. This is used 138# heavily by the jit docs, so that the example code is shared by both 139# the test suite and the documentation to ensure that the examples 140# appearing in the docs actually compile and work 141# 142# Sphinx is not a "blessed" dependency, and so a prebuilt libgccjit.texinfo 143# file built by Sphinx is checked into the source tree to avoid requiring 144# everyone to have Sphinx installed. 145# 146# This prebuilt libgccjit.texinfo has the "include" fragments "baked in", 147# and so contains the content from the sphinx toolchain, but lacks the 148# syntax-coloring, and the generated HTML is (IMHO) greatly inferior to 149# that generated by Sphinx. 150 151# These targets redirect HTML creation and installation to either 152# jit.sphinx.(install-)html or jit.texinfo.(install-)html. 153jit.html: jit.$(doc_build_sys).html 154jit.install-html: jit.$(doc_build_sys).install-html 155 156# For now, use texinfo for pdf, since the sphinx latex toolchain currently 157# fails for me deep inside pdflatex (see notes below) 158jit.pdf: jit.texinfo.pdf 159jit.install-pdf: jit.texinfo.install-pdf 160 161# Hooks for building docs using texinfo 162JIT_TEXI_FILES = $(srcdir)/jit/docs/_build/texinfo/libgccjit.texi 163 164jit.info: doc/libgccjit.info 165doc/libgccjit.info: $(JIT_TEXI_FILES) 166 if test "x$(BUILD_INFO)" = xinfo; then \ 167 rm -f doc/libgccjit.info*; \ 168 $(MAKEINFO) $(MAKEINFOFLAGS) -I $(gcc_docdir) \ 169 -I $(gcc_docdir)/include -o $@ $<; \ 170 else true; fi 171 172jit.install-info: $(DESTDIR)$(infodir)/libgccjit.info 173 174jit.dvi: doc/libgccjit.dvi 175doc/libgccjit.dvi: $(JIT_TEXI_FILES) 176 $(TEXI2DVI) -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $< 177 178jit.texinfo.html: $(build_htmldir)/jit/index.html 179 180$(build_htmldir)/jit/index.html: $(srcdir)/jit/docs/_build/texinfo/libgccjit.texi 181 $(mkinstalldirs) $(@D) 182 rm -f $(@D)/* 183 $(TEXI2HTML) -I $(gcc_docdir)/include -I $(srcdir)/jit -o $(@D) $< 184 185jit.texinfo.install-html: jit.texinfo.html 186 @$(NORMAL_INSTALL) 187 test -z "$(htmldir)" || $(mkinstalldirs) "$(DESTDIR)$(htmldir)" 188 @for p in $(build_htmldir)/jit; do \ 189 if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \ 190 f=$(html__strip_dir) \ 191 if test -d "$$d$$p"; then \ 192 echo " $(mkinstalldirs) '$(DESTDIR)$(htmldir)/$$f'"; \ 193 $(mkinstalldirs) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \ 194 echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \ 195 $(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \ 196 else \ 197 echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \ 198 $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \ 199 fi; \ 200 done 201 202jit.texinfo.pdf: doc/libgccjit.pdf 203 204doc/libgccjit.pdf: $(JIT_TEXI_FILES) 205 $(TEXI2PDF) -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $< 206 207jit.texinfo.install-pdf: doc/libgccjit.pdf 208 @$(NORMAL_INSTALL) 209 test -z "$(pdfdir)" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)/gcc" 210 @for p in doc/libgccjit.pdf; do \ 211 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ 212 f=$(pdf__strip_dir) \ 213 echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/gcc/$$f'"; \ 214 $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/gcc/$$f"; \ 215 done 216 217# Hooks for building docs using the Sphinx toolchain: 218 219SPHINX_BUILD_DIR=jit/sphinx-build 220 221jit.sphinx.html: 222 mkdir -p $(SPHINX_BUILD_DIR) 223 (cd $(srcdir)/jit/docs && \ 224 make html BUILDDIR=$(PWD)/$(SPHINX_BUILD_DIR) ) 225 226jit_htmldir=$(htmldir)/jit 227 228jit.sphinx.install-html: jit.sphinx.html 229 @$(NORMAL_INSTALL) 230 test -z "$(jit_htmldir)" || $(mkinstalldirs) "$(DESTDIR)$(jit_htmldir)" 231 @for f in $(shell cd $(SPHINX_BUILD_DIR)/html && find) ; do \ 232 if test -f $(SPHINX_BUILD_DIR)/html/"$$f"; then \ 233 $(INSTALL_DATA) $(SPHINX_BUILD_DIR)/html/"$$f" $(DESTDIR)$(jit_htmldir)/"$$f"; \ 234 else \ 235 mkdir $(DESTDIR)$(jit_htmldir)/"$$f"; \ 236 fi; \ 237 done 238 239# (This one is currently failing deep inside pdflatex for me; 240# see https://bugzilla.redhat.com/show_bug.cgi?id=1148845 ) 241jit.sphinx.pdf: $(SPHINX_BUILD_DIR)/latex/libgccjit.pdf 242$(SPHINX_BUILD_DIR)/latex/libgccjit.pdf: 243 mkdir -p $(SPHINX_BUILD_DIR) 244 (cd $(srcdir)/jit/docs && \ 245 make latexpdf BUILDDIR=$(PWD)/$(SPHINX_BUILD_DIR) ) 246 247jit.sphinx.install-pdf: $(SPHINX_BUILD_DIR)/latex/libgccjit.pdf 248 @$(NORMAL_INSTALL) 249 test -z "$(pdfdir)" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)/gcc" 250 @for p in $(SPHINX_BUILD_DIR)/latex/libgccjit.pdf; do \ 251 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ 252 f=$(pdf__strip_dir) \ 253 echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/gcc/$$f'"; \ 254 $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/gcc/$$f"; \ 255 done 256 257jit.srcinfo: 258jit.srcextra: 259 260jit.tags: 261 262jit.man: 263 264jit.srcman: 265 266lang_checks += check-jit 267lang_checks_parallelized += check-jit 268# This number is somewhat arbitrary. Two tests are much slower 269# than all the others (test-combination.c and test-threads.c) so 270# we want them to be placed in different "buckets". 271check_jit_parallelize = 10 272 273# 274# Install hooks: 275jit.install-common: installdirs 276 $(INSTALL_PROGRAM) $(LIBGCCJIT_FILENAME) \ 277 $(DESTDIR)/$(libdir)/$(LIBGCCJIT_FILENAME) 278 ln -sf \ 279 $(LIBGCCJIT_FILENAME) \ 280 $(DESTDIR)/$(libdir)/$(LIBGCCJIT_SONAME_SYMLINK) 281 ln -sf \ 282 $(LIBGCCJIT_SONAME_SYMLINK)\ 283 $(DESTDIR)/$(libdir)/$(LIBGCCJIT_LINKER_NAME_SYMLINK) 284 $(INSTALL_DATA) $(srcdir)/jit/libgccjit.h \ 285 $(DESTDIR)/$(includedir)/libgccjit.h 286 $(INSTALL_DATA) $(srcdir)/jit/libgccjit++.h \ 287 $(DESTDIR)/$(includedir)/libgccjit++.h 288 289jit.install-man: 290 291jit.install-plugin: 292 293jit.uninstall: 294 295# 296# Clean hooks: 297# A lot of the ancillary files are deleted by the main makefile. 298# We just have to delete files specific to us. 299 300jit.mostlyclean: 301 -rm -f $(LIBGCCJIT_FILENAME) $(LIBGCCJIT_SYMLINK) 302 -rm -f $(LIBGCCJIT_LINKER_NAME_SYMLINK) $(FULL_DRIVER_NAME) 303 -rm -f $(LIBGCCJIT_SONAME) 304 -rm -f $(jit_OBJS) 305 306jit.clean: 307 308jit.distclean: 309 310jit.maintainer-clean: 311 312# 313# Stage hooks: 314# The main makefile has already created stage?/jit. 315 316jit.stage1: stage1-start 317 -mv jit/*$(objext) stage1/jit 318jit.stage2: stage2-start 319 -mv jit/*$(objext) stage2/jit 320jit.stage3: stage3-start 321 -mv jit/*$(objext) stage3/jit 322jit.stage4: stage4-start 323 -mv jit/*$(objext) stage4/jit 324jit.stageprofile: stageprofile-start 325 -mv jit/*$(objext) stageprofile/jit 326jit.stagefeedback: stagefeedback-start 327 -mv jit/*$(objext) stagefeedback/jit 328