diff options
author | Alexey Neyman <stilor@att.net> | 2017-08-23 16:05:40 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-08-23 16:05:40 -0700 |
commit | f8d4ce3d0e9b384a66286901f6680c835af76284 (patch) | |
tree | 0efbee3a3f267c83211c65c066b5829dc8b92741 /packages/gcc-linaro | |
parent | 8e8417226d5cdd90896df2c585ad03a995e5e9a1 (diff) | |
download | crosstool-ng-f8d4ce3d0e9b384a66286901f6680c835af76284.tar.gz crosstool-ng-f8d4ce3d0e9b384a66286901f6680c835af76284.tar.bz2 crosstool-ng-f8d4ce3d0e9b384a66286901f6680c835af76284.zip |
Implement a script for checking packages
Then use this script to check that all packages can be extracted and patched.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'packages/gcc-linaro')
-rw-r--r-- | packages/gcc-linaro/6.3-2017.05/1100-ubsan-fix-check-empty-string.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/packages/gcc-linaro/6.3-2017.05/1100-ubsan-fix-check-empty-string.patch b/packages/gcc-linaro/6.3-2017.05/1100-ubsan-fix-check-empty-string.patch deleted file mode 100644 index c0127198..00000000 --- a/packages/gcc-linaro/6.3-2017.05/1100-ubsan-fix-check-empty-string.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 8db2cf6353c13f2a84cbe49b689654897906c499 Mon Sep 17 00:00:00 2001 -From: kyukhin <kyukhin@138bc75d-0d04-0410-961f-82ee72b054a4> -Date: Sat, 3 Sep 2016 10:57:05 +0000 -Subject: [PATCH] gcc/ * ubsan.c (ubsan_use_new_style_p): Fix check for empty - string. - -git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@239971 138bc75d-0d04-0410-961f-82ee72b054a4 - -Upstream-Status: Backport -Signed-off-by: Joshua Lock <joshua.g.lock@intel.com> - ---- - gcc/ubsan.c | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -Index: gcc-6.3.0/gcc/ubsan.c -=================================================================== ---- gcc-6.3.0.orig/gcc/ubsan.c -+++ gcc-6.3.0/gcc/ubsan.c -@@ -1471,7 +1471,7 @@ ubsan_use_new_style_p (location_t loc) - - expanded_location xloc = expand_location (loc); - if (xloc.file == NULL || strncmp (xloc.file, "\1", 2) == 0 -- || xloc.file == '\0' || xloc.file[0] == '\xff' -+ || xloc.file[0] == '\0' || xloc.file[0] == '\xff' - || xloc.file[1] == '\xff') - return false; - |