diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2013-12-04 10:49:14 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2013-12-04 10:49:14 +0000 |
commit | b21fbbd29cee0d18b2e5babf2bee470db98ebb51 (patch) | |
tree | 8384e299ea2272fcb6b76c7a441d7527786db327 /libquadmath | |
parent | a88bf705531216cbdb8637836caf2b228d49d175 (diff) | |
download | gcc-b21fbbd29cee0d18b2e5babf2bee470db98ebb51.zip gcc-b21fbbd29cee0d18b2e5babf2bee470db98ebb51.tar.gz gcc-b21fbbd29cee0d18b2e5babf2bee470db98ebb51.tar.bz2 |
longlong.h: New file.
include/
* longlong.h: New file.
libgcc/
* longlong.h: Delete (moved to include/).
libquadmath/
* Makefile.am (AM_CPPFLAGS): Define.
* Makefile.in: Regenerate.
* printf/gmp-impl.h: Remove path from longlong.h include.
From-SVN: r205659
Diffstat (limited to 'libquadmath')
-rw-r--r-- | libquadmath/ChangeLog | 6 | ||||
-rw-r--r-- | libquadmath/Makefile.am | 1 | ||||
-rw-r--r-- | libquadmath/Makefile.in | 1 | ||||
-rw-r--r-- | libquadmath/printf/gmp-impl.h | 2 |
4 files changed, 9 insertions, 1 deletions
diff --git a/libquadmath/ChangeLog b/libquadmath/ChangeLog index d3c17f6..804a3d5 100644 --- a/libquadmath/ChangeLog +++ b/libquadmath/ChangeLog @@ -1,3 +1,9 @@ +2013-12-04 Richard Sandiford <rdsandiford@googlemail.com> + + * Makefile.am (AM_CPPFLAGS): Define. + * Makefile.in: Regenerate. + * printf/gmp-impl.h: Remove path from longlong.h include. + 2013-09-20 Alan Modra <amodra@gmail.com> * configure: Regenerate. diff --git a/libquadmath/Makefile.am b/libquadmath/Makefile.am index 6c97ee8..6519731 100644 --- a/libquadmath/Makefile.am +++ b/libquadmath/Makefile.am @@ -6,6 +6,7 @@ AUTOMAKE_OPTIONS = 1.8 foreign ## Skip over everything if the quadlib is not available: if BUILD_LIBQUADMATH ACLOCAL_AMFLAGS = -I .. -I ../config +AM_CPPFLAGS = -I $(top_srcdir)/../include ## May be used by toolexeclibdir. gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER) diff --git a/libquadmath/Makefile.in b/libquadmath/Makefile.in index 92c5d25..3317809 100644 --- a/libquadmath/Makefile.in +++ b/libquadmath/Makefile.in @@ -310,6 +310,7 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AUTOMAKE_OPTIONS = 1.8 foreign @BUILD_LIBQUADMATH_TRUE@ACLOCAL_AMFLAGS = -I .. -I ../config +@BUILD_LIBQUADMATH_TRUE@AM_CPPFLAGS = -I $(top_srcdir)/../include @BUILD_LIBQUADMATH_TRUE@gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER) @BUILD_LIBQUADMATH_TRUE@@LIBQUAD_USE_SYMVER_FALSE@version_arg = @BUILD_LIBQUADMATH_TRUE@@LIBQUAD_USE_SYMVER_GNU_TRUE@@LIBQUAD_USE_SYMVER_TRUE@version_arg = -Wl,--version-script=$(srcdir)/quadmath.map diff --git a/libquadmath/printf/gmp-impl.h b/libquadmath/printf/gmp-impl.h index 0f14192..969574c 100644 --- a/libquadmath/printf/gmp-impl.h +++ b/libquadmath/printf/gmp-impl.h @@ -60,7 +60,7 @@ typedef unsigned int UHWtype; #define attribute_hidden #endif -#include "../../libgcc/longlong.h" +#include "longlong.h" /* Copy NLIMBS *limbs* from SRC to DST. */ #define MPN_COPY_INCR(DST, SRC, NLIMBS) \ |