All of lore.kernel.org
 help / color / mirror / Atom feed
From: Boqun Feng <boqun.feng@gmail.com>
To: Matthew Maurer <mmaurer@google.com>
Cc: Jamie Cunliffe <Jamie.Cunliffe@arm.com>,
	linux-arm-kernel@lists.infradead.org,
	rust-for-linux@vger.kernel.org, Miguel Ojeda <ojeda@kernel.org>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will@kernel.org>,
	steve.capper@arm.com, Asahi Lina <lina@asahilina.net>,
	andrew@lunn.ch
Subject: Re: [PATCH v4 2/2] arm64: rust: Enable Rust support for AArch64
Date: Tue, 28 Nov 2023 10:29:34 -0800	[thread overview]
Message-ID: <ZWYxjiGRI2Ln8avn@boqun-archlinux> (raw)
In-Reply-To: <CAGSQo01pOixiPXkW867h4vPUaAjtKtHGKhkV-rpifJvKxAf4Ww@mail.gmail.com>

On Tue, Oct 31, 2023 at 11:31:14AM -0700, Matthew Maurer wrote:
> On Fri, Oct 20, 2023 at 8:53 AM Jamie Cunliffe <Jamie.Cunliffe@arm.com> wrote:
> > +KBUILD_RUSTFLAGS += --target=aarch64-unknown-none -Ctarget-feature="-neon"
> If I have aarch64-unknown-none target support already installed in my
> local Rust compiler (either build a custom compiler and enable the
> target, as is my real case, or as the common case, run `rustup target
> add aarch64-unknown-none`), this produces a build error I didn't get
> from the previous target.json approach:
> 
> error[E0464]: multiple candidates for `rmeta` dependency `core` found
>   |
>   = note: candidate #1:
> /usr/local/google/home/mmaurer/android/linux/out/cache/65c6e8ea/common/rust/libcore.rmeta
>   = note: candidate #2:
> /usr/local/google/home/mmaurer/android/linux/prebuilts/rust/linux-x86/1.72.1/lib/rustlib/aarch64-unknown-none/lib/libcore-690113bb4de6f7fb.rlib
> 
> Are we sure that we want to try to use `--target=aarch64-unknown-none`
> rather than a custom target.json? If our libcore and their libcore may
> be compiled differently (and they can be, because we are controlling
> additional compilation options), it seems to me that we ought to be
> defining our own target.
> 

FWIW, the discussion around this:

	https://lore.kernel.org/rust-for-linux/20230126163552.GD29438@willie-the-truck/	

> If we really do want to go ahead with using targets directly form
> rustc, this patch should add `--sysroot=/dev/null` or a similar
> override to `rustc_library_cmd` and `rust_common_cmd` to prevent rustc
> from picking up any already installed sysroot libraries.
> 

Agreed.

Regards,
Boqun

WARNING: multiple messages have this Message-ID (diff)
From: Boqun Feng <boqun.feng@gmail.com>
To: Matthew Maurer <mmaurer@google.com>
Cc: Jamie Cunliffe <Jamie.Cunliffe@arm.com>,
	linux-arm-kernel@lists.infradead.org,
	rust-for-linux@vger.kernel.org, Miguel Ojeda <ojeda@kernel.org>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will@kernel.org>,
	steve.capper@arm.com, Asahi Lina <lina@asahilina.net>,
	andrew@lunn.ch
Subject: Re: [PATCH v4 2/2] arm64: rust: Enable Rust support for AArch64
Date: Tue, 28 Nov 2023 10:29:34 -0800	[thread overview]
Message-ID: <ZWYxjiGRI2Ln8avn@boqun-archlinux> (raw)
In-Reply-To: <CAGSQo01pOixiPXkW867h4vPUaAjtKtHGKhkV-rpifJvKxAf4Ww@mail.gmail.com>

On Tue, Oct 31, 2023 at 11:31:14AM -0700, Matthew Maurer wrote:
> On Fri, Oct 20, 2023 at 8:53 AM Jamie Cunliffe <Jamie.Cunliffe@arm.com> wrote:
> > +KBUILD_RUSTFLAGS += --target=aarch64-unknown-none -Ctarget-feature="-neon"
> If I have aarch64-unknown-none target support already installed in my
> local Rust compiler (either build a custom compiler and enable the
> target, as is my real case, or as the common case, run `rustup target
> add aarch64-unknown-none`), this produces a build error I didn't get
> from the previous target.json approach:
> 
> error[E0464]: multiple candidates for `rmeta` dependency `core` found
>   |
>   = note: candidate #1:
> /usr/local/google/home/mmaurer/android/linux/out/cache/65c6e8ea/common/rust/libcore.rmeta
>   = note: candidate #2:
> /usr/local/google/home/mmaurer/android/linux/prebuilts/rust/linux-x86/1.72.1/lib/rustlib/aarch64-unknown-none/lib/libcore-690113bb4de6f7fb.rlib
> 
> Are we sure that we want to try to use `--target=aarch64-unknown-none`
> rather than a custom target.json? If our libcore and their libcore may
> be compiled differently (and they can be, because we are controlling
> additional compilation options), it seems to me that we ought to be
> defining our own target.
> 

FWIW, the discussion around this:

	https://lore.kernel.org/rust-for-linux/20230126163552.GD29438@willie-the-truck/	

> If we really do want to go ahead with using targets directly form
> rustc, this patch should add `--sysroot=/dev/null` or a similar
> override to `rustc_library_cmd` and `rust_common_cmd` to prevent rustc
> from picking up any already installed sysroot libraries.
> 

Agreed.

Regards,
Boqun

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2023-11-28 18:31 UTC|newest]

Thread overview: 81+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-20 15:50 [PATCH v4 0/2] Rust enablement for AArch64 Jamie Cunliffe
2023-10-20 15:50 ` Jamie Cunliffe
2023-10-20 15:50 ` [PATCH v4 1/2] rust: Refactor the build target to allow the use of builtin targets Jamie Cunliffe
2023-10-20 15:50   ` Jamie Cunliffe
2023-10-22 10:55   ` Catalin Marinas
2023-10-22 10:55     ` Catalin Marinas
2023-10-22 11:07     ` Ingo Molnar
2023-10-22 11:07       ` Ingo Molnar
2023-10-31  0:24       ` Trevor Gross
2023-10-31  0:24         ` Trevor Gross
2023-10-31 11:58         ` Catalin Marinas
2023-10-31 11:58           ` Catalin Marinas
2023-10-31 19:01           ` Trevor Gross
2023-10-31 19:01             ` Trevor Gross
2023-12-12 16:47           ` Will Deacon
2023-12-12 16:47             ` Will Deacon
2024-01-22  9:17   ` Trevor Gross
2024-01-22  9:17     ` Trevor Gross
2024-01-25  3:19     ` WANG Rui
2024-01-25  3:19       ` WANG Rui
2024-01-26 19:37       ` Masahiro Yamada
2024-01-26 19:37         ` Masahiro Yamada
2024-01-27  5:08         ` WANG Rui
2024-01-27  5:08           ` WANG Rui
2024-01-27 17:31           ` Miguel Ojeda
2024-01-27 17:31             ` Miguel Ojeda
2024-01-22  9:29   ` Alice Ryhl
2024-01-22  9:29     ` Alice Ryhl
2024-01-24  9:12   ` Masahiro Yamada
2024-01-24  9:12     ` Masahiro Yamada
2023-10-20 15:50 ` [PATCH v4 2/2] arm64: rust: Enable Rust support for AArch64 Jamie Cunliffe
2023-10-20 15:50   ` Jamie Cunliffe
2023-10-20 16:45   ` Catalin Marinas
2023-10-20 16:45     ` Catalin Marinas
2023-10-21 13:40     ` Miguel Ojeda
2023-10-21 13:40       ` Miguel Ojeda
2023-10-22 10:48       ` Catalin Marinas
2023-10-22 10:48         ` Catalin Marinas
2023-10-22 12:14         ` Miguel Ojeda
2023-10-22 12:14           ` Miguel Ojeda
2023-10-20 17:21   ` Andrew Lunn
2023-10-20 17:21     ` Andrew Lunn
2023-10-20 18:33     ` Boqun Feng
2023-10-20 18:33       ` Boqun Feng
2023-10-20 18:47       ` Andrew Lunn
2023-10-20 18:47         ` Andrew Lunn
2023-10-21 12:50       ` Alice Ryhl
2023-10-21 12:50         ` Alice Ryhl
2023-10-21 13:41       ` Miguel Ojeda
2023-10-21 13:41         ` Miguel Ojeda
2023-10-21 16:03         ` Andrew Lunn
2023-10-21 16:03           ` Andrew Lunn
2023-10-22 12:57           ` Miguel Ojeda
2023-10-22 12:57             ` Miguel Ojeda
2023-10-24  0:57       ` Stephen Boyd
2023-10-24  0:57         ` Stephen Boyd
2023-10-25 23:55         ` Boqun Feng
2023-10-25 23:55           ` Boqun Feng
2023-11-01 15:04       ` Linus Walleij
2023-11-01 15:04         ` Linus Walleij
2023-10-31 18:31   ` Matthew Maurer
2023-10-31 18:31     ` Matthew Maurer
2023-11-28 18:29     ` Boqun Feng [this message]
2023-11-28 18:29       ` Boqun Feng
2023-12-13 19:00     ` Miguel Ojeda
2023-12-13 19:00       ` Miguel Ojeda
2024-01-22  2:01   ` Fabien Parent
2024-01-22  2:01     ` Fabien Parent
2024-01-22  5:27   ` Behme Dirk (CM/ESO2)
2024-01-22  5:27     ` Behme Dirk (CM/ESO2)
2024-01-22  9:30   ` Alice Ryhl
2024-01-22  9:30     ` Alice Ryhl
2024-02-09 17:38 ` [PATCH v4 0/2] Rust enablement " Catalin Marinas
2024-02-09 17:38   ` Catalin Marinas
2024-02-09 21:41   ` Miguel Ojeda
2024-02-09 21:41     ` Miguel Ojeda
  -- strict thread matches above, loose matches on Subject: below --
2023-10-24 14:17 [PATCH v4 2/2] arm64: rust: Enable Rust support " Pratham Patel
2023-10-24 15:19 ` Miguel Ojeda
2023-10-24 15:19   ` Miguel Ojeda
2023-10-25  2:01   ` Pratham Patel
2023-10-25  2:01     ` Pratham Patel

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=ZWYxjiGRI2Ln8avn@boqun-archlinux \
    --to=boqun.feng@gmail.com \
    --cc=Jamie.Cunliffe@arm.com \
    --cc=andrew@lunn.ch \
    --cc=catalin.marinas@arm.com \
    --cc=lina@asahilina.net \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=mmaurer@google.com \
    --cc=ojeda@kernel.org \
    --cc=rust-for-linux@vger.kernel.org \
    --cc=steve.capper@arm.com \
    --cc=will@kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.