public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] rust: Add rust.install-dvi and rust.install-html rules
@ 2024-04-04 16:27 Christophe Lyon
  2024-04-08 21:26 ` Thomas Schwinge
  2024-04-29 13:24 ` Arthur Cohen
  0 siblings, 2 replies; 5+ messages in thread
From: Christophe Lyon @ 2024-04-04 16:27 UTC (permalink / raw)
  To: gcc-patches, arthur.cohen, herron.philip; +Cc: Christophe Lyon

rust has the (empty) rust.dvi and rust.html rules, but lacks the
(empty) rust.install-dvi and rust.install-html ones.

2024-04-04  Christophe Lyon  <christophe.lyon@linaro.org>

	gcc/rust/
	* Make-lang.in (rust.install-dvi, rust.install-html): New rules.
---
 gcc/rust/Make-lang.in | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gcc/rust/Make-lang.in b/gcc/rust/Make-lang.in
index 4d646018792..4d73412739d 100644
--- a/gcc/rust/Make-lang.in
+++ b/gcc/rust/Make-lang.in
@@ -342,6 +342,8 @@ selftest-rust-valgrind: $(RUST_SELFTEST_DEPS)
 # should have dependencies on info files that should be installed.
 rust.install-info:
 
+rust.install-dvi:
+rust.install-html:
 rust.install-pdf:
 
 # Install man pages for the front end. This target should ignore errors.
-- 
2.34.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] rust: Add rust.install-dvi and rust.install-html rules
  2024-04-04 16:27 [PATCH] rust: Add rust.install-dvi and rust.install-html rules Christophe Lyon
@ 2024-04-08 21:26 ` Thomas Schwinge
  2024-04-29 13:24 ` Arthur Cohen
  1 sibling, 0 replies; 5+ messages in thread
From: Thomas Schwinge @ 2024-04-08 21:26 UTC (permalink / raw)
  To: Christophe Lyon, gcc-patches; +Cc: gcc-rust, arthur.cohen, herron.philip

Hi Christophe!

On 2024-04-04T16:27:19+0000, Christophe Lyon <christophe.lyon@linaro.org> wrote:
> rust has the (empty) rust.dvi and rust.html rules, but lacks the
> (empty) rust.install-dvi and rust.install-html ones.

Thanks, looks good to me.


Grüße
 Thomas


> 2024-04-04  Christophe Lyon  <christophe.lyon@linaro.org>
>
> 	gcc/rust/
> 	* Make-lang.in (rust.install-dvi, rust.install-html): New rules.
> ---
>  gcc/rust/Make-lang.in | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/gcc/rust/Make-lang.in b/gcc/rust/Make-lang.in
> index 4d646018792..4d73412739d 100644
> --- a/gcc/rust/Make-lang.in
> +++ b/gcc/rust/Make-lang.in
> @@ -342,6 +342,8 @@ selftest-rust-valgrind: $(RUST_SELFTEST_DEPS)
>  # should have dependencies on info files that should be installed.
>  rust.install-info:
>  
> +rust.install-dvi:
> +rust.install-html:
>  rust.install-pdf:
>  
>  # Install man pages for the front end. This target should ignore errors.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] rust: Add rust.install-dvi and rust.install-html rules
  2024-04-04 16:27 [PATCH] rust: Add rust.install-dvi and rust.install-html rules Christophe Lyon
  2024-04-08 21:26 ` Thomas Schwinge
@ 2024-04-29 13:24 ` Arthur Cohen
  2024-04-29 13:30   ` Christophe Lyon
  1 sibling, 1 reply; 5+ messages in thread
From: Arthur Cohen @ 2024-04-29 13:24 UTC (permalink / raw)
  To: Christophe Lyon, gcc-patches, herron.philip

Thanks Christophe!

I've added your patch as part of a documentation pull-request I'm adding 
to our dev repo: https://github.com/Rust-GCC/gccrs/pull/2966

It'll be upstreamed with the next batch of commits we send, as soon as 
trunk reopens fully for 15.1.

Best,

Arthur

On 4/4/24 18:27, Christophe Lyon wrote:
> rust has the (empty) rust.dvi and rust.html rules, but lacks the
> (empty) rust.install-dvi and rust.install-html ones.
> 
> 2024-04-04  Christophe Lyon  <christophe.lyon@linaro.org>
> 
> 	gcc/rust/
> 	* Make-lang.in (rust.install-dvi, rust.install-html): New rules.
> ---
>   gcc/rust/Make-lang.in | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/gcc/rust/Make-lang.in b/gcc/rust/Make-lang.in
> index 4d646018792..4d73412739d 100644
> --- a/gcc/rust/Make-lang.in
> +++ b/gcc/rust/Make-lang.in
> @@ -342,6 +342,8 @@ selftest-rust-valgrind: $(RUST_SELFTEST_DEPS)
>   # should have dependencies on info files that should be installed.
>   rust.install-info:
>   
> +rust.install-dvi:
> +rust.install-html:
>   rust.install-pdf:
>   
>   # Install man pages for the front end. This target should ignore errors.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] rust: Add rust.install-dvi and rust.install-html rules
  2024-04-29 13:24 ` Arthur Cohen
@ 2024-04-29 13:30   ` Christophe Lyon
  2024-05-02 12:54     ` Arthur Cohen
  0 siblings, 1 reply; 5+ messages in thread
From: Christophe Lyon @ 2024-04-29 13:30 UTC (permalink / raw)
  To: Arthur Cohen; +Cc: gcc-patches, herron.philip

On Mon, 29 Apr 2024 at 15:24, Arthur Cohen <arthur.cohen@embecosm.com> wrote:
>
> Thanks Christophe!
>
> I've added your patch as part of a documentation pull-request I'm adding
> to our dev repo: https://github.com/Rust-GCC/gccrs/pull/2966
>
> It'll be upstreamed with the next batch of commits we send, as soon as
> trunk reopens fully for 15.1.
>

Thanks!

Note that I already pushed the patch as r14-9865-g73fb0a6153f478
so you may have conflicts (easy to fix ;-) )

Christophe

> Best,
>
> Arthur
>
> On 4/4/24 18:27, Christophe Lyon wrote:
> > rust has the (empty) rust.dvi and rust.html rules, but lacks the
> > (empty) rust.install-dvi and rust.install-html ones.
> >
> > 2024-04-04  Christophe Lyon  <christophe.lyon@linaro.org>
> >
> >       gcc/rust/
> >       * Make-lang.in (rust.install-dvi, rust.install-html): New rules.
> > ---
> >   gcc/rust/Make-lang.in | 2 ++
> >   1 file changed, 2 insertions(+)
> >
> > diff --git a/gcc/rust/Make-lang.in b/gcc/rust/Make-lang.in
> > index 4d646018792..4d73412739d 100644
> > --- a/gcc/rust/Make-lang.in
> > +++ b/gcc/rust/Make-lang.in
> > @@ -342,6 +342,8 @@ selftest-rust-valgrind: $(RUST_SELFTEST_DEPS)
> >   # should have dependencies on info files that should be installed.
> >   rust.install-info:
> >
> > +rust.install-dvi:
> > +rust.install-html:
> >   rust.install-pdf:
> >
> >   # Install man pages for the front end. This target should ignore errors.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] rust: Add rust.install-dvi and rust.install-html rules
  2024-04-29 13:30   ` Christophe Lyon
@ 2024-05-02 12:54     ` Arthur Cohen
  0 siblings, 0 replies; 5+ messages in thread
From: Arthur Cohen @ 2024-05-02 12:54 UTC (permalink / raw)
  To: Christophe Lyon; +Cc: gcc-patches, herron.philip



On 4/29/24 15:30, Christophe Lyon wrote:
> On Mon, 29 Apr 2024 at 15:24, Arthur Cohen <arthur.cohen@embecosm.com> wrote:
>>
>> Thanks Christophe!
>>
>> I've added your patch as part of a documentation pull-request I'm adding
>> to our dev repo: https://github.com/Rust-GCC/gccrs/pull/2966
>>
>> It'll be upstreamed with the next batch of commits we send, as soon as
>> trunk reopens fully for 15.1.
>>
> 
> Thanks!
> 
> Note that I already pushed the patch as r14-9865-g73fb0a6153f478
> so you may have conflicts (easy to fix ;-) )

Ah, perfect! I hadn't noticed you had pushed it already, that's 
completely fine. I think I will be able to fix the conflicts indeed haha.

Thanks a lot :)

Kindly,

Arthur

> 
> Christophe
> 
>> Best,
>>
>> Arthur
>>
>> On 4/4/24 18:27, Christophe Lyon wrote:
>>> rust has the (empty) rust.dvi and rust.html rules, but lacks the
>>> (empty) rust.install-dvi and rust.install-html ones.
>>>
>>> 2024-04-04  Christophe Lyon  <christophe.lyon@linaro.org>
>>>
>>>        gcc/rust/
>>>        * Make-lang.in (rust.install-dvi, rust.install-html): New rules.
>>> ---
>>>    gcc/rust/Make-lang.in | 2 ++
>>>    1 file changed, 2 insertions(+)
>>>
>>> diff --git a/gcc/rust/Make-lang.in b/gcc/rust/Make-lang.in
>>> index 4d646018792..4d73412739d 100644
>>> --- a/gcc/rust/Make-lang.in
>>> +++ b/gcc/rust/Make-lang.in
>>> @@ -342,6 +342,8 @@ selftest-rust-valgrind: $(RUST_SELFTEST_DEPS)
>>>    # should have dependencies on info files that should be installed.
>>>    rust.install-info:
>>>
>>> +rust.install-dvi:
>>> +rust.install-html:
>>>    rust.install-pdf:
>>>
>>>    # Install man pages for the front end. This target should ignore errors.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-05-02 12:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-04 16:27 [PATCH] rust: Add rust.install-dvi and rust.install-html rules Christophe Lyon
2024-04-08 21:26 ` Thomas Schwinge
2024-04-29 13:24 ` Arthur Cohen
2024-04-29 13:30   ` Christophe Lyon
2024-05-02 12:54     ` Arthur Cohen

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 read-only IMAP folder(s) and NNTP newsgroup(s).