diff options
author | Romain Naour <romain.naour@smile.fr> | 2022-04-08 09:28:23 +0200 |
---|---|---|
committer | Romain Naour <romain.naour@smile.fr> | 2022-04-08 09:28:23 +0200 |
commit | 83681c3990ccdf799c236573bc387fe6ac952e0c (patch) | |
tree | 960b73bcc6740764849b0bf99c878f438b40d82f /gcc | |
parent | b829e7c0a21c94672d09732e4a791e0471f41c13 (diff) | |
download | gcc-83681c3990ccdf799c236573bc387fe6ac952e0c.zip gcc-83681c3990ccdf799c236573bc387fe6ac952e0c.tar.gz gcc-83681c3990ccdf799c236573bc387fe6ac952e0c.tar.bz2 |
gcc/rust/Make-lang.in: add missing rust compiler driver
When building gccrs with Buildroot toolchain infrastructure, the gccrs
compiler driver is missing when intalling gcc.
This is due to missing depedency on gccrs$(exeext) in rust.all.cross
target.
Signed-off-by: Romain Naour <romain.naour@smile.fr>
---
We probably needs gccrs-cross target like other supported languages.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/rust/Make-lang.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/Make-lang.in b/gcc/rust/Make-lang.in index cd40efb..6240011 100644 --- a/gcc/rust/Make-lang.in +++ b/gcc/rust/Make-lang.in @@ -140,7 +140,7 @@ check_rust_parallelize = 10 # was specified as a configure option. rust.srcextra: -rust.all.cross: +rust.all.cross: gccrs$(exeext) # idk what this does but someone used it rust.start.encap: gccrs$(exeext) |