diff options
author | Baruch Siach <baruch@tkos.co.il> | 2013-12-30 12:00:07 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-12-31 00:06:02 +0100 |
commit | c45979c732cb610ad5d54e23dd7d4d49e519d45b (patch) | |
tree | c87a70656c550d2e6733e454e80868a4a03c90a5 | |
parent | 13d7c78394eed40c5c336fa6cfe4dbe2c94719dd (diff) | |
download | buildroot-c45979c732cb610ad5d54e23dd7d4d49e519d45b.tar.gz buildroot-c45979c732cb610ad5d54e23dd7d4d49e519d45b.zip |
oprofile: disable on xtensa
Missing memory barrier definition. Fixes
http://autobuild.buildroot.net/results/df7/df797a81111fa15de9337adefca05cbac156d0b2/.
Also, add nios2 to the dependencies comment while at it.
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/oprofile/Config.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/oprofile/Config.in b/package/oprofile/Config.in index 2f223c05b3..075e9ea711 100644 --- a/package/oprofile/Config.in +++ b/package/oprofile/Config.in @@ -6,6 +6,7 @@ config BR2_PACKAGE_OPROFILE select BR2_PACKAGE_LIBPFM4 if BR2_powerpc depends on BR2_INSTALL_LIBSTDCPP depends on !BR2_aarch64 && !BR2_nios2 # binutils + depends on !BR2_xtensa # libpfm4 is needed on PowerPC, and requires thread support depends on BR2_TOOLCHAIN_HAS_THREADS || !BR2_powerpc help @@ -25,7 +26,8 @@ config BR2_PACKAGE_OPROFILE libraries, and applications. comment "oprofile needs a toolchain w/ C++" - depends on BR2_USE_MMU && !BR2_aarch64 + depends on BR2_USE_MMU + depends on !BR2_aarch64 && !BR2_nios2 && !BR2_xtensa depends on !BR2_INSTALL_LIBSTDCPP comment "oprofile needs a toolchain w/ threads on PPC" |