diff options
author | 2018-11-22 10:41:49 +0100 | |
---|---|---|
committer | 2018-11-23 10:43:24 +0100 | |
commit | c79f5a8876d8bd4216d0270cca01486baebb2337 (patch) | |
tree | c654ce87d1c08a284d46e388e4f77b7414aa7a37 /board/pc | |
parent | aab652866018e625814b8d715d8b52578e8cc71a (diff) | |
download | buildroot-c79f5a8876d8bd4216d0270cca01486baebb2337.tar.gz buildroot-c79f5a8876d8bd4216d0270cca01486baebb2337.tar.bz2 |
board/pc: use frame pointer unwinder in linux.config
The default ORC unwinder requires libelf to be built. While we could
build libelf using BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF, we probably
don't really need the ORC unwinder in the PC defconfigs, so let's use
the frame pointer unwinder instead.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/123771107
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'board/pc')
-rw-r--r-- | board/pc/linux.config | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/pc/linux.config b/board/pc/linux.config index 0fff117080..f86352e1ea 100644 --- a/board/pc/linux.config +++ b/board/pc/linux.config @@ -82,3 +82,4 @@ CONFIG_EXT4_FS=y CONFIG_FUSE_FS=y CONFIG_TMPFS_POSIX_ACL=y CONFIG_SQUASHFS=y +CONFIG_UNWINDER_FRAME_POINTER=y |