You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like ebuild is calling our configure script with --build=i686-pc-linux-gnu and, because configure doesn't accept a --build flag, is emitting an error. Some cursory googling does not reveal to me why ebuild does this or how to prevent it.
FWIW, the equivalent in our script is probably --host-triple, though after #4513 it will be --build-triple. Additionally, I have never built rust using i686-pc-linux-gnu as a triple (we use i686-unknown-linux-gnu), so it may not work.
Re-created: #9760
Now, without adding `pc-linux-gnu` platform
Re-created: #9565
t will be useful for unix systems, some package managers and external tools that is passing / maybe looking for GNU configure syntax options.
One of related bugs: #5138
Also that could be useful in future if project will really install man pages / other stuff using those variables.
Hello.
Trying to make gentoo package (ebuild) : https://github.com/Cynede/weirdo/commit/0da807cd916aa0ea363d91ca94dd91a8cb4e204b
default configure is failing with below error message:
configure: processing /var/tmp/portage/dev-lang/rust-9999/work/rust-9999/configure args
configure:
configure: CFG_PREFIX := /usr
configure: CFG_LOCAL_RUST_ROOT := /usr/local
configure: CFG_LLVM_ROOT :=
configure: CFG_HOST_TRIPLE := i686-unknown-linux-gnu
configure: CFG_TARGET_TRIPLES := i686-unknown-linux-gnu
configure:
configure: validating /var/tmp/portage/dev-lang/rust-9999/work/rust-9999/configure args
configure:
configure: error: Option '--build=i686-pc-linux-gnu' is not recognized
What is it? What option should I pass to configure?
The text was updated successfully, but these errors were encountered: