qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Thomas Huth <thuth@redhat.com>
To: Joelle van Dyne <j@getutm.app>, qemu-devel@nongnu.org
Subject: Re: [PATCH v4 2/7] configure: cross-compiling with empty cross_prefix
Date: Mon, 9 Nov 2020 19:52:08 +0100	[thread overview]
Message-ID: <7d6400c3-84b3-a825-1e10-6cc364cd41de@redhat.com> (raw)
In-Reply-To: <20201108052605.45840-3-j@getutm.app>

On 08/11/2020 06.26, Joelle van Dyne wrote:
> The iOS toolchain does not use the host prefix naming convention. So we need
> to enable cross-compile options while allowing the PREFIX to be blank.
> 
> Signed-off-by: Joelle van Dyne <j@getutm.app>
> ---
>  configure | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/configure b/configure
> index 97a879808d..fda7a875f7 100755
> --- a/configure
> +++ b/configure
> @@ -234,6 +234,7 @@ cpu=""
>  iasl="iasl"
>  interp_prefix="/usr/gnemul/qemu-%M"
>  static="no"
> +cross_compile="no"
>  cross_prefix=""
>  audio_drv_list=""
>  block_drv_rw_whitelist=""
> @@ -458,6 +459,7 @@ for opt do
>    optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
>    case "$opt" in
>    --cross-prefix=*) cross_prefix="$optarg"
> +                    cross_compile="yes"
>    ;;
>    --cc=*) CC="$optarg"
>    ;;
> @@ -1657,7 +1659,7 @@ $(echo Available targets: $default_target_list | \
>    --target-list-exclude=LIST exclude a set of targets from the default target-list
>  
>  Advanced options (experts only):
> -  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]
> +  --cross-prefix=PREFIX    use PREFIX for compile tools, PREFIX can be blank [$cross_prefix]
>    --cc=CC                  use C compiler CC [$cc]
>    --iasl=IASL              use ACPI compiler IASL [$iasl]
>    --host-cc=CC             use C compiler CC [$host_cc] for code run at
> @@ -6933,7 +6935,7 @@ if has $sdl2_config; then
>  fi
>  echo "strip = [$(meson_quote $strip)]" >> $cross
>  echo "windres = [$(meson_quote $windres)]" >> $cross
> -if test -n "$cross_prefix"; then
> +if test "$cross_compile" = "yes"; then
>      cross_arg="--cross-file config-meson.cross"
>      echo "[host_machine]" >> $cross
>      if test "$mingw32" = "yes" ; then
> 

Reviewed-by: Thomas Huth <thuth@redhat.com>



  reply	other threads:[~2020-11-09 18:53 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-08  5:25 [PATCH v4 0/7] iOS and Apple Silicon host support Joelle van Dyne
2020-11-08  5:25 ` [PATCH v4 1/7] configure: option to disable host block devices Joelle van Dyne
2020-11-08  5:26 ` [PATCH v4 2/7] configure: cross-compiling with empty cross_prefix Joelle van Dyne
2020-11-09 18:52   ` Thomas Huth [this message]
2020-11-08  5:26 ` [PATCH v4 3/7] qemu: add support for iOS host Joelle van Dyne
2020-11-08  5:26 ` [PATCH v4 4/7] coroutine: add libucontext as external library Joelle van Dyne
2020-11-08 15:46   ` Philippe Mathieu-Daudé
2020-11-08 22:51     ` Joelle van Dyne
2020-11-08  5:26 ` [PATCH v4 5/7] slirp: update build flags for iOS resolv fix Joelle van Dyne
2020-11-08  5:26 ` [PATCH v4 6/7] tcg: implement JIT for iOS and Apple Silicon Joelle van Dyne
2020-11-08  5:26 ` [PATCH v4 7/7] block: check availablity for preadv/pwritev on mac Joelle van Dyne

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7d6400c3-84b3-a825-1e10-6cc364cd41de@redhat.com \
    --to=thuth@redhat.com \
    --cc=j@getutm.app \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).