Skip to content

Commit a656683

Browse files
---
yaml --- r: 272575 b: refs/heads/auto c: 69289c9 h: refs/heads/master i: 272573: 75cf1c2 272571: 6d9e7a9 272567: f8486df 272559: 0a91431 272543: f7737f3 272511: 866712c
1 parent cfc86be commit a656683

File tree

1,116 files changed

+25154
-35143
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,116 files changed

+25154
-35143
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
88
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
99
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1010
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
11-
refs/heads/auto: b622c3e0856767d8e53cf141e2e0a7b6d72a198b
11+
refs/heads/auto: 69289c93666cad424627c0d696841c8f78e96448
1212
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1313
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
1414
refs/tags/0.2: 1754d02027f2924bed83b0160ee340c7f41d5ea1

branches/auto/COMPILER_TESTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ fn test_foo() {
7777
}
7878
```
7979

80-
Note that not all headers have meaning when customized to a revision.
80+
Note that not all headers have meaning when customized too a revision.
8181
For example, the `ignore-test` header (and all "ignore" headers)
8282
currently only apply to the test as a whole, not to particular
8383
revisions. The only headers that are intended to really work when

branches/auto/CONTRIBUTING.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ which includes important information about what platform you're on, what
7171
version of Rust you're using, etc.
7272

7373
Sometimes, a backtrace is helpful, and so including that is nice. To get
74-
a backtrace, set the `RUST_BACKTRACE` environment variable to a value
75-
other than `0`. The easiest way
74+
a backtrace, set the `RUST_BACKTRACE` environment variable. The easiest way
7675
to do this is to invoke `rustc` like this:
7776

7877
```bash
@@ -133,8 +132,8 @@ Some common make targets are:
133132
- `make check-stage1-std NO_REBUILD=1` - test the standard library without
134133
rebuilding the entire compiler
135134
- `make check TESTNAME=<substring-of-test-name>` - Run a matching set of tests.
136-
- `TESTNAME` should be a substring of the tests to match against e.g. it could
137-
be the fully qualified test name, or just a part of it.
135+
- `TESTNAME` should be a substring of the tests to match against e.g. it could
136+
be the fully qualified test name, or just a part of it.
138137
`TESTNAME=collections::hash::map::test_map::test_capacity_not_less_than_len`
139138
or `TESTNAME=test_capacity_not_less_than_len`.
140139
- `make check-stage1-rpass TESTNAME=<substring-of-test-name>` - Run a single

branches/auto/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ build.
7777
7878
Download [MinGW from
7979
here](http://mingw-w64.org/doku.php/download/mingw-builds), and choose the
80-
`version=4.9.x,threads=win32,exceptions=dwarf/seh` flavor when installing. Also, make sure to install to a path without spaces in it. After installing,
80+
`threads=win32,exceptions=dwarf/seh` flavor when installing. Also, make sure to install to a path without spaces in it. After installing,
8181
add its `bin` directory to your `PATH`. This is due to [#28260](https://github.com/rust-lang/rust/issues/28260), in the future,
8282
installing from pacman should be just fine.
8383
@@ -177,11 +177,10 @@ To contribute to Rust, please see [CONTRIBUTING](CONTRIBUTING.md).
177177
Rust has an [IRC] culture and most real-time collaboration happens in a
178178
variety of channels on Mozilla's IRC network, irc.mozilla.org. The
179179
most popular channel is [#rust], a venue for general discussion about
180-
Rust. And a good place to ask for help would be [#rust-beginners].
180+
Rust, and a good place to ask for help.
181181
182182
[IRC]: https://en.wikipedia.org/wiki/Internet_Relay_Chat
183183
[#rust]: irc://irc.mozilla.org/rust
184-
[#rust-beginners]: irc://irc.mozilla.org/rust-beginners
185184
186185
## License
187186

branches/auto/RELEASES.md

Lines changed: 2 additions & 210 deletions
Original file line numberDiff line numberDiff line change
@@ -1,211 +1,3 @@
1-
Version 1.8.0 (2016-04-14)
2-
==========================
3-
4-
Language
5-
--------
6-
7-
* Rust supports overloading of compound assignment statements like
8-
`+=` by implementing the [`AddAssign`], [`SubAssign`],
9-
[`MulAssign`], [`DivAssign`], [`RemAssign`], [`BitAndAssign`],
10-
[`BitOrAssign`], [`BitXorAssign`], [`ShlAssign`], or [`ShrAssign`]
11-
traits. [RFC 953].
12-
* Empty structs can be defined with braces, as in `struct Foo { }`, in
13-
addition to the non-braced form, `struct Foo;`. [RFC 218].
14-
15-
Libraries
16-
---------
17-
18-
* Stabilized APIs:
19-
* [`str::encode_utf16`][] (renamed from `utf16_units`)
20-
* [`str::EncodeUtf16`][] (renamed from `Utf16Units`)
21-
* [`Ref::map`]
22-
* [`RefMut::map`]
23-
* [`ptr::drop_in_place`]
24-
* [`time::Instant`]
25-
* [`time::SystemTime`]
26-
* [`Instant::now`]
27-
* [`Instant::duration_since`][] (renamed from `duration_from_earlier`)
28-
* [`Instant::elapsed`]
29-
* [`SystemTime::now`]
30-
* [`SystemTime::duration_since`][] (renamed from `duration_from_earlier`)
31-
* [`SystemTime::elapsed`]
32-
* Various `Add`/`Sub` impls for `Time` and `SystemTime`
33-
* [`SystemTimeError`]
34-
* [`SystemTimeError::duration`]
35-
* Various impls for `SystemTimeError`
36-
* [`UNIX_EPOCH`]
37-
* [`AddAssign`], [`SubAssign`], [`MulAssign`], [`DivAssign`],
38-
[`RemAssign`], [`BitAndAssign`], [`BitOrAssign`],
39-
[`BitXorAssign`], [`ShlAssign`], [`ShrAssign`].
40-
* [The `write!` and `writeln!` macros correctly emit errors if any of
41-
their arguments can't be formatted][1.8w].
42-
* [Various I/O functions support large files on 32-bit Linux][1.8l].
43-
* [The Unix-specific `raw` modules, which contain a number of
44-
redefined C types are deprecated][1.8r], including `os::raw::unix`,
45-
`os::raw::macos`, and `os::raw::linux`. These modules defined types
46-
such as `ino_t` and `dev_t`. The inconsistency of these definitions
47-
across platforms was making it difficult to implement `std`
48-
correctly. Those that need these definitions should use the `libc`
49-
crate. [RFC 1415].
50-
* The Unix-specific `MetadataExt` traits, including
51-
`os::unix::fs::MetadataExt`, which expose values such as inode
52-
numbers [no longer return platform-specific types][1.8r], but
53-
instead return widened integers. [RFC 1415].
54-
* [`btree_set::{IntoIter, Iter, Range}` are covariant][1.8cv].
55-
* [Atomic loads and stores are not volatile][1.8a].
56-
* [All types in `sync::mpsc` implement `fmt::Debug`][1.8mp].
57-
58-
Performance
59-
-----------
60-
61-
* [Inlining hash functions lead to a 3% compile-time improvement in
62-
some workloads][1.8h].
63-
* When using jemalloc, its symbols are [unprefixed so that it
64-
overrides the libc malloc implementation][1.8h]. This means that for
65-
rustc, LLVM is now using jemalloc, which results in a 6%
66-
compile-time improvement on a specific workload.
67-
* [Avoid quadratic growth in function size due to cleanups][1.8cu].
68-
69-
Misc
70-
----
71-
72-
* [32-bit MSVC builds finally implement unwinding][1.8ms].
73-
i686-pc-windows-msvc is now considered a tier-1 platform.
74-
* [The `--print targets` flag prints a list of supported targets][1.8t].
75-
* [The `--print cfg` flag prints the `cfg`s defined for the current
76-
target][1.8cf].
77-
* [`rustc` can be built with an new Cargo-based build system, written
78-
in Rust][1.8b]. It will eventually replace Rust's Makefile-based
79-
build system. To enable it configure with `configure --rustbuild`.
80-
* [Errors for non-exhaustive `match` patterns now list up to 3 missing
81-
variants while also indicating the total number of missing variants
82-
if more than 3][1.8m].
83-
* [Executable stacks are disabled on Linux and BSD][1.8nx].
84-
* The Rust Project now publishes binary releases of the standard
85-
library for a number of tier-2 targets:
86-
`armv7-unknown-linux-gnueabihf`, `powerpc-unknown-linux-gnu`,
87-
`powerpc64-unknown-linux-gnu`, `powerpc64le-unknown-linux-gnu`
88-
`x86_64-rumprun-netbsd`. These can be installed with
89-
tools such as [multirust][1.8mr].
90-
91-
Cargo
92-
-----
93-
94-
* [`cargo init` creates a new Cargo project in the current
95-
directory][1.8ci]. It is otherwise like `cargo new`.
96-
* [Cargo has configuration keys for `-v` and
97-
`--color`][1.8cc]. `verbose` and `color`, respectively, go in the
98-
`[term]` section of `.cargo/config`.
99-
* [Configuration keys that evaluate to strings or integers can be set
100-
via environment variables][1.8ce]. For example the `build.jobs` key
101-
can be set via `CARGO_BUILD_JOBS`. Environment variables take
102-
precedence over config files.
103-
* [Target-specific dependencies support Rust `cfg` syntax for
104-
describing targets][1.8cfg] so that dependencies for multiple
105-
targets can be specified together. [RFC 1361].
106-
* [The environment variables `CARGO_TARGET_ROOT`, `RUSTC`, and
107-
`RUSTDOC` take precedence over the `build.target-dir`,
108-
`build.rustc`, and `build.rustdoc` configuration values][1.8cv].
109-
* [The child process tree is killed on Windows when Cargo is
110-
killed][1.8ck].
111-
* [The `build.target` configuration value sets the target platform,
112-
like `--target`][1.8ct].
113-
114-
Compatibility Notes
115-
-------------------
116-
117-
* [Unstable compiler flags have been further restricted][1.8u]. Since
118-
1.0 `-Z` flags have been considered unstable, and other flags that
119-
were considered unstable additionally required passing `-Z
120-
unstable-options` to access. Unlike unstable language and library
121-
features though, these options have been accessible on the stable
122-
release channel. Going forward, *new unstable flags will not be
123-
available on the stable release channel*, and old unstable flags
124-
will warn about their usage. In the future, all unstable flags will
125-
be unavailable on the stable release channel.
126-
* [It is no longer possible to `match` on empty enum variants using
127-
the `Variant(..)` syntax][1.8v]. This has been a warning since 1.6.
128-
* The Unix-specific `MetadataExt` traits, including
129-
`os::unix::fs::MetadataExt`, which expose values such as inode
130-
numbers [no longer return platform-specific types][1.8r], but
131-
instead return widened integers. [RFC 1415].
132-
* [Modules sourced from the filesystem cannot appear within arbitrary
133-
blocks, but only within other modules][1.8m].
134-
* [`--cfg` compiler flags are parsed strictly as identifiers][1.8c].
135-
* On Unix, [stack overflow triggers a runtime abort instead of a
136-
SIGSEGV][1.8so].
137-
* [`Command::spawn` and its equivalents return an error if any of
138-
its command-line arguments contain interior `NUL`s][1.8n].
139-
* [Tuple and unit enum variants from other crates are in the type
140-
namespace][1.8tn].
141-
* [On Windows `rustc` emits `.lib` files for the `staticlib` library
142-
type instead of `.a` files][1.8st]. Additionally, for the MSVC
143-
toolchain, `rustc` emits import libraries named `foo.dll.lib`
144-
instead of `foo.lib`.
145-
146-
147-
[1.8a]: https://github.com/rust-lang/rust/pull/30962
148-
[1.8b]: https://github.com/rust-lang/rust/pull/31123
149-
[1.8c]: https://github.com/rust-lang/rust/pull/31530
150-
[1.8cc]: https://github.com/rust-lang/cargo/pull/2397
151-
[1.8ce]: https://github.com/rust-lang/cargo/pull/2398
152-
[1.8cf]: https://github.com/rust-lang/rust/pull/31278
153-
[1.8cfg]: https://github.com/rust-lang/cargo/pull/2328
154-
[1.8ci]: https://github.com/rust-lang/cargo/pull/2081
155-
[1.8ck]: https://github.com/rust-lang/cargo/pull/2370
156-
[1.8ct]: https://github.com/rust-lang/cargo/pull/2335
157-
[1.8cu]: https://github.com/rust-lang/rust/pull/31390
158-
[1.8cv]: https://github.com/rust-lang/cargo/issues/2365
159-
[1.8cv]: https://github.com/rust-lang/rust/pull/30998
160-
[1.8h]: https://github.com/rust-lang/rust/pull/31460
161-
[1.8l]: https://github.com/rust-lang/rust/pull/31668
162-
[1.8m]: https://github.com/rust-lang/rust/pull/31020
163-
[1.8m]: https://github.com/rust-lang/rust/pull/31534
164-
[1.8mp]: https://github.com/rust-lang/rust/pull/30894
165-
[1.8mr]: https://users.rust-lang.org/t/multirust-0-8-with-cross-std-installation/4901
166-
[1.8ms]: https://github.com/rust-lang/rust/pull/30448
167-
[1.8n]: https://github.com/rust-lang/rust/pull/31056
168-
[1.8nx]: https://github.com/rust-lang/rust/pull/30859
169-
[1.8r]: https://github.com/rust-lang/rust/pull/31551
170-
[1.8so]: https://github.com/rust-lang/rust/pull/31333
171-
[1.8st]: https://github.com/rust-lang/rust/pull/29520
172-
[1.8t]: https://github.com/rust-lang/rust/pull/31358
173-
[1.8tn]: https://github.com/rust-lang/rust/pull/30882
174-
[1.8u]: https://github.com/rust-lang/rust/pull/31793
175-
[1.8v]: https://github.com/rust-lang/rust/pull/31757
176-
[1.8w]: https://github.com/rust-lang/rust/pull/31904
177-
[RFC 1361]: https://github.com/rust-lang/rfcs/blob/master/text/1361-cargo-cfg-dependencies.md
178-
[RFC 1415]: https://github.com/rust-lang/rfcs/blob/master/text/1415-trim-std-os.md
179-
[RFC 218]: https://github.com/rust-lang/rfcs/blob/master/text/0218-empty-struct-with-braces.md
180-
[RFC 953]: https://github.com/rust-lang/rfcs/blob/master/text/0953-op-assign.md
181-
[`AddAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.AddAssign.html
182-
[`BitAndAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.BitAndAssign.html
183-
[`BitOrAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.BitOrAssign.html
184-
[`BitXorAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.BitXorAssign.html
185-
[`DivAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.DivAssign.html
186-
[`Instant::duration_since`]: http://doc.rust-lang.org/nightly/std/time/struct.Instant.html#method.duration_since
187-
[`Instant::elapsed`]: http://doc.rust-lang.org/nightly/std/time/struct.Instant.html#method.elapsed
188-
[`Instant::now`]: http://doc.rust-lang.org/nightly/std/time/struct.Instant.html#method.now
189-
[`MulAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.MulAssign.html
190-
[`Ref::map`]: http://doc.rust-lang.org/nightly/std/cell/struct.Ref.html#method.map
191-
[`RefMut::map`]: http://doc.rust-lang.org/nightly/std/cell/struct.RefMut.html#method.map
192-
[`RemAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.RemAssign.html
193-
[`ShlAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.ShlAssign.html
194-
[`ShrAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.ShrAssign.html
195-
[`SubAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.SubAssign.html
196-
[`SystemTime::duration_since`]: http://doc.rust-lang.org/nightly/std/time/struct.SystemTime.html#method.duration_since
197-
[`SystemTime::elapsed`]: http://doc.rust-lang.org/nightly/std/time/struct.SystemTime.html#method.elapsed
198-
[`SystemTime::now`]: http://doc.rust-lang.org/nightly/std/time/struct.SystemTime.html#method.now
199-
[`SystemTimeError::duration`]: http://doc.rust-lang.org/nightly/std/time/struct.SystemTimeError.html#method.duration
200-
[`SystemTimeError`]: http://doc.rust-lang.org/nightly/std/time/struct.SystemTimeError.html
201-
[`UNIX_EPOCH`]: http://doc.rust-lang.org/nightly/std/time/constant.UNIX_EPOCH.html
202-
[`ptr::drop_in_place`]: http://doc.rust-lang.org/nightly/std/ptr/fn.drop_in_place.html
203-
[`str::EncodeUtf16`]: http://doc.rust-lang.org/nightly/std/str/struct.EncodeUtf16.html
204-
[`str::encode_utf16`]: http://doc.rust-lang.org/nightly/std/primitive.str.html#method.encode_utf16
205-
[`time::Instant`]: http://doc.rust-lang.org/nightly/std/time/struct.Instant.html
206-
[`time::SystemTime`]: http://doc.rust-lang.org/nightly/std/time/struct.SystemTime.html
207-
208-
2091
Version 1.7.0 (2016-03-03)
2102
==========================
2113

@@ -324,8 +116,8 @@ Compatibility Notes
324116
that were not intended. In this release, [defaulted type parameters
325117
appearing outside of type definitions will generate a
326118
warning][1.7d], which will become an error in future releases.
327-
* [Parsing "." as a float results in an error instead of 0][1.7p].
328-
That is, `".".parse::<f32>()` returns `Err`, not `Ok(0.0)`.
119+
* [Parsing "." as a float results in an error instead of
120+
0][1.7p]. That is, `".".parse::<f32>()` returns `Err`, not `Ok(0)`.
329121
* [Borrows of closure parameters may not outlive the closure][1.7bc].
330122

331123
[1.7a]: https://github.com/rust-lang/rust/pull/30928

branches/auto/configure

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -607,8 +607,6 @@ opt dist-host-only 0 "only install bins for the host architecture"
607607
opt inject-std-version 1 "inject the current compiler version of libstd into programs"
608608
opt llvm-version-check 1 "check if the LLVM version is supported, build anyway"
609609
opt rustbuild 0 "use the rust and cargo based build system"
610-
opt orbit 0 "get MIR where it belongs - everywhere; most importantly, in orbit"
611-
opt codegen-tests 1 "run the src/test/codegen tests"
612610

613611
# Optimization and debugging options. These may be overridden by the release channel, etc.
614612
opt_nosave optimize 1 "build optimized rust code"
@@ -715,7 +713,17 @@ if [ -n "$CFG_ENABLE_DEBUG_ASSERTIONS" ]; then putvar CFG_ENABLE_DEBUG_ASSERTION
715713
if [ -n "$CFG_ENABLE_DEBUGINFO" ]; then putvar CFG_ENABLE_DEBUGINFO; fi
716714
if [ -n "$CFG_ENABLE_DEBUG_JEMALLOC" ]; then putvar CFG_ENABLE_DEBUG_JEMALLOC; fi
717715

718-
if [ -n "$CFG_ENABLE_ORBIT" ]; then putvar CFG_ENABLE_ORBIT; fi
716+
# A magic value that allows the compiler to use unstable features
717+
# during the bootstrap even when doing so would normally be an error
718+
# because of feature staging or because the build turns on
719+
# warnings-as-errors and unstable features default to warnings. The
720+
# build has to match this key in an env var. Meant to be a mild
721+
# deterrent from users just turning on unstable features on the stable
722+
# channel.
723+
# Basing CFG_BOOTSTRAP_KEY on CFG_BOOTSTRAP_KEY lets it get picked up
724+
# during a Makefile reconfig.
725+
CFG_BOOTSTRAP_KEY="${CFG_BOOTSTRAP_KEY-`date +%H:%M:%S`}"
726+
putvar CFG_BOOTSTRAP_KEY
719727

720728
step_msg "looking for build programs"
721729

@@ -958,11 +966,11 @@ then
958966
LLVM_VERSION=$($LLVM_CONFIG --version)
959967

960968
case $LLVM_VERSION in
961-
(3.[6-8]*)
969+
(3.[5-8]*)
962970
msg "found ok version of LLVM: $LLVM_VERSION"
963971
;;
964972
(*)
965-
err "bad LLVM version: $LLVM_VERSION, need >=3.6"
973+
err "bad LLVM version: $LLVM_VERSION, need >=3.5"
966974
;;
967975
esac
968976
fi
@@ -1023,7 +1031,7 @@ then
10231031
if [ -n "$CFG_OSX_CLANG_VERSION" ]
10241032
then
10251033
case $CFG_OSX_CLANG_VERSION in
1026-
(7.0* | 7.1* | 7.2* | 7.3*)
1034+
(7.0* | 7.1* | 7.2*)
10271035
step_msg "found ok version of APPLE CLANG: $CFG_OSX_CLANG_VERSION"
10281036
;;
10291037
(*)
@@ -1241,7 +1249,7 @@ $ pacman -R cmake && pacman -S mingw-w64-x86_64-cmake
12411249
bits=x86_64
12421250
msvc_part=amd64
12431251
;;
1244-
i*86-*)
1252+
i686-*)
12451253
bits=i386
12461254
msvc_part=
12471255
;;
@@ -1486,9 +1494,7 @@ do
14861494
LLVM_INST_DIR=$CFG_LLVM_ROOT
14871495
do_reconfigure=0
14881496
# Check that LLVm FileCheck is available. Needed for the tests
1489-
if [ -z "$CFG_DISABLE_CODEGEN_TESTS" ]; then
1490-
need_cmd $LLVM_INST_DIR/bin/FileCheck
1491-
fi
1497+
need_cmd $LLVM_INST_DIR/bin/FileCheck
14921498
fi
14931499

14941500
if [ ${do_reconfigure} -ne 0 ]

branches/auto/man/rustc.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,15 +268,15 @@ the maximum number of threads used for this purpose.
268268

269269
.TP
270270
\fBRUST_TEST_NOCAPTURE\fR
271-
If set to a value other than "0", a synonym for the --nocapture flag.
271+
A synonym for the --nocapture flag.
272272

273273
.TP
274274
\fBRUST_MIN_STACK\fR
275275
Sets the minimum stack size for new threads.
276276

277277
.TP
278278
\fBRUST_BACKTRACE\fR
279-
If set to a value different than "0", produces a backtrace in the output of a program which panics.
279+
If set, produces a backtrace in the output of a program which panics.
280280

281281
.SH "EXAMPLES"
282282
To build an executable from a source file with a main function:

branches/auto/mk/cfg/i586-unknown-linux-gnu.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ CFG_LIB_NAME_i586-unknown-linux-gnu=lib$(1).so
77
CFG_STATIC_LIB_NAME_i586-unknown-linux-gnu=lib$(1).a
88
CFG_LIB_GLOB_i586-unknown-linux-gnu=lib$(1)-*.so
99
CFG_LIB_DSYM_GLOB_i586-unknown-linux-gnu=lib$(1)-*.dylib.dSYM
10-
CFG_JEMALLOC_CFLAGS_i586-unknown-linux-gnu := -m32 $(CFLAGS) -march=pentium
11-
CFG_GCCISH_CFLAGS_i586-unknown-linux-gnu := -Wall -Werror -g -fPIC -m32 $(CFLAGS) -march=pentium
12-
CFG_GCCISH_CXXFLAGS_i586-unknown-linux-gnu := -fno-rtti $(CXXFLAGS) -march=pentium
10+
CFG_JEMALLOC_CFLAGS_i586-unknown-linux-gnu := -m32 $(CFLAGS)
11+
CFG_GCCISH_CFLAGS_i586-unknown-linux-gnu := -Wall -Werror -g -fPIC -m32 $(CFLAGS)
12+
CFG_GCCISH_CXXFLAGS_i586-unknown-linux-gnu := -fno-rtti $(CXXFLAGS)
1313
CFG_GCCISH_LINK_FLAGS_i586-unknown-linux-gnu := -shared -fPIC -ldl -pthread -lrt -g -m32
1414
CFG_GCCISH_DEF_FLAG_i586-unknown-linux-gnu := -Wl,--export-dynamic,--dynamic-list=
1515
CFG_LLC_FLAGS_i586-unknown-linux-gnu :=

0 commit comments

Comments
 (0)