diff options
author | Baruch Siach <baruch@tkos.co.il> | 2013-12-30 12:20:32 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-12-31 00:06:58 +0100 |
commit | 02b31c6556b504c327d58e38055844ab9cae9bb3 (patch) | |
tree | 4cf0f55c16733075e2325b2a41046af9cde9de4a | |
parent | c45979c732cb610ad5d54e23dd7d4d49e519d45b (diff) | |
download | buildroot-02b31c6556b504c327d58e38055844ab9cae9bb3.tar.gz buildroot-02b31c6556b504c327d58e38055844ab9cae9bb3.zip |
gstreamer: fix xtensa configure
Disable unaligned access to avoid configure run test.
Fixes
http://autobuild.buildroot.net/results/a0c/a0cca019b0b2f33b6c2be17e5a44a807bbb4dac1/.
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/gstreamer/gstreamer/gstreamer.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/gstreamer/gstreamer/gstreamer.mk b/package/gstreamer/gstreamer/gstreamer.mk index f7919eaa8f..0667e38904 100644 --- a/package/gstreamer/gstreamer/gstreamer.mk +++ b/package/gstreamer/gstreamer/gstreamer.mk @@ -12,7 +12,7 @@ GSTREAMER_INSTALL_STAGING = YES # Checking if unaligned memory access works correctly cannot be done when cross # compiling. For the following architectures there is no information available # in the configure script. -ifeq ($(BR2_avr32),y) +ifeq ($(BR2_avr32)$(BR2_xtensa),y) GSTREAMER_CONF_ENV = as_cv_unaligned_access=no endif ifeq ($(BR2_aarch64),y) |