Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
c992245
refactor: Include table sizes in comment at top of `unicode_data.rs`
Kmeakin Aug 9, 2025
69e1974
refactor: Include size of case conversion tables
Kmeakin Aug 9, 2025
5d54ac5
refactor: rewrite `ranges_from_set`
Kmeakin Aug 10, 2025
30d1bc7
refactor: `generate_tests`
Kmeakin Aug 10, 2025
c3ce079
refactor: Add tests for case conversions
Kmeakin Aug 10, 2025
3b627b5
editorconfig: don't use nonexistant syntax
lolbinarycat Aug 24, 2025
aa27cca
Add a sanity check to bootstrap for wasm-component-ld
alexcrichton Aug 26, 2025
5d81f03
std: Start supporting WASIp2 natively
alexcrichton Aug 26, 2025
8930d3a
resolve: Avoid a regression from splitting prelude into two scopes
petrochenkov Aug 28, 2025
0b1bc65
Explicity disable LSX feature for `loongarch64-unknown-none` target
heiher Aug 30, 2025
1c64d3e
Constify conversion traits
clarfonthey Aug 11, 2025
b2962c3
test(lexer): Ensure frontmatter w/ crlf works
epage Aug 28, 2025
159be09
test(lexer): Ensure frontmatter can contain unicode whitespace
epage Aug 29, 2025
9304aa1
test(lexer): Ensure tabs are accepted for horizontal whitespace
epage Aug 29, 2025
428e413
docs(lexer): Organize and document whitespace by Pattern_White_Space
epage Aug 28, 2025
6f0da97
fix(lexer): Only allow horizontal whitespace in frontmatter
epage Aug 28, 2025
9bd8d17
don't uppercase error messages
scrabsha Sep 1, 2025
03bffa8
CI: rfl: move job forward to Linux v6.17-rc3 plus 2 commits
ojeda Sep 3, 2025
e97edb0
Rollup merge of #145279 - clarfonthey:const-convert-initial, r=tgross35
Zalathar Sep 3, 2025
4eb6212
Rollup merge of #145414 - Kmeakin:km/unicode-table-refactors, r=josht…
Zalathar Sep 3, 2025
867849d
Rollup merge of #145823 - lolbinarycat:editorconfig-fix, r=GuillaumeG…
Zalathar Sep 3, 2025
7744699
Rollup merge of #145944 - alexcrichton:native-wasip2, r=tgross35
Zalathar Sep 3, 2025
20280b1
Rollup merge of #145961 - petrochenkov:extprelregr, r=nnethercote
Zalathar Sep 3, 2025
24d59e3
Rollup merge of #146032 - heiher:loong64-none-no-lsx, r=lqd
Zalathar Sep 3, 2025
dd44c4c
Rollup merge of #146106 - epage:whitespace, r=fee1-dead
Zalathar Sep 3, 2025
63b91e2
Rollup merge of #146112 - scrabsha:push-utkysktvulto, r=WaffleLapkin
Zalathar Sep 3, 2025
546c8b2
Rollup merge of #146154 - ojeda:rfl, r=lqd
Zalathar Sep 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub(crate) fn target() -> Target {
arch: "loongarch64".into(),
options: TargetOptions {
cpu: "generic".into(),
features: "+f,+d".into(),
features: "+f,+d,-lsx".into(),
linker_flavor: LinkerFlavor::Gnu(Cc::No, Lld::Yes),
linker: Some("rust-lld".into()),
llvm_abiname: "lp64d".into(),
Expand Down