diff options
author | Ben Elliston <bje@au.ibm.com> | 2004-11-02 00:31:44 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2004-11-02 11:31:44 +1100 |
commit | 91e3536af6eef90e07855ce1b81e4831116365e5 (patch) | |
tree | b6943215abcd328efb2c545c7f85e5e7c1833117 /gcc | |
parent | 9e660c4932b60f28d75ab87e12ac81585e6d7443 (diff) | |
download | gcc-91e3536af6eef90e07855ce1b81e4831116365e5.zip gcc-91e3536af6eef90e07855ce1b81e4831116365e5.tar.gz gcc-91e3536af6eef90e07855ce1b81e4831116365e5.tar.bz2 |
cppdefault.h (cpp_SYSROOT): Remove.
* cppdefault.h (cpp_SYSROOT): Remove.
* cppdefault.c (cpp_SYSROOT): Likewise.
From-SVN: r89972
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cppdefault.c | 6 | ||||
-rw-r--r-- | gcc/cppdefault.h | 2 |
3 files changed, 5 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2610259..a8ae83b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-11-02 Ben Elliston <bje@au.ibm.com> + + * cppdefault.h (cpp_SYSROOT): Remove. + * cppdefault.c (cpp_SYSROOT): Likewise. + 2004-11-01 Andrew MacLeod <amacleod@redhat.com> PR tree-optimization/16447 diff --git a/gcc/cppdefault.c b/gcc/cppdefault.c index cc96da7..1767bbf 100644 --- a/gcc/cppdefault.c +++ b/gcc/cppdefault.c @@ -96,9 +96,3 @@ const size_t cpp_GCC_INCLUDE_DIR_len = sizeof GCC_INCLUDE_DIR - 8; const char cpp_GCC_INCLUDE_DIR[] = ""; const size_t cpp_GCC_INCLUDE_DIR_len = 0; #endif - -#ifdef TARGET_SYSTEM_ROOT -const char *cpp_SYSROOT = TARGET_SYSTEM_ROOT; -#else -const char *cpp_SYSROOT = ""; -#endif diff --git a/gcc/cppdefault.h b/gcc/cppdefault.h index 368e082..140f50b 100644 --- a/gcc/cppdefault.h +++ b/gcc/cppdefault.h @@ -49,6 +49,4 @@ extern const struct default_include cpp_include_defaults[]; extern const char cpp_GCC_INCLUDE_DIR[]; extern const size_t cpp_GCC_INCLUDE_DIR_len; -extern const char *cpp_SYSROOT; - #endif /* ! GCC_CPPDEFAULT_H */ |