Commit 8d345a96 by Rainer Orth Committed by Rainer Orth

Fix %e in Solaris specs

	* config/sol2.h (LIBTSAN_EARLY_SPEC): Remove : after %e.
	(LIBLSAN_EARLY_SPEC): Likewise.
	* config/i386/sol2.h (ASAN_REJECT_SPEC): Likewise.

From-SVN: r271410
parent e5178b98
2019-05-20 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* config/sol2.h (LIBTSAN_EARLY_SPEC): Remove : after %e.
(LIBLSAN_EARLY_SPEC): Likewise.
* config/i386/sol2.h (ASAN_REJECT_SPEC): Likewise.
2019-05-20 Martin Liska <mliska@suse.cz> 2019-05-20 Martin Liska <mliska@suse.cz>
* config/i386/i386.c (ix86_libc_has_fast_function): * config/i386/i386.c (ix86_libc_has_fast_function):
......
...@@ -241,7 +241,7 @@ along with GCC; see the file COPYING3. If not see ...@@ -241,7 +241,7 @@ along with GCC; see the file COPYING3. If not see
/* -fsanitize=address is currently only supported for 32-bit. */ /* -fsanitize=address is currently only supported for 32-bit. */
#define ASAN_REJECT_SPEC \ #define ASAN_REJECT_SPEC \
DEF_ARCH64_SPEC("%e:-fsanitize=address is not supported in this configuration") DEF_ARCH64_SPEC("%e-fsanitize=address is not supported in this configuration")
#undef NO_PROFILE_COUNTERS #undef NO_PROFILE_COUNTERS
......
...@@ -260,9 +260,9 @@ along with GCC; see the file COPYING3. If not see ...@@ -260,9 +260,9 @@ along with GCC; see the file COPYING3. If not see
/* Error out on -fsanitize=thread|leak. */ /* Error out on -fsanitize=thread|leak. */
#define LIBTSAN_EARLY_SPEC "\ #define LIBTSAN_EARLY_SPEC "\
%e:-fsanitize=thread is not supported in this configuration" %e-fsanitize=thread is not supported in this configuration"
#define LIBLSAN_EARLY_SPEC "\ #define LIBLSAN_EARLY_SPEC "\
%e:-fsanitize=leak is not supported in this configuration" %e-fsanitize=leak is not supported in this configuration"
/* We don't use the standard svr4 STARTFILE_SPEC because it's wrong for us. */ /* We don't use the standard svr4 STARTFILE_SPEC because it's wrong for us. */
#undef STARTFILE_SPEC #undef STARTFILE_SPEC
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment