diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-13 12:30:08 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-13 12:30:08 +0000 |
commit | 8dc9e4a8a3ab1ecd26a97b41d38dee21cb0a26a9 (patch) | |
tree | 058b3d48b83ef22f1142533c55fcb70e8e4bd1dd /libio | |
parent | 49a11e62e10b070487a4a0df51038fa05ce50ebf (diff) | |
download | gcc-8dc9e4a8a3ab1ecd26a97b41d38dee21cb0a26a9.tar.gz |
* config/mpeix.mt: New for MPEiX port.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29374 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libio')
-rw-r--r-- | libio/ChangeLog | 4 | ||||
-rw-r--r-- | libio/config/mpeix.mt | 20 |
2 files changed, 24 insertions, 0 deletions
diff --git a/libio/ChangeLog b/libio/ChangeLog index b91b5030803..f4611ad7250 100644 --- a/libio/ChangeLog +++ b/libio/ChangeLog @@ -1,3 +1,7 @@ +Mon Sep 13 06:30:14 1999 Mark Klein <mklein@dis.com> + + * config/mpeix.mt: New for MPEiX port. + Sat Sep 4 18:00:00 PDT 1999 Mark Klein (mklein@dis.com) * configure.in: Add mpeix.mt make fragment. diff --git a/libio/config/mpeix.mt b/libio/config/mpeix.mt new file mode 100644 index 00000000000..93199398f35 --- /dev/null +++ b/libio/config/mpeix.mt @@ -0,0 +1,20 @@ +# Flags to pass to gen-params when building _G_config.h. +# For example: G_CONFIG_ARGS = size_t="unsigned long" +G_CONFIG_ARGS = DOLLAR_IN_LABEL=1 + +# +# gen-params tries to determine whether or not printf_fp exists by +# simply compiling a test program. Since MPE is by definition a +# shared runtime environment, this won't work unless the resulting +# program is run. Simply run _G_config.h through a sed script to +# update the values accordingly. +# +_G_CONFIG_H = stmp-Gconfig + +stmp-Gconfig: _G_config.h + sed -e "s/_G_HAVE_PRINTF_FP 1/_G_HAVE_PRINTF_FP 0/" \ + -e "s/_G_HAVE_LONG_DOUBLE_IO 1/_G_HAVE_LONG_DOUBLE_IO 0/" \ + <_G_config.h > tmp-config.h + mv -f tmp-config.h _G_config.h + touch stmp-Gconfig + $(MAKE) $(FLAGS_TO_PASS) _G_CONFIG_H=_G_config.h all |