On Feb 18 2025, James K. Lowden wrote:

> @@ -2525,6 +2543,36 @@ directories, to avoid imposing the performance cost of
>    missing_languages=`echo "$missing_languages" | sed -e "s/^,//" -e "s/,$//"`
>    stage1_languages=`echo "$stage1_languages" | sed -e "s/^,//" -e "s/,$//"`
>    new_enable_languages=`echo "$new_enable_languages" | sed -e "s/^,//" -e 
> "s/,$//"`
> +  
> +# It's early days for COBOL, and it is known to compile on only some host and
> +# target systems.  We remove COBOL from other builds with a warning.
> +
> +cobol_is_okay_host="no"
> +cobol_is_okay_target="no"
> +
> +case "${host}" in
> +  x86_64-*-*)
> +    cobol_is_okay_host="yes"
> +    ;;
> +  aarch64-*-*)
> +    cobol_is_okay_host="yes"
> +    ;;
> +esac
> +case "${target}" in
> +  x86_64-*-*)
> +    cobol_is_okay_target="yes"
> +    ;;
> +  aarch64-*-*)
> +    cobol_is_okay_target="yes"
> +    ;;
> +esac

libgcobol/configure.tgt says it's supported on powerpc64le.

-- 
Andreas Schwab, SUSE Labs, sch...@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."

Reply via email to