diff options
author | Zakharov Vlad <Vladislav.Zakharov@synopsys.com> | 2016-06-15 13:28:21 +0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-06-15 23:10:31 +0200 |
commit | 1e03b0e1e6f7577c4c7a2310f0034eed9c5203ec (patch) | |
tree | 70f085102f861c0c79a46b0d30e92ac6933901b5 /package/gdb | |
parent | c51b20755bdf7a49a176aa50aa88fcb7af698c25 (diff) | |
download | buildroot-1e03b0e1e6f7577c4c7a2310f0034eed9c5203ec.tar.gz buildroot-1e03b0e1e6f7577c4c7a2310f0034eed9c5203ec.zip |
gdb: do not allow selecting the simulator on ARC
Forbid BR2_PACKAGE_HOST_GDB_SIM selection for the ARC architecture,
since the simulator is not supported on ARC.
Fixes:
http://autobuild.buildroot.net/results/4a1cd9a0beaff34830fd0f0ec47c30eda0a42d54/
Signed-off-by: Vlad Zakharov <vzakhar@synopsys.com>
[Thomas: tweak commit log.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/gdb')
-rw-r--r-- | package/gdb/Config.in.host | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/gdb/Config.in.host b/package/gdb/Config.in.host index 7b319f5c8d..081073b9a7 100644 --- a/package/gdb/Config.in.host +++ b/package/gdb/Config.in.host @@ -25,6 +25,7 @@ config BR2_PACKAGE_HOST_GDB_PYTHON config BR2_PACKAGE_HOST_GDB_SIM bool "Simulator support" + depends on !BR2_arc help This option enables the simulator support in the cross gdb. |