mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
Improve boostrap-ubsan config (PR bootstrap/64914).
2018-05-10 Martin Liska <mliska@suse.cz> PR bootstrap/64914 * bootstrap-ubsan.mk: Define UBSAN_BOOTSTRAP. 2018-05-10 Martin Liska <mliska@suse.cz> PR bootstrap/64914 * md5.c: Use strict alignment with UBSAN_BOOTSTRAP. From-SVN: r260112
This commit is contained in:
parent
427a7384b9
commit
84ec5aea48
@ -1,3 +1,8 @@
|
|||||||
|
2018-05-10 Martin Liska <mliska@suse.cz>
|
||||||
|
|
||||||
|
PR bootstrap/64914
|
||||||
|
* bootstrap-ubsan.mk: Define UBSAN_BOOTSTRAP.
|
||||||
|
|
||||||
2018-05-09 Joshua Watt <jpewhacker@gmail.com>
|
2018-05-09 Joshua Watt <jpewhacker@gmail.com>
|
||||||
|
|
||||||
* ax_pthread.m4: Add file.
|
* ax_pthread.m4: Add file.
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
# This option enables -fsanitize=undefined for stage2 and stage3.
|
# This option enables -fsanitize=undefined for stage2 and stage3.
|
||||||
|
|
||||||
STAGE2_CFLAGS += -fsanitize=undefined
|
STAGE2_CFLAGS += -fsanitize=undefined -DUBSAN_BOOTSTRAP
|
||||||
STAGE3_CFLAGS += -fsanitize=undefined
|
STAGE3_CFLAGS += -fsanitize=undefined -DUBSAN_BOOTSTRAP
|
||||||
POSTSTAGE1_LDFLAGS += -fsanitize=undefined -static-libubsan \
|
POSTSTAGE1_LDFLAGS += -fsanitize=undefined -static-libubsan -DUBSAN_BOOTSTRAP \
|
||||||
-B$$r/prev-$(TARGET_SUBDIR)/libsanitizer/ \
|
-B$$r/prev-$(TARGET_SUBDIR)/libsanitizer/ \
|
||||||
-B$$r/prev-$(TARGET_SUBDIR)/libsanitizer/ubsan/ \
|
-B$$r/prev-$(TARGET_SUBDIR)/libsanitizer/ubsan/ \
|
||||||
-B$$r/prev-$(TARGET_SUBDIR)/libsanitizer/ubsan/.libs
|
-B$$r/prev-$(TARGET_SUBDIR)/libsanitizer/ubsan/.libs
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2018-05-10 Martin Liska <mliska@suse.cz>
|
||||||
|
|
||||||
|
PR bootstrap/64914
|
||||||
|
* md5.c: Use strict alignment with UBSAN_BOOTSTRAP.
|
||||||
|
|
||||||
2018-04-30 Daniel van Gerpen <daniel@vangerpen.de>
|
2018-04-30 Daniel van Gerpen <daniel@vangerpen.de>
|
||||||
|
|
||||||
* argv.c (expandargv): Fix memory leak for copied argv.
|
* argv.c (expandargv): Fix memory leak for copied argv.
|
||||||
|
@ -231,7 +231,7 @@ md5_process_bytes (const void *buffer, size_t len, struct md5_ctx *ctx)
|
|||||||
/* Process available complete blocks. */
|
/* Process available complete blocks. */
|
||||||
if (len > 64)
|
if (len > 64)
|
||||||
{
|
{
|
||||||
#if !_STRING_ARCH_unaligned
|
#if !_STRING_ARCH_unaligned || defined UBSAN_BOOTSTRAP
|
||||||
/* To check alignment gcc has an appropriate operator. Other
|
/* To check alignment gcc has an appropriate operator. Other
|
||||||
compilers don't. */
|
compilers don't. */
|
||||||
# if __GNUC__ >= 2
|
# if __GNUC__ >= 2
|
||||||
|
Loading…
Reference in New Issue
Block a user