diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-04-14T19·31+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-04-14T19·31+0200 |
commit | 45fd703bffdf6c56e32f108ce92852d603955045 (patch) | |
tree | 0de3a5646149087568045b4d7a3b475e99917902 | |
parent | 31a1a8ed3c3769eedbbe71fccbb9ae8a7cf448a1 (diff) | |
parent | c6beaf5708c476b00c59513b253fab0d3dac8d71 (diff) |
Merge pull request #844 from nathan7/arm-endianness
Handle ARM triples without an endianness suffix
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 2a043ed13922..1215782a1bde 100644 --- a/configure.ac +++ b/configure.ac @@ -16,6 +16,8 @@ AC_ARG_WITH(system, AC_HELP_STRING([--with-system=SYSTEM], machine_name="i686";; amd64) machine_name="x86_64";; + armv6|armv7) + machine_name="${host_cpu}l";; *) machine_name="$host_cpu";; esac |