diff options
Diffstat (limited to 'tools/ccache/patches')
-rw-r--r-- | tools/ccache/patches/100-honour-copts.patch | 4 | ||||
-rw-r--r-- | tools/ccache/patches/110-disable-assembler-support.patch | 32 |
2 files changed, 1 insertions, 35 deletions
diff --git a/tools/ccache/patches/100-honour-copts.patch b/tools/ccache/patches/100-honour-copts.patch index fc82aa4614..141479519f 100644 --- a/tools/ccache/patches/100-honour-copts.patch +++ b/tools/ccache/patches/100-honour-copts.patch @@ -1,8 +1,6 @@ -diff --git a/ccache.c b/ccache.c -index 88e0ec5..7dffeb4 100644 --- a/ccache.c +++ b/ccache.c -@@ -1762,6 +1762,7 @@ calculate_object_hash(struct args *args, struct mdfour *hash, int direct_mode) +@@ -1790,6 +1790,7 @@ calculate_object_hash(struct args *args, "CPLUS_INCLUDE_PATH", "OBJC_INCLUDE_PATH", "OBJCPLUS_INCLUDE_PATH", // clang diff --git a/tools/ccache/patches/110-disable-assembler-support.patch b/tools/ccache/patches/110-disable-assembler-support.patch deleted file mode 100644 index 3e6cd8cac7..0000000000 --- a/tools/ccache/patches/110-disable-assembler-support.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- a/language.c -+++ b/language.c -@@ -37,14 +37,18 @@ static const struct { - {".m", "objective-c"}, - {".M", "objective-c++"}, - {".mm", "objective-c++"}, -+#if 0 - {".sx", "assembler-with-cpp"}, - {".S", "assembler-with-cpp"}, -+#endif - // Preprocessed: - {".i", "cpp-output"}, - {".ii", "c++-cpp-output"}, - {".mi", "objective-c-cpp-output"}, - {".mii", "objective-c++-cpp-output"}, -+#if 0 - {".s", "assembler"}, -+#endif - // Header file (for precompilation): - {".h", "c-header"}, - {".H", "c++-header"}, -@@ -109,8 +113,10 @@ static const struct { - {"objective-c++-header", "objective-c++-cpp-output"}, - {"objective-c++-cpp-output", "objective-c++-cpp-output"}, - {"cuda", "cuda-output"}, -+#if 0 - {"assembler-with-cpp", "assembler"}, - {"assembler", "assembler"}, -+#endif - {"f77-cpp-input", "f77"}, - {"f77", "f77"}, - #if 0 // Could generate module files, ignore for now! |