diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2021-03-24 10:32:50 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2021-04-13 12:55:33 +0200 |
commit | 80bd01ef831fbbb08f883a76576eba128ca1c385 (patch) | |
tree | 94f9b4f7728aad142e902ed37121a7133bc90f14 /newlib/libc/stdio64 | |
parent | 20d00819984058e439cfe40818f81d7315c89201 (diff) | |
download | newlib-80bd01ef831fbbb08f883a76576eba128ca1c385.zip newlib-80bd01ef831fbbb08f883a76576eba128ca1c385.tar.gz newlib-80bd01ef831fbbb08f883a76576eba128ca1c385.tar.bz2 |
Add build mechanism to share common header files between machines
So far the build mechanism in newlib only allowed to either define
machine-specific headers, or headers shared between all machines.
In some cases, architectures are sufficiently alike to share header
files between them, but not with other architectures. A good example
is ix86 vs. x86_64, which share certain traits with each other, but
not with other architectures.
Introduce a new configure variable called "shared_machine_dir". This
dir can then be used for headers shared between architectures.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'newlib/libc/stdio64')
-rw-r--r-- | newlib/libc/stdio64/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/newlib/libc/stdio64/Makefile.in b/newlib/libc/stdio64/Makefile.in index d002af6..85a15b6 100644 --- a/newlib/libc/stdio64/Makefile.in +++ b/newlib/libc/stdio64/Makefile.in @@ -255,6 +255,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ +shared_machine_dir = @shared_machine_dir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ subdirs = @subdirs@ |