-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove --host and --target arguments to configure in Dockerfiles #48600
Conversation
@bors: r+ Nice! |
📌 Commit 0b06357 has been approved by |
@bors p=2 prioritizing risky-to-rollup PRs so they get tested first |
⌛ Testing commit 0b06357e6f8bd3a351124be5a1b41a64804da8bb with merge b3311b263d1534ce1b840c08817ae479ab03494a... |
💔 Test failed - status-travis |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dist-i686-linux
failed, legit.
[00:01:41] configure:
[00:01:41] configure: error: Option 'ENV' is not recognized
@@ -82,13 +82,11 @@ RUN sh /scripts/sccache.sh | |||
ENV HOSTS=i686-unknown-linux-gnu | |||
|
|||
ENV RUST_CONFIGURE_ARGS \ | |||
--host=$HOSTS \ | |||
--enable-extended \ | |||
--enable-sanitizers \ | |||
--enable-profiler \ | |||
--enable-emscripten \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove this backslash.
These arguments are passed to the relevant x.py invocation in all cases anyway. As such, there is no need to separately configure them. x.py will ignore the configuration when they are passed on the command line anyway.
0b06357
to
ab7ce1c
Compare
@bors r=alexcrichton |
📌 Commit ab7ce1c has been approved by |
…chton Remove --host and --target arguments to configure in Dockerfiles These arguments are passed to the relevant x.py invocation in all cases anyway. As such, there is no need to separately configure them. x.py will ignore the configuration when they are passed on the command line anyway. r? @alexcrichton
☀️ Test successful - status-appveyor, status-travis |
These arguments are passed to the relevant x.py invocation in all cases
anyway. As such, there is no need to separately configure them. x.py
will ignore the configuration when they are passed on the command line
anyway.
r? @alexcrichton