Commit 9815fafa by Richard Earnshaw Committed by Richard Earnshaw

re PR target/61714 (configure --with-arch and --with-cpu are ignored on aarch64)

	PR target/61714
	* aarch64.h (OPTION_DEFAULT_SPECS): Define.

From-SVN: r212295
parent 253eab4f
2014-07-04 Richard Earnshaw <rearnsha@arm.com>
PR target/61714
* aarch64.h (OPTION_DEFAULT_SPECS): Define.
2014-07-04 Jakub Jelinek <jakub@redhat.com>
PR middle-end/61654
......
......@@ -879,6 +879,13 @@ extern enum aarch64_code_model aarch64_cmodel;
#define ENDIAN_LANE_N(mode, n) \
(BYTES_BIG_ENDIAN ? GET_MODE_NUNITS (mode) - 1 - n : n)
/* Support for a configure-time default CPU, etc. We currently support
--with-arch and --with-cpu. Both are ignored if either is specified
explicitly on the command line at run time. */
#define OPTION_DEFAULT_SPECS \
{"arch", "%{!march=*:%{!mcpu=*:-march=%(VALUE)}}" }, \
{"cpu", "%{!march=*:%{!mcpu=*:-mcpu=%(VALUE)}}" },
#define BIG_LITTLE_SPEC \
" %{mcpu=*:-mcpu=%:rewrite_mcpu(%{mcpu=*:%*})}"
......
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