mirror of git://gcc.gnu.org/git/gcc.git
re PR libgomp/28209 (None of the GOMP_* environment variables are documented)
2006-12-21 Daniel Franke <franke.daniel@gmail.com> PR libgomp/28209 * libgomp.texi: New file. * configure.ac: Add --enable-generated-files-in-srcdir option. * Makefile.am: Add info, dvi, pdf, html targets. On request, copy files to srcdir. * Makefile.in: Regenerated. * config.h.in: Regenerated. * testsuite/Makefile.in: Regenerated. * NOTES: Removed. From-SVN: r120122
This commit is contained in:
parent
e9d207d9ac
commit
3721b9e1ee
|
|
@ -1,3 +1,15 @@
|
||||||
|
2006-12-21 Daniel Franke <franke.daniel@gmail.com>
|
||||||
|
|
||||||
|
PR libgomp/28209
|
||||||
|
* libgomp.texi: New file.
|
||||||
|
* configure.ac: Add --enable-generated-files-in-srcdir option.
|
||||||
|
* Makefile.am: Add info, dvi, pdf, html targets. On request, copy
|
||||||
|
files to srcdir.
|
||||||
|
* Makefile.in: Regenerated.
|
||||||
|
* config.h.in: Regenerated.
|
||||||
|
* testsuite/Makefile.in: Regenerated.
|
||||||
|
* NOTES: Removed.
|
||||||
|
|
||||||
2006-12-04 Daniel Franke <franke.daniel@gmail.com>
|
2006-12-04 Daniel Franke <franke.daniel@gmail.com>
|
||||||
|
|
||||||
PR libgomp/29949
|
PR libgomp/29949
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,35 @@ fortran.o: libgomp_f.h
|
||||||
env.lo: libgomp_f.h
|
env.lo: libgomp_f.h
|
||||||
env.o: libgomp_f.h
|
env.o: libgomp_f.h
|
||||||
|
|
||||||
|
|
||||||
# No install-html target
|
# No install-html target
|
||||||
.PHONY: install-html
|
.PHONY: install-html
|
||||||
install-html:
|
install-html:
|
||||||
|
|
||||||
|
|
||||||
|
# Automake Documentation:
|
||||||
|
# If your package has Texinfo files in many directories, you can use the
|
||||||
|
# variable TEXINFO_TEX to tell Automake where to find the canonical
|
||||||
|
# `texinfo.tex' for your package. The value of this variable should be
|
||||||
|
# the relative path from the current `Makefile.am' to `texinfo.tex'.
|
||||||
|
TEXINFO_TEX = ../gcc/doc/include/texinfo.tex
|
||||||
|
|
||||||
|
# Defines info, dvi, pdf and html targets
|
||||||
|
MAKEINFOFLAGS = -I $(srcdir)/../gcc/doc/include
|
||||||
|
info_TEXINFOS = libgomp.texi
|
||||||
|
|
||||||
|
# AM_CONDITIONAL on configure option --generated-files-in-srcdir
|
||||||
|
if GENINSRC
|
||||||
|
STAMP_GENINSRC = stamp-geninsrc
|
||||||
|
else
|
||||||
|
STAMP_GENINSRC =
|
||||||
|
endif
|
||||||
|
|
||||||
|
all-local: $(STAMP_GENINSRC)
|
||||||
|
|
||||||
|
stamp-geninsrc: libgomp.info
|
||||||
|
-cp -p $(top_builddir)/libgomp.info $(srcdir)/libgomp.info
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
CLEANFILES = stamp-geninsrc libgomp.info
|
||||||
|
MAINTAINERCLEANFILES = $(srcdir)/libgomp.info
|
||||||
|
|
|
||||||
|
|
@ -51,6 +51,7 @@ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/../config/depstand.m4 \
|
am__aclocal_m4_deps = $(top_srcdir)/../config/depstand.m4 \
|
||||||
$(top_srcdir)/../config/enable.m4 \
|
$(top_srcdir)/../config/enable.m4 \
|
||||||
$(top_srcdir)/../config/lead-dot.m4 \
|
$(top_srcdir)/../config/lead-dot.m4 \
|
||||||
|
$(top_srcdir)/../config/multi.m4 \
|
||||||
$(top_srcdir)/../config/stdint.m4 \
|
$(top_srcdir)/../config/stdint.m4 \
|
||||||
$(top_srcdir)/../config/tls.m4 $(top_srcdir)/acinclude.m4 \
|
$(top_srcdir)/../config/tls.m4 $(top_srcdir)/acinclude.m4 \
|
||||||
$(top_srcdir)/../libtool.m4 $(top_srcdir)/configure.ac
|
$(top_srcdir)/../libtool.m4 $(top_srcdir)/configure.ac
|
||||||
|
|
@ -68,7 +69,7 @@ am__vpath_adj = case $$p in \
|
||||||
*) f=$$p;; \
|
*) f=$$p;; \
|
||||||
esac;
|
esac;
|
||||||
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
||||||
am__installdirs = "$(DESTDIR)$(toolexeclibdir)" \
|
am__installdirs = "$(DESTDIR)$(toolexeclibdir)" "$(DESTDIR)$(infodir)" \
|
||||||
"$(DESTDIR)$(fincludedir)" "$(DESTDIR)$(libsubincludedir)" \
|
"$(DESTDIR)$(fincludedir)" "$(DESTDIR)$(libsubincludedir)" \
|
||||||
"$(DESTDIR)$(toolexeclibdir)"
|
"$(DESTDIR)$(toolexeclibdir)"
|
||||||
toolexeclibLTLIBRARIES_INSTALL = $(INSTALL)
|
toolexeclibLTLIBRARIES_INSTALL = $(INSTALL)
|
||||||
|
|
@ -98,6 +99,18 @@ MULTIDIRS =
|
||||||
MULTISUBDIR =
|
MULTISUBDIR =
|
||||||
MULTIDO = true
|
MULTIDO = true
|
||||||
MULTICLEAN = true
|
MULTICLEAN = true
|
||||||
|
INFO_DEPS = libgomp.info
|
||||||
|
am__TEXINFO_TEX_DIR = $(srcdir)/../gcc/doc/include
|
||||||
|
DVIS = libgomp.dvi
|
||||||
|
PDFS = libgomp.pdf
|
||||||
|
PSS = libgomp.ps
|
||||||
|
HTMLS = libgomp.html
|
||||||
|
TEXINFOS = libgomp.texi
|
||||||
|
TEXI2DVI = texi2dvi
|
||||||
|
TEXI2PDF = $(TEXI2DVI) --pdf --batch
|
||||||
|
MAKEINFOHTML = $(MAKEINFO) --html
|
||||||
|
AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS)
|
||||||
|
DVIPS = dvips
|
||||||
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
||||||
html-recursive info-recursive install-data-recursive \
|
html-recursive info-recursive install-data-recursive \
|
||||||
install-exec-recursive install-info-recursive \
|
install-exec-recursive install-info-recursive \
|
||||||
|
|
@ -148,6 +161,9 @@ EGREP = @EGREP@
|
||||||
EXEEXT = @EXEEXT@
|
EXEEXT = @EXEEXT@
|
||||||
FC = @FC@
|
FC = @FC@
|
||||||
FCFLAGS = @FCFLAGS@
|
FCFLAGS = @FCFLAGS@
|
||||||
|
GENINSRC_FALSE = @GENINSRC_FALSE@
|
||||||
|
GENINSRC_TRUE = @GENINSRC_TRUE@
|
||||||
|
GREP = @GREP@
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||||
|
|
@ -190,11 +206,8 @@ USE_FORTRAN_TRUE = @USE_FORTRAN_TRUE@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
XCFLAGS = @XCFLAGS@
|
XCFLAGS = @XCFLAGS@
|
||||||
XLDFLAGS = @XLDFLAGS@
|
XLDFLAGS = @XLDFLAGS@
|
||||||
ac_ct_AR = @ac_ct_AR@
|
|
||||||
ac_ct_CC = @ac_ct_CC@
|
ac_ct_CC = @ac_ct_CC@
|
||||||
ac_ct_FC = @ac_ct_FC@
|
ac_ct_FC = @ac_ct_FC@
|
||||||
ac_ct_RANLIB = @ac_ct_RANLIB@
|
|
||||||
ac_ct_STRIP = @ac_ct_STRIP@
|
|
||||||
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||||
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||||
am__include = @am__include@
|
am__include = @am__include@
|
||||||
|
|
@ -210,6 +223,9 @@ build_os = @build_os@
|
||||||
build_vendor = @build_vendor@
|
build_vendor = @build_vendor@
|
||||||
config_path = @config_path@
|
config_path = @config_path@
|
||||||
datadir = @datadir@
|
datadir = @datadir@
|
||||||
|
datarootdir = @datarootdir@
|
||||||
|
docdir = @docdir@
|
||||||
|
dvidir = @dvidir@
|
||||||
enable_shared = @enable_shared@
|
enable_shared = @enable_shared@
|
||||||
enable_static = @enable_static@
|
enable_static = @enable_static@
|
||||||
exec_prefix = @exec_prefix@
|
exec_prefix = @exec_prefix@
|
||||||
|
|
@ -218,6 +234,7 @@ host_alias = @host_alias@
|
||||||
host_cpu = @host_cpu@
|
host_cpu = @host_cpu@
|
||||||
host_os = @host_os@
|
host_os = @host_os@
|
||||||
host_vendor = @host_vendor@
|
host_vendor = @host_vendor@
|
||||||
|
htmldir = @htmldir@
|
||||||
includedir = @includedir@
|
includedir = @includedir@
|
||||||
infodir = @infodir@
|
infodir = @infodir@
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
|
|
@ -225,13 +242,16 @@ libdir = @libdir@
|
||||||
libexecdir = @libexecdir@
|
libexecdir = @libexecdir@
|
||||||
libtool_VERSION = @libtool_VERSION@
|
libtool_VERSION = @libtool_VERSION@
|
||||||
link_gomp = @link_gomp@
|
link_gomp = @link_gomp@
|
||||||
|
localedir = @localedir@
|
||||||
localstatedir = @localstatedir@
|
localstatedir = @localstatedir@
|
||||||
mandir = @mandir@
|
mandir = @mandir@
|
||||||
mkdir_p = @mkdir_p@
|
mkdir_p = @mkdir_p@
|
||||||
multi_basedir = @multi_basedir@
|
multi_basedir = @multi_basedir@
|
||||||
oldincludedir = @oldincludedir@
|
oldincludedir = @oldincludedir@
|
||||||
|
pdfdir = @pdfdir@
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
program_transform_name = @program_transform_name@
|
program_transform_name = @program_transform_name@
|
||||||
|
psdir = @psdir@
|
||||||
sbindir = @sbindir@
|
sbindir = @sbindir@
|
||||||
sharedstatedir = @sharedstatedir@
|
sharedstatedir = @sharedstatedir@
|
||||||
sysconfdir = @sysconfdir@
|
sysconfdir = @sysconfdir@
|
||||||
|
|
@ -266,11 +286,28 @@ libgomp_la_SOURCES = alloc.c barrier.c critical.c env.c error.c iter.c \
|
||||||
nodist_noinst_HEADERS = libgomp_f.h
|
nodist_noinst_HEADERS = libgomp_f.h
|
||||||
nodist_libsubinclude_HEADERS = omp.h
|
nodist_libsubinclude_HEADERS = omp.h
|
||||||
@USE_FORTRAN_TRUE@nodist_finclude_HEADERS = omp_lib.h omp_lib.f90 omp_lib.mod omp_lib_kinds.mod
|
@USE_FORTRAN_TRUE@nodist_finclude_HEADERS = omp_lib.h omp_lib.f90 omp_lib.mod omp_lib_kinds.mod
|
||||||
|
|
||||||
|
# Automake Documentation:
|
||||||
|
# If your package has Texinfo files in many directories, you can use the
|
||||||
|
# variable TEXINFO_TEX to tell Automake where to find the canonical
|
||||||
|
# `texinfo.tex' for your package. The value of this variable should be
|
||||||
|
# the relative path from the current `Makefile.am' to `texinfo.tex'.
|
||||||
|
TEXINFO_TEX = ../gcc/doc/include/texinfo.tex
|
||||||
|
|
||||||
|
# Defines info, dvi, pdf and html targets
|
||||||
|
MAKEINFOFLAGS = -I $(srcdir)/../gcc/doc/include
|
||||||
|
info_TEXINFOS = libgomp.texi
|
||||||
|
@GENINSRC_FALSE@STAMP_GENINSRC =
|
||||||
|
|
||||||
|
# AM_CONDITIONAL on configure option --generated-files-in-srcdir
|
||||||
|
@GENINSRC_TRUE@STAMP_GENINSRC = stamp-geninsrc
|
||||||
|
CLEANFILES = stamp-geninsrc libgomp.info
|
||||||
|
MAINTAINERCLEANFILES = $(srcdir)/libgomp.info
|
||||||
all: config.h
|
all: config.h
|
||||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .c .lo .o .obj
|
.SUFFIXES: .c .dvi .lo .o .obj .ps
|
||||||
am--refresh:
|
am--refresh:
|
||||||
@:
|
@:
|
||||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
||||||
|
|
@ -434,7 +471,101 @@ distclean-multi:
|
||||||
$(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE)
|
$(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE)
|
||||||
maintainer-clean-multi:
|
maintainer-clean-multi:
|
||||||
$(MULTICLEAN) $(AM_MAKEFLAGS) DO=maintainer-clean multi-clean # $(MAKE)
|
$(MULTICLEAN) $(AM_MAKEFLAGS) DO=maintainer-clean multi-clean # $(MAKE)
|
||||||
|
|
||||||
|
libgomp.info: libgomp.texi
|
||||||
|
restore=: && backupdir="$(am__leading_dot)am$$$$" && \
|
||||||
|
rm -rf $$backupdir && mkdir $$backupdir && \
|
||||||
|
if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
|
||||||
|
for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \
|
||||||
|
if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \
|
||||||
|
done; \
|
||||||
|
else :; fi && \
|
||||||
|
if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
|
||||||
|
-o $@ `test -f 'libgomp.texi' || echo '$(srcdir)/'`libgomp.texi; \
|
||||||
|
then \
|
||||||
|
rc=0; \
|
||||||
|
else \
|
||||||
|
rc=$$?; \
|
||||||
|
$$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \
|
||||||
|
fi; \
|
||||||
|
rm -rf $$backupdir; exit $$rc
|
||||||
|
|
||||||
|
libgomp.dvi: libgomp.texi
|
||||||
|
TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
|
||||||
|
MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \
|
||||||
|
$(TEXI2DVI) -o $@ `test -f 'libgomp.texi' || echo '$(srcdir)/'`libgomp.texi
|
||||||
|
|
||||||
|
libgomp.pdf: libgomp.texi
|
||||||
|
TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
|
||||||
|
MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \
|
||||||
|
$(TEXI2PDF) -o $@ `test -f 'libgomp.texi' || echo '$(srcdir)/'`libgomp.texi
|
||||||
|
|
||||||
|
libgomp.html: libgomp.texi
|
||||||
|
rm -rf $(@:.html=.htp)
|
||||||
|
if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
|
||||||
|
-o $(@:.html=.htp) `test -f 'libgomp.texi' || echo '$(srcdir)/'`libgomp.texi; \
|
||||||
|
then \
|
||||||
|
rm -rf $@; \
|
||||||
|
if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \
|
||||||
|
mv $(@:.html=) $@; else mv $(@:.html=.htp) $@; fi; \
|
||||||
|
else \
|
||||||
|
if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \
|
||||||
|
rm -rf $(@:.html=); else rm -Rf $(@:.html=.htp) $@; fi; \
|
||||||
|
exit 1; \
|
||||||
|
fi
|
||||||
|
.dvi.ps:
|
||||||
|
TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
|
||||||
|
$(DVIPS) -o $@ $<
|
||||||
|
|
||||||
uninstall-info-am:
|
uninstall-info-am:
|
||||||
|
@$(PRE_UNINSTALL)
|
||||||
|
@if (install-info --version && \
|
||||||
|
install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \
|
||||||
|
list='$(INFO_DEPS)'; \
|
||||||
|
for file in $$list; do \
|
||||||
|
relfile=`echo "$$file" | sed 's|^.*/||'`; \
|
||||||
|
echo " install-info --info-dir='$(DESTDIR)$(infodir)' --remove '$(DESTDIR)$(infodir)/$$relfile'"; \
|
||||||
|
install-info --info-dir="$(DESTDIR)$(infodir)" --remove "$(DESTDIR)$(infodir)/$$relfile"; \
|
||||||
|
done; \
|
||||||
|
else :; fi
|
||||||
|
@$(NORMAL_UNINSTALL)
|
||||||
|
@list='$(INFO_DEPS)'; \
|
||||||
|
for file in $$list; do \
|
||||||
|
relfile=`echo "$$file" | sed 's|^.*/||'`; \
|
||||||
|
relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
|
||||||
|
(if cd "$(DESTDIR)$(infodir)"; then \
|
||||||
|
echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]"; \
|
||||||
|
rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
|
||||||
|
else :; fi); \
|
||||||
|
done
|
||||||
|
|
||||||
|
dist-info: $(INFO_DEPS)
|
||||||
|
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||||
|
list='$(INFO_DEPS)'; \
|
||||||
|
for base in $$list; do \
|
||||||
|
case $$base in \
|
||||||
|
$(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
|
||||||
|
esac; \
|
||||||
|
if test -f $$base; then d=.; else d=$(srcdir); fi; \
|
||||||
|
for file in $$d/$$base*; do \
|
||||||
|
relfile=`expr "$$file" : "$$d/\(.*\)"`; \
|
||||||
|
test -f $(distdir)/$$relfile || \
|
||||||
|
cp -p $$file $(distdir)/$$relfile; \
|
||||||
|
done; \
|
||||||
|
done
|
||||||
|
|
||||||
|
mostlyclean-aminfo:
|
||||||
|
-rm -rf libgomp.aux libgomp.cp libgomp.cps libgomp.fn libgomp.fns libgomp.ky \
|
||||||
|
libgomp.kys libgomp.log libgomp.pg libgomp.pgs libgomp.tmp \
|
||||||
|
libgomp.toc libgomp.tp libgomp.tps libgomp.vr libgomp.vrs \
|
||||||
|
libgomp.dvi libgomp.pdf libgomp.ps libgomp.html
|
||||||
|
|
||||||
|
maintainer-clean-aminfo:
|
||||||
|
@list='$(INFO_DEPS)'; for i in $$list; do \
|
||||||
|
i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
|
||||||
|
echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \
|
||||||
|
rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
|
||||||
|
done
|
||||||
install-nodist_fincludeHEADERS: $(nodist_finclude_HEADERS)
|
install-nodist_fincludeHEADERS: $(nodist_finclude_HEADERS)
|
||||||
@$(NORMAL_INSTALL)
|
@$(NORMAL_INSTALL)
|
||||||
test -z "$(fincludedir)" || $(mkdir_p) "$(DESTDIR)$(fincludedir)"
|
test -z "$(fincludedir)" || $(mkdir_p) "$(DESTDIR)$(fincludedir)"
|
||||||
|
|
@ -664,6 +795,9 @@ distdir: $(DISTFILES)
|
||||||
|| exit 1; \
|
|| exit 1; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
|
$(MAKE) $(AM_MAKEFLAGS) \
|
||||||
|
top_distdir="$(top_distdir)" distdir="$(distdir)" \
|
||||||
|
dist-info
|
||||||
-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
|
-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
|
||||||
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
||||||
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
||||||
|
|
@ -763,10 +897,11 @@ distcleancheck: distclean
|
||||||
exit 1; } >&2
|
exit 1; } >&2
|
||||||
check-am: all-am
|
check-am: all-am
|
||||||
check: check-recursive
|
check: check-recursive
|
||||||
all-am: Makefile $(LTLIBRARIES) all-multi $(HEADERS) config.h
|
all-am: Makefile $(INFO_DEPS) $(LTLIBRARIES) all-multi $(HEADERS) \
|
||||||
|
config.h all-local
|
||||||
installdirs: installdirs-recursive
|
installdirs: installdirs-recursive
|
||||||
installdirs-am:
|
installdirs-am:
|
||||||
for dir in "$(DESTDIR)$(toolexeclibdir)" "$(DESTDIR)$(fincludedir)" "$(DESTDIR)$(libsubincludedir)" "$(DESTDIR)$(toolexeclibdir)"; do \
|
for dir in "$(DESTDIR)$(toolexeclibdir)" "$(DESTDIR)$(infodir)" "$(DESTDIR)$(fincludedir)" "$(DESTDIR)$(libsubincludedir)" "$(DESTDIR)$(toolexeclibdir)"; do \
|
||||||
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
||||||
done
|
done
|
||||||
install: install-recursive
|
install: install-recursive
|
||||||
|
|
@ -786,6 +921,7 @@ install-strip:
|
||||||
mostlyclean-generic:
|
mostlyclean-generic:
|
||||||
|
|
||||||
clean-generic:
|
clean-generic:
|
||||||
|
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||||
|
|
||||||
distclean-generic:
|
distclean-generic:
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||||
|
|
@ -793,6 +929,7 @@ distclean-generic:
|
||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
@echo "This command is intended for maintainers to use"
|
@echo "This command is intended for maintainers to use"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
||||||
clean: clean-multi clean-recursive
|
clean: clean-multi clean-recursive
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool clean-toolexeclibLTLIBRARIES \
|
clean-am: clean-generic clean-libtool clean-toolexeclibLTLIBRARIES \
|
||||||
|
|
@ -807,15 +944,17 @@ distclean-am: clean-am distclean-compile distclean-generic \
|
||||||
|
|
||||||
dvi: dvi-recursive
|
dvi: dvi-recursive
|
||||||
|
|
||||||
dvi-am:
|
dvi-am: $(DVIS)
|
||||||
|
|
||||||
html: html-recursive
|
html: html-recursive
|
||||||
|
|
||||||
|
html-am: $(HTMLS)
|
||||||
|
|
||||||
info: info-recursive
|
info: info-recursive
|
||||||
|
|
||||||
info-am:
|
info-am: $(INFO_DEPS)
|
||||||
|
|
||||||
install-data-am: install-nodist_fincludeHEADERS \
|
install-data-am: install-info-am install-nodist_fincludeHEADERS \
|
||||||
install-nodist_libsubincludeHEADERS
|
install-nodist_libsubincludeHEADERS
|
||||||
|
|
||||||
install-exec-am: install-multi install-nodist_toolexeclibHEADERS \
|
install-exec-am: install-multi install-nodist_toolexeclibHEADERS \
|
||||||
|
|
@ -823,6 +962,36 @@ install-exec-am: install-multi install-nodist_toolexeclibHEADERS \
|
||||||
|
|
||||||
install-info: install-info-recursive
|
install-info: install-info-recursive
|
||||||
|
|
||||||
|
install-info-am: $(INFO_DEPS)
|
||||||
|
@$(NORMAL_INSTALL)
|
||||||
|
test -z "$(infodir)" || $(mkdir_p) "$(DESTDIR)$(infodir)"
|
||||||
|
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||||
|
list='$(INFO_DEPS)'; \
|
||||||
|
for file in $$list; do \
|
||||||
|
case $$file in \
|
||||||
|
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||||
|
esac; \
|
||||||
|
if test -f $$file; then d=.; else d=$(srcdir); fi; \
|
||||||
|
file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
|
||||||
|
for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
|
||||||
|
$$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
|
||||||
|
if test -f $$ifile; then \
|
||||||
|
relfile=`echo "$$ifile" | sed 's|^.*/||'`; \
|
||||||
|
echo " $(INSTALL_DATA) '$$ifile' '$(DESTDIR)$(infodir)/$$relfile'"; \
|
||||||
|
$(INSTALL_DATA) "$$ifile" "$(DESTDIR)$(infodir)/$$relfile"; \
|
||||||
|
else : ; fi; \
|
||||||
|
done; \
|
||||||
|
done
|
||||||
|
@$(POST_INSTALL)
|
||||||
|
@if (install-info --version && \
|
||||||
|
install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \
|
||||||
|
list='$(INFO_DEPS)'; \
|
||||||
|
for file in $$list; do \
|
||||||
|
relfile=`echo "$$file" | sed 's|^.*/||'`; \
|
||||||
|
echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\
|
||||||
|
install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
|
||||||
|
done; \
|
||||||
|
else : ; fi
|
||||||
install-man:
|
install-man:
|
||||||
|
|
||||||
installcheck-am:
|
installcheck-am:
|
||||||
|
|
@ -832,20 +1001,21 @@ maintainer-clean: maintainer-clean-multi maintainer-clean-recursive
|
||||||
-rm -rf $(top_srcdir)/autom4te.cache
|
-rm -rf $(top_srcdir)/autom4te.cache
|
||||||
-rm -rf ./$(DEPDIR)
|
-rm -rf ./$(DEPDIR)
|
||||||
-rm -f Makefile
|
-rm -f Makefile
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
maintainer-clean-am: distclean-am maintainer-clean-aminfo \
|
||||||
|
maintainer-clean-generic
|
||||||
|
|
||||||
mostlyclean: mostlyclean-multi mostlyclean-recursive
|
mostlyclean: mostlyclean-multi mostlyclean-recursive
|
||||||
|
|
||||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
mostlyclean-am: mostlyclean-aminfo mostlyclean-compile \
|
||||||
mostlyclean-libtool
|
mostlyclean-generic mostlyclean-libtool
|
||||||
|
|
||||||
pdf: pdf-recursive
|
pdf: pdf-recursive
|
||||||
|
|
||||||
pdf-am:
|
pdf-am: $(PDFS)
|
||||||
|
|
||||||
ps: ps-recursive
|
ps: ps-recursive
|
||||||
|
|
||||||
ps-am:
|
ps-am: $(PSS)
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am uninstall-nodist_fincludeHEADERS \
|
uninstall-am: uninstall-info-am uninstall-nodist_fincludeHEADERS \
|
||||||
uninstall-nodist_libsubincludeHEADERS \
|
uninstall-nodist_libsubincludeHEADERS \
|
||||||
|
|
@ -854,11 +1024,12 @@ uninstall-am: uninstall-info-am uninstall-nodist_fincludeHEADERS \
|
||||||
|
|
||||||
uninstall-info: uninstall-info-recursive
|
uninstall-info: uninstall-info-recursive
|
||||||
|
|
||||||
.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am all-multi \
|
.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am all-local \
|
||||||
am--refresh check check-am clean clean-generic clean-libtool \
|
all-multi am--refresh check check-am clean clean-generic \
|
||||||
clean-multi clean-recursive clean-toolexeclibLTLIBRARIES ctags \
|
clean-libtool clean-multi clean-recursive \
|
||||||
ctags-recursive dist dist-all dist-bzip2 dist-gzip dist-shar \
|
clean-toolexeclibLTLIBRARIES ctags ctags-recursive dist \
|
||||||
dist-tarZ dist-zip distcheck distclean distclean-compile \
|
dist-all dist-bzip2 dist-gzip dist-info dist-shar dist-tarZ \
|
||||||
|
dist-zip distcheck distclean distclean-compile \
|
||||||
distclean-generic distclean-hdr distclean-libtool \
|
distclean-generic distclean-hdr distclean-libtool \
|
||||||
distclean-multi distclean-recursive distclean-tags \
|
distclean-multi distclean-recursive distclean-tags \
|
||||||
distcleancheck distdir distuninstallcheck dvi dvi-am html \
|
distcleancheck distdir distuninstallcheck dvi dvi-am html \
|
||||||
|
|
@ -870,12 +1041,12 @@ uninstall-info: uninstall-info-recursive
|
||||||
install-nodist_toolexeclibHEADERS install-strip \
|
install-nodist_toolexeclibHEADERS install-strip \
|
||||||
install-toolexeclibLTLIBRARIES installcheck installcheck-am \
|
install-toolexeclibLTLIBRARIES installcheck installcheck-am \
|
||||||
installdirs installdirs-am maintainer-clean \
|
installdirs installdirs-am maintainer-clean \
|
||||||
maintainer-clean-generic maintainer-clean-multi \
|
maintainer-clean-aminfo maintainer-clean-generic \
|
||||||
maintainer-clean-recursive mostlyclean mostlyclean-compile \
|
maintainer-clean-multi maintainer-clean-recursive mostlyclean \
|
||||||
mostlyclean-generic mostlyclean-libtool mostlyclean-multi \
|
mostlyclean-aminfo mostlyclean-compile mostlyclean-generic \
|
||||||
mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \
|
mostlyclean-libtool mostlyclean-multi mostlyclean-recursive \
|
||||||
uninstall uninstall-am uninstall-info-am \
|
pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
|
||||||
uninstall-nodist_fincludeHEADERS \
|
uninstall-info-am uninstall-nodist_fincludeHEADERS \
|
||||||
uninstall-nodist_libsubincludeHEADERS \
|
uninstall-nodist_libsubincludeHEADERS \
|
||||||
uninstall-nodist_toolexeclibHEADERS \
|
uninstall-nodist_toolexeclibHEADERS \
|
||||||
uninstall-toolexeclibLTLIBRARIES
|
uninstall-toolexeclibLTLIBRARIES
|
||||||
|
|
@ -893,6 +1064,12 @@ env.o: libgomp_f.h
|
||||||
# No install-html target
|
# No install-html target
|
||||||
.PHONY: install-html
|
.PHONY: install-html
|
||||||
install-html:
|
install-html:
|
||||||
|
|
||||||
|
all-local: $(STAMP_GENINSRC)
|
||||||
|
|
||||||
|
stamp-geninsrc: libgomp.info
|
||||||
|
-cp -p $(top_builddir)/libgomp.info $(srcdir)/libgomp.info
|
||||||
|
touch $@
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
.NOEXPORT:
|
.NOEXPORT:
|
||||||
|
|
|
||||||
279
libgomp/NOTES
279
libgomp/NOTES
|
|
@ -1,279 +0,0 @@
|
||||||
Notes on the external ABI presented by libgomp. This ought to get
|
|
||||||
transformed into proper documentation at some point.
|
|
||||||
|
|
||||||
Implementing MASTER construct
|
|
||||||
|
|
||||||
if (omp_get_thread_num () == 0)
|
|
||||||
block
|
|
||||||
|
|
||||||
Alternately, we generate two copies of the parallel subfunction
|
|
||||||
and only include this in the version run by the master thread.
|
|
||||||
Surely that's not worthwhile though...
|
|
||||||
|
|
||||||
Implementing CRITICAL construct
|
|
||||||
|
|
||||||
Without a specified name,
|
|
||||||
|
|
||||||
void GOMP_critical_start (void);
|
|
||||||
void GOMP_critical_end (void);
|
|
||||||
|
|
||||||
so that we don't get COPY relocations from libgomp to the main
|
|
||||||
application.
|
|
||||||
|
|
||||||
With a specified name, use omp_set_lock and omp_unset_lock with
|
|
||||||
name being transformed into a variable declared like
|
|
||||||
|
|
||||||
omp_lock_t gomp_critical_user_<name>
|
|
||||||
__attribute__((common))
|
|
||||||
|
|
||||||
Ideally the ABI would specify that all zero is a valid unlocked
|
|
||||||
state, and so we wouldn't actually need to initialize this at
|
|
||||||
startup.
|
|
||||||
|
|
||||||
Implementing ATOMIC construct
|
|
||||||
|
|
||||||
The target should implement the __sync builtins.
|
|
||||||
|
|
||||||
Failing that we could add
|
|
||||||
|
|
||||||
void GOMP_atomic_enter (void)
|
|
||||||
void GOMP_atomic_exit (void)
|
|
||||||
|
|
||||||
which reuses the regular lock code, but with yet another lock
|
|
||||||
object private to the library.
|
|
||||||
|
|
||||||
Implementing FLUSH construct
|
|
||||||
|
|
||||||
Expands to the __sync_synchronize builtin.
|
|
||||||
|
|
||||||
Implementing BARRIER construct
|
|
||||||
|
|
||||||
void GOMP_barrier (void)
|
|
||||||
|
|
||||||
Implementing THREADPRIVATE construct
|
|
||||||
|
|
||||||
In _most_ cases we can map this directly to __thread. Except
|
|
||||||
that OMP allows constructors for C++ objects. We can either
|
|
||||||
refuse to support this (how often is it used?) or we can
|
|
||||||
implement something akin to .ctors.
|
|
||||||
|
|
||||||
Even more ideally, this ctor feature is handled by extensions
|
|
||||||
to the main pthreads library. Failing that, we can have a set
|
|
||||||
of entry points to register ctor functions to be called.
|
|
||||||
|
|
||||||
Implementing PRIVATE clause
|
|
||||||
|
|
||||||
In association with a PARALLEL, or within the lexical extent
|
|
||||||
of a PARALLEL block, the variable becomes a local variable in
|
|
||||||
the parallel subfunction.
|
|
||||||
|
|
||||||
In association with FOR or SECTIONS blocks, create a new
|
|
||||||
automatic variable within the current function. This preserves
|
|
||||||
the semantic of new variable creation.
|
|
||||||
|
|
||||||
Implementing FIRSTPRIVATE, LASTPRIVATE, COPYIN, COPYPRIVATE clauses
|
|
||||||
|
|
||||||
Seems simple enough for PARALLEL blocks. Create a private
|
|
||||||
struct for communicating between parent and subfunction.
|
|
||||||
In the parent, copy in values for scalar and "small" structs;
|
|
||||||
copy in addresses for others TREE_ADDRESSABLE types. In the
|
|
||||||
subfunction, copy the value into the local variable.
|
|
||||||
|
|
||||||
Not clear at all what to do with bare FOR or SECTION blocks.
|
|
||||||
The only thing I can figure is that we do something like
|
|
||||||
|
|
||||||
|
|
||||||
#pragma omp for firstprivate(x) lastprivate(y)
|
|
||||||
for (int i = 0; i < n; ++i)
|
|
||||||
body;
|
|
||||||
|
|
||||||
=>
|
|
||||||
|
|
||||||
{
|
|
||||||
int x = x, y;
|
|
||||||
|
|
||||||
// for stuff
|
|
||||||
|
|
||||||
if (i == n)
|
|
||||||
y = y;
|
|
||||||
}
|
|
||||||
|
|
||||||
where the "x=x" and "y=y" assignments actually have different
|
|
||||||
uids for the two variables, i.e. not something you could write
|
|
||||||
directly in C. Presumably this only makes sense if the "outer"
|
|
||||||
x and y are global variables.
|
|
||||||
|
|
||||||
COPYPRIVATE would work the same way, except the structure
|
|
||||||
broadcast would have to happen via SINGLE machinery instead.
|
|
||||||
|
|
||||||
Implementing REDUCTION clause
|
|
||||||
|
|
||||||
The private struct mentioned above should have a pointer to
|
|
||||||
an array of the type of the variable, indexed by the thread's
|
|
||||||
team_id. The thread stores its final value into the array,
|
|
||||||
and after the barrier the master thread iterates over the
|
|
||||||
array to collect the values.
|
|
||||||
|
|
||||||
Implementing PARALLEL construct
|
|
||||||
|
|
||||||
#pragma omp parallel
|
|
||||||
{
|
|
||||||
body;
|
|
||||||
}
|
|
||||||
|
|
||||||
=>
|
|
||||||
|
|
||||||
void subfunction (void *data)
|
|
||||||
{
|
|
||||||
use data;
|
|
||||||
body;
|
|
||||||
}
|
|
||||||
|
|
||||||
setup data;
|
|
||||||
GOMP_parallel_start (subfunction, &data, num_threads);
|
|
||||||
subfunction (&data);
|
|
||||||
GOMP_parallel_end ();
|
|
||||||
|
|
||||||
void GOMP_parallel_start (void (*fn)(void *), void *data,
|
|
||||||
unsigned num_threads)
|
|
||||||
|
|
||||||
The FN argument is the subfunction to be run in parallel.
|
|
||||||
|
|
||||||
The DATA argument is a pointer to a structure used to
|
|
||||||
communicate data in and out of the subfunction, as discussed
|
|
||||||
above wrt FIRSTPRIVATE et al.
|
|
||||||
|
|
||||||
The NUM_THREADS argument is 1 if an IF clause is present
|
|
||||||
and false, or the value of the NUM_THREADS clause, if
|
|
||||||
present, or 0.
|
|
||||||
|
|
||||||
The function needs to create the appropriate number of
|
|
||||||
threads and/or launch them from the dock. It needs to
|
|
||||||
create the team structure and assign team ids.
|
|
||||||
|
|
||||||
void GOMP_parallel_end (void)
|
|
||||||
|
|
||||||
Tears down the team and return us to the previous
|
|
||||||
omp_in_parallel() state.
|
|
||||||
|
|
||||||
Implementing FOR construct
|
|
||||||
|
|
||||||
#pragma omp parallel for
|
|
||||||
for (i = lb; i <= ub; i++)
|
|
||||||
body;
|
|
||||||
|
|
||||||
=>
|
|
||||||
|
|
||||||
void subfunction (void *data)
|
|
||||||
{
|
|
||||||
long _s0, _e0;
|
|
||||||
while (GOMP_loop_static_next (&_s0, &_e0))
|
|
||||||
{
|
|
||||||
long _e1 = _e0, i;
|
|
||||||
for (i = _s0; i < _e1; i++)
|
|
||||||
body;
|
|
||||||
}
|
|
||||||
GOMP_loop_end_nowait ();
|
|
||||||
}
|
|
||||||
|
|
||||||
GOMP_parallel_loop_static (subfunction, NULL, 0, lb, ub+1, 1, 0);
|
|
||||||
subfunction (NULL);
|
|
||||||
GOMP_parallel_end ();
|
|
||||||
|
|
||||||
#pragma omp for schedule(runtime)
|
|
||||||
for (i = 0; i < n; i++)
|
|
||||||
body;
|
|
||||||
|
|
||||||
=>
|
|
||||||
|
|
||||||
{
|
|
||||||
long i, _s0, _e0;
|
|
||||||
if (GOMP_loop_runtime_start (0, n, 1, &_s0, &_e0))
|
|
||||||
do {
|
|
||||||
long _e1 = _e0;
|
|
||||||
for (i = _s0, i < _e0; i++)
|
|
||||||
body;
|
|
||||||
} while (GOMP_loop_runtime_next (&_s0, _&e0));
|
|
||||||
GOMP_loop_end ();
|
|
||||||
}
|
|
||||||
|
|
||||||
Note that while it looks like there is trickyness to propagating
|
|
||||||
a non-constant STEP, there isn't really. We're explicitly allowed
|
|
||||||
to evaluate it as many times as we want, and any variables involved
|
|
||||||
should automatically be handled as PRIVATE or SHARED like any other
|
|
||||||
variables. So the expression should remain evaluable in the
|
|
||||||
subfunction. We can also pull it into a local variable if we like,
|
|
||||||
but since its supposed to remain unchanged, we can also not if we like.
|
|
||||||
|
|
||||||
If we have SCHEDULE(STATIC), and no ORDERED, then we ought to be
|
|
||||||
able to get away with no work-sharing context at all, since we can
|
|
||||||
simply perform the arithmetic directly in each thread to divide up
|
|
||||||
the iterations. Which would mean that we wouldn't need to call any
|
|
||||||
of these routines.
|
|
||||||
|
|
||||||
There are separate routines for handling loops with an ORDERED
|
|
||||||
clause. Bookkeeping for that is non-trivial...
|
|
||||||
|
|
||||||
Implementing ORDERED construct
|
|
||||||
|
|
||||||
void GOMP_ordered_start (void)
|
|
||||||
void GOMP_ordered_end (void)
|
|
||||||
|
|
||||||
Implementing SECTIONS construct
|
|
||||||
|
|
||||||
#pragma omp sections
|
|
||||||
{
|
|
||||||
#pragma omp section
|
|
||||||
stmt1;
|
|
||||||
#pragma omp section
|
|
||||||
stmt2;
|
|
||||||
#pragma omp section
|
|
||||||
stmt3;
|
|
||||||
}
|
|
||||||
|
|
||||||
=>
|
|
||||||
|
|
||||||
for (i = GOMP_sections_start (3); i != 0; i = GOMP_sections_next ())
|
|
||||||
switch (i)
|
|
||||||
{
|
|
||||||
case 1:
|
|
||||||
stmt1;
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
stmt2;
|
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
stmt3;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
GOMP_barrier ();
|
|
||||||
|
|
||||||
Implementing SINGLE construct
|
|
||||||
|
|
||||||
#pragma omp single
|
|
||||||
{
|
|
||||||
body;
|
|
||||||
}
|
|
||||||
|
|
||||||
=>
|
|
||||||
|
|
||||||
if (GOMP_single_start ())
|
|
||||||
body;
|
|
||||||
GOMP_barrier ();
|
|
||||||
|
|
||||||
|
|
||||||
#pragma omp single copyprivate(x)
|
|
||||||
body;
|
|
||||||
|
|
||||||
=>
|
|
||||||
|
|
||||||
datap = GOMP_single_copy_start ();
|
|
||||||
if (datap == NULL)
|
|
||||||
{
|
|
||||||
body;
|
|
||||||
data.x = x;
|
|
||||||
GOMP_single_copy_end (&data);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
x = datap->x;
|
|
||||||
GOMP_barrier ();
|
|
||||||
|
|
@ -78,19 +78,19 @@
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#undef PACKAGE_VERSION
|
#undef PACKAGE_VERSION
|
||||||
|
|
||||||
/* The size of a `char', as computed by sizeof. */
|
/* The size of `char', as computed by sizeof. */
|
||||||
#undef SIZEOF_CHAR
|
#undef SIZEOF_CHAR
|
||||||
|
|
||||||
/* The size of a `int', as computed by sizeof. */
|
/* The size of `int', as computed by sizeof. */
|
||||||
#undef SIZEOF_INT
|
#undef SIZEOF_INT
|
||||||
|
|
||||||
/* The size of a `long', as computed by sizeof. */
|
/* The size of `long', as computed by sizeof. */
|
||||||
#undef SIZEOF_LONG
|
#undef SIZEOF_LONG
|
||||||
|
|
||||||
/* The size of a `short', as computed by sizeof. */
|
/* The size of `short', as computed by sizeof. */
|
||||||
#undef SIZEOF_SHORT
|
#undef SIZEOF_SHORT
|
||||||
|
|
||||||
/* The size of a `void *', as computed by sizeof. */
|
/* The size of `void *', as computed by sizeof. */
|
||||||
#undef SIZEOF_VOID_P
|
#undef SIZEOF_VOID_P
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
/* Define to 1 if you have the ANSI C header files. */
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,20 @@ LIBGOMP_ENABLE(linux-futex, default, ,
|
||||||
permit yes|no|default)
|
permit yes|no|default)
|
||||||
AC_MSG_RESULT($enable_linux_futex)
|
AC_MSG_RESULT($enable_linux_futex)
|
||||||
|
|
||||||
|
# We would like our source tree to be readonly. However when releases or
|
||||||
|
# pre-releases are generated, the flex/bison generated files as well as the
|
||||||
|
# various formats of manuals need to be included along with the rest of the
|
||||||
|
# sources. Therefore we have --enable-generated-files-in-srcdir to do
|
||||||
|
# just that.
|
||||||
|
AC_MSG_CHECKING([for --enable-generated-files-in-srcdir])
|
||||||
|
LIBGOMP_ENABLE(generated-files-in-srcdir, no, ,
|
||||||
|
[put copies of generated files in source dir intended for creating source
|
||||||
|
tarballs for users without texinfo bison or flex.],
|
||||||
|
permit yes|no)
|
||||||
|
AC_MSG_RESULT($enable_generated_files_in_srcdir)
|
||||||
|
AM_CONDITIONAL(GENINSRC, test "$enable_generated_files_in_srcdir" = yes)
|
||||||
|
|
||||||
|
|
||||||
# -------
|
# -------
|
||||||
# -------
|
# -------
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -42,6 +42,7 @@ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/../config/depstand.m4 \
|
am__aclocal_m4_deps = $(top_srcdir)/../config/depstand.m4 \
|
||||||
$(top_srcdir)/../config/enable.m4 \
|
$(top_srcdir)/../config/enable.m4 \
|
||||||
$(top_srcdir)/../config/lead-dot.m4 \
|
$(top_srcdir)/../config/lead-dot.m4 \
|
||||||
|
$(top_srcdir)/../config/multi.m4 \
|
||||||
$(top_srcdir)/../config/stdint.m4 \
|
$(top_srcdir)/../config/stdint.m4 \
|
||||||
$(top_srcdir)/../config/tls.m4 $(top_srcdir)/acinclude.m4 \
|
$(top_srcdir)/../config/tls.m4 $(top_srcdir)/acinclude.m4 \
|
||||||
$(top_srcdir)/../libtool.m4 $(top_srcdir)/configure.ac
|
$(top_srcdir)/../libtool.m4 $(top_srcdir)/configure.ac
|
||||||
|
|
@ -79,6 +80,9 @@ EGREP = @EGREP@
|
||||||
EXEEXT = @EXEEXT@
|
EXEEXT = @EXEEXT@
|
||||||
FC = @FC@
|
FC = @FC@
|
||||||
FCFLAGS = @FCFLAGS@
|
FCFLAGS = @FCFLAGS@
|
||||||
|
GENINSRC_FALSE = @GENINSRC_FALSE@
|
||||||
|
GENINSRC_TRUE = @GENINSRC_TRUE@
|
||||||
|
GREP = @GREP@
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||||
|
|
@ -121,11 +125,8 @@ USE_FORTRAN_TRUE = @USE_FORTRAN_TRUE@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
XCFLAGS = @XCFLAGS@
|
XCFLAGS = @XCFLAGS@
|
||||||
XLDFLAGS = @XLDFLAGS@
|
XLDFLAGS = @XLDFLAGS@
|
||||||
ac_ct_AR = @ac_ct_AR@
|
|
||||||
ac_ct_CC = @ac_ct_CC@
|
ac_ct_CC = @ac_ct_CC@
|
||||||
ac_ct_FC = @ac_ct_FC@
|
ac_ct_FC = @ac_ct_FC@
|
||||||
ac_ct_RANLIB = @ac_ct_RANLIB@
|
|
||||||
ac_ct_STRIP = @ac_ct_STRIP@
|
|
||||||
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||||
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||||
am__include = @am__include@
|
am__include = @am__include@
|
||||||
|
|
@ -141,6 +142,9 @@ build_os = @build_os@
|
||||||
build_vendor = @build_vendor@
|
build_vendor = @build_vendor@
|
||||||
config_path = @config_path@
|
config_path = @config_path@
|
||||||
datadir = @datadir@
|
datadir = @datadir@
|
||||||
|
datarootdir = @datarootdir@
|
||||||
|
docdir = @docdir@
|
||||||
|
dvidir = @dvidir@
|
||||||
enable_shared = @enable_shared@
|
enable_shared = @enable_shared@
|
||||||
enable_static = @enable_static@
|
enable_static = @enable_static@
|
||||||
exec_prefix = @exec_prefix@
|
exec_prefix = @exec_prefix@
|
||||||
|
|
@ -149,6 +153,7 @@ host_alias = @host_alias@
|
||||||
host_cpu = @host_cpu@
|
host_cpu = @host_cpu@
|
||||||
host_os = @host_os@
|
host_os = @host_os@
|
||||||
host_vendor = @host_vendor@
|
host_vendor = @host_vendor@
|
||||||
|
htmldir = @htmldir@
|
||||||
includedir = @includedir@
|
includedir = @includedir@
|
||||||
infodir = @infodir@
|
infodir = @infodir@
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
|
|
@ -156,13 +161,16 @@ libdir = @libdir@
|
||||||
libexecdir = @libexecdir@
|
libexecdir = @libexecdir@
|
||||||
libtool_VERSION = @libtool_VERSION@
|
libtool_VERSION = @libtool_VERSION@
|
||||||
link_gomp = @link_gomp@
|
link_gomp = @link_gomp@
|
||||||
|
localedir = @localedir@
|
||||||
localstatedir = @localstatedir@
|
localstatedir = @localstatedir@
|
||||||
mandir = @mandir@
|
mandir = @mandir@
|
||||||
mkdir_p = @mkdir_p@
|
mkdir_p = @mkdir_p@
|
||||||
multi_basedir = @multi_basedir@
|
multi_basedir = @multi_basedir@
|
||||||
oldincludedir = @oldincludedir@
|
oldincludedir = @oldincludedir@
|
||||||
|
pdfdir = @pdfdir@
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
program_transform_name = @program_transform_name@
|
program_transform_name = @program_transform_name@
|
||||||
|
psdir = @psdir@
|
||||||
sbindir = @sbindir@
|
sbindir = @sbindir@
|
||||||
sharedstatedir = @sharedstatedir@
|
sharedstatedir = @sharedstatedir@
|
||||||
sysconfdir = @sysconfdir@
|
sysconfdir = @sysconfdir@
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue