mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
The new glibc 2.43 we have in Buildroot since commit [1] introduced changes
around 64B atomics [2], which break the build for PA-RISC 1.0. [3]
This is the only C library we support at this point; forcing soft-float
seems to be a workaround, but as this architecture version was not as
widely used as the later 1.1 and we have no hardware or simulator for it at
this point, remove it completely instead to spare the autobuilders.
Link: 227378b593 [1]
Link: https://sourceware.org/git/?p=glibc.git;a=commit;h=9da0585852e5599ad6e849ccdf2f6f9b04038a3c [2]
Link: https://autobuild.buildroot.org/results/905c7e8db0f8b9014f26925c6e1379a0c54ad446/ [3]
Signed-off-by: Vincent Stehlé <vincent.stehle@laposte.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
300 B
Plaintext
21 lines
300 B
Plaintext
choice
|
|
prompt "Target Architecture Type"
|
|
help
|
|
Architecture type (or version) to use.
|
|
|
|
config BR2_parisc11
|
|
bool "PA-RISC 1.1"
|
|
endchoice
|
|
|
|
config BR2_ARCH
|
|
default "hppa"
|
|
|
|
config BR2_NORMALIZED_ARCH
|
|
default "parisc"
|
|
|
|
config BR2_ENDIAN
|
|
default "BIG"
|
|
|
|
config BR2_READELF_ARCH_NAME
|
|
default "HPPA"
|