[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] build-aux/config.guess: Add current Haiku targets arm,arm64,
From: |
Alexander von Gluck IV |
Subject: |
Re: [PATCH] build-aux/config.guess: Add current Haiku targets arm,arm64,riscv64 |
Date: |
Mon, 23 May 2022 14:23:18 +0000 |
May 23, 2022 9:18 AM, "Alexander von Gluck IV" <kallisti5@unixzen.com> wrote:
> ---
> build-aux/config.guess | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/build-aux/config.guess b/build-aux/config.guess
> index 1972fda8..7b36c8a9 100755
> --- a/build-aux/config.guess
> +++ b/build-aux/config.guess
> @@ -1325,9 +1325,18 @@ EOF
> BePC:Haiku:*:*) # Haiku running on Intel PC compatible.
> echo i586-pc-haiku
> exit ;;
> + arm:Haiku:*:*)
> + echo arm-unknown-haiku
> + exit ;;
> + arm64:Haiku:*:*)
> + echo aarch64-unknown-haiku
> + exit ;;
> x86_64:Haiku:*:*)
> echo x86_64-unknown-haiku
> exit ;;
> + riscv64:Haiku:*:*)
> + echo riscv64-unknown-haiku
> + exit;;
> SX-4:SUPER-UX:*:*)
> echo sx4-nec-superux"$UNAME_RELEASE"
> exit ;;
> --
> 2.36.0
Background: These architecture ports of Haiku are starting to show life,
i've already run into multiple pieces of software throwing:
"configure: error: cannot guess build type; you must specify one"
For any future lurkers, the workaround until this is merged and software
packages update is passing the following to configure:
--build=riscv64-unknown-haiku , etc.
-- Alex