Add support for the Precision Architecture (a.k.a. PA-RISC), a 32-bit architecture developed by Hewlett Packard. While at it, add this arch to myself in DEVELOPERS. Signed-off-by: Vincent Stehlé <vincent.stehle@laposte.net> Cc: Romain Naour <romain.naour@gmail.com> Cc: Julien Olivain <ju.o@free.fr> [Julien: arch "arch/" prefix in commit title] Signed-off-by: Julien Olivain <ju.o@free.fr>
14 lines
183 B
Plaintext
14 lines
183 B
Plaintext
#
|
|
# Configure the GCC_TARGET_ARCH variable.
|
|
#
|
|
|
|
ifeq ($(BR2_hppa),y)
|
|
|
|
ifeq ($(BR2_parisc10),y)
|
|
GCC_TARGET_ARCH := 1.0
|
|
else ifeq ($(BR2_parisc11),y)
|
|
GCC_TARGET_ARCH := 1.1
|
|
endif
|
|
|
|
endif
|