From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: [PATCH] make.sh: Introduce RUSTFLAGS Date: Mon, 09 Dec 2019 15:20:32 +0000 Message-ID: <0C253DDA-5BAF-43FB-9FDD-60413ED04151@ipfire.org> In-Reply-To: <20191207183045.4244-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8826804111780353958==" List-Id: --===============8826804111780353958== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Reviewed-by: Michael Tremer > On 7 Dec 2019, at 18:30, Stefan Schantl wrote: > > This allows to set arch-specific FLAGS when dealing with > software written in rust. > > Signed-off-by: Stefan Schantl > --- > make.sh | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/make.sh b/make.sh > index 771c5ff89..2cdbe154a 100755 > --- a/make.sh > +++ b/make.sh > @@ -174,6 +174,7 @@ configure_build() { > CROSSTARGET="${build_arch}-cross-linux-gnueabi" > BUILD_PLATFORM="arm" > CFLAGS_ARCH="-march=armv5te -mfloat-abi=soft -fomit-frame-pointer" > + RUSTFLAGS="-Ccodegen-units=1" > ;; > > *) > @@ -462,7 +463,7 @@ prepareenv() { > # Setup environment > set +h > LC_ALL=POSIX > - export LFS LC_ALL CFLAGS CXXFLAGS DEFAULT_PARALLELISM > + export LFS LC_ALL CFLAGS CXXFLAGS DEFAULT_PARALLELISM RUSTFLAGS > unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD > > # Make some extra directories > @@ -547,6 +548,7 @@ enterchroot() { > CONFIG_ROOT="${CONFIG_ROOT}" \ > CFLAGS="${CFLAGS} ${HARDENING_CFLAGS}" \ > CXXFLAGS="${CXXFLAGS} ${HARDENING_CFLAGS}" \ > + RUSTFLAGS="${RUSTFLAGS}" \ > BUILDTARGET="${BUILDTARGET}" \ > CROSSTARGET="${CROSSTARGET}" \ > BUILD_ARCH="${BUILD_ARCH}" \ > -- > 2.20.1 > --===============8826804111780353958==--