diff options
author | Arthur Cohen <arthur.cohen@embecosm.com> | 2024-09-16 14:06:13 +0200 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2025-03-17 16:35:28 +0100 |
commit | a739da61d30920d91193a1e198efd50ae5790bb1 (patch) | |
tree | 1bbd355265bb46ea7ff8da054e803eef03df7c3e /gcc/rust/parse/rust-parse.cc | |
parent | ba56cdb52711990414a50dd52c853cefcdd23f53 (diff) | |
download | gcc-a739da61d30920d91193a1e198efd50ae5790bb1.zip gcc-a739da61d30920d91193a1e198efd50ae5790bb1.tar.gz gcc-a739da61d30920d91193a1e198efd50ae5790bb1.tar.bz2 |
gccrs: mingw: Fix build with patch from Liu Hao
This commit adds Liu Hao's patch from
https://github.com/lhmouse/MINGW-packages/blob/5859d27b2b6101204a08ad9702cb2937f8797be9/mingw-w64-gcc/0100-rust-fix.patch
gcc/rust/ChangeLog:
* checks/errors/borrowck/rust-borrow-checker.cc (mkdir_wrapped): Remove.
(BorrowChecker::go): Use `mkdir` instead.
* expand/rust-proc-macro.cc (register_callback): Use Windows APIs to
open dynamic proc macro library.
(load_macros_array): Likewise.
* parse/rust-parse.cc (defined): Replace separators in paths using
std::replace.
Diffstat (limited to 'gcc/rust/parse/rust-parse.cc')
-rw-r--r-- | gcc/rust/parse/rust-parse.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/parse/rust-parse.cc b/gcc/rust/parse/rust-parse.cc index 9aca781..43d15aa 100644 --- a/gcc/rust/parse/rust-parse.cc +++ b/gcc/rust/parse/rust-parse.cc @@ -89,7 +89,7 @@ extract_module_path (const AST::AttrVec &inner_attrs, // Source: rustc compiler // (https://github.com/rust-lang/rust/blob/9863bf51a52b8e61bcad312f81b5193d53099f9f/compiler/rustc_expand/src/module.rs#L174) #if defined(HAVE_DOS_BASED_FILE_SYSTEM) - path.replace ('/', '\\'); + std::replace (path.begin (), path.end (), '/', '\\'); #endif /* HAVE_DOS_BASED_FILE_SYSTEM */ return path; |