summaryrefslogtreecommitdiff
path: root/package/xvisor
diff options
context:
space:
mode:
authorEric Le Bihan <eric.le.bihan.dev@free.fr>2016-09-24 14:47:40 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-09-25 21:58:07 +0200
commite31047163033e218640145b6f4d6bc5108353e07 (patch)
tree2ae3251cbd7d58782d6e7af6a92191aa0df38519 /package/xvisor
parentd1a7491b8fc6aba900fbaab94295ebf3d12ce209 (diff)
xvisor: needs gcc >= 4.9
xvisor needs gcc >= 4.9, as previous versions trigger an ICE on dwarf2out_frame_debug_adjust_cfa() [1]. Fixes: - http://autobuild.buildroot.net/results/fdb/fdb5a568fb38a9d20780cd37eecb71b60b6ca96a/ [1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60264 Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/xvisor')
-rw-r--r--package/xvisor/Config.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/package/xvisor/Config.in b/package/xvisor/Config.in
index c7a3b49a6..996d37afb 100644
--- a/package/xvisor/Config.in
+++ b/package/xvisor/Config.in
@@ -8,6 +8,7 @@ config BR2_PACKAGE_XVISOR_ARCH_SUPPORTS
menuconfig BR2_PACKAGE_XVISOR
bool "xvisor"
depends on BR2_PACKAGE_XVISOR_ARCH_SUPPORTS
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
help
Xvisor is an open-source type-1 hypervisor, which aims at providing
a monolithic, light-weight, portable, and flexible virtualization
@@ -61,3 +62,7 @@ config BR2_PACKAGE_XVISOR_BUILD_TEST_DTB
Build test device-tree blobs for popular boards.
endif
+
+comment "xvisor needs a toolchain w/ gcc >= 4.9"
+ depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
+ depends on BR2_PACKAGE_XVISOR_ARCH_SUPPORTS