diff options
| author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-08-07 11:08:12 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-08-07 11:08:12 +0200 |
| commit | 38454e10589993e5c7877f2fd904ba07f5865357 (patch) | |
| tree | de4e36f91daf9f60a3e6f34736d793bff75e30b2 /package/libsigsegv | |
| parent | e43875916a6810b4ff8c65e27840f9da15b86c7a (diff) | |
| download | buildroot-38454e10589993e5c7877f2fd904ba07f5865357.tar.gz buildroot-38454e10589993e5c7877f2fd904ba07f5865357.zip | |
libsigsegv: not available on SuperH with uClibc
Like PowerPC, the uClibc port on SuperH doesn't implement ucontext, so
we can't build libsigsegv in such a configuration. Therefore this
commit marks libsigsegv as not available on SuperH/uClibc.
Fixes:
http://autobuild.buildroot.net/results/2128a3507e57e707ee5c726f1ccfddadb7b19112/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libsigsegv')
| -rw-r--r-- | package/libsigsegv/Config.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/libsigsegv/Config.in b/package/libsigsegv/Config.in index 35f6d67b6c..e5224da2ee 100644 --- a/package/libsigsegv/Config.in +++ b/package/libsigsegv/Config.in @@ -3,12 +3,12 @@ config BR2_PACKAGE_LIBSIGSEGV depends on !BR2_xtensa depends on !BR2_arc # no ucontext_i.sym file depends on !BR2_microblaze - # No ucontext support in uclibc for powerpc - depends on !(BR2_powerpc && BR2_TOOLCHAIN_USES_UCLIBC) + # No ucontext support in uclibc for powerpc and superh + depends on !((BR2_powerpc || BR2_sh) && BR2_TOOLCHAIN_USES_UCLIBC) help Library for handling page faults in user mode. http://libsigsegv.sourceforge.net/ comment "libsigsegv needs an (e)glibc toolchain" - depends on BR2_powerpc && BR2_TOOLCHAIN_USES_UCLIBC + depends on (BR2_powerpc || BR2_sh) && BR2_TOOLCHAIN_USES_UCLIBC |

