Home
last modified time | relevance | path

Searched refs:EXE_SUFFIX (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/crates/clang-sys/src/
Dsupport.rs105 let default = format!("{}-clang{}", target, env::consts::EXE_SUFFIX); in find()
106 let versioned = format!("{}-clang-[0-9]*{}", target, env::consts::EXE_SUFFIX); in find()
117 let default = format!("clang{}", env::consts::EXE_SUFFIX); in find()
118 let versioned = format!("clang-[0-9]*{}", env::consts::EXE_SUFFIX); in find()
/third_party/python/Modules/
Dgetpath.c408 #ifndef EXE_SUFFIX
409 #define EXE_SUFFIX L".exe" macro
420 size_t s = wcslen(EXE_SUFFIX); in add_exe_suffix()
421 if (wcsncasecmp(EXE_SUFFIX, progpath + n - s, s) == 0) { in add_exe_suffix()
431 memcpy(progpath2 + n, EXE_SUFFIX, s * sizeof(wchar_t)); in add_exe_suffix()
/third_party/python/patches/
Dcpython_mingw_v3.10.2.patch2782 size_t s = wcslen(EXE_SUFFIX);
2783 - if (wcsncasecmp(EXE_SUFFIX, progpath + n - s, s) == 0) {
2784 + if (_wcsnicmp(EXE_SUFFIX, progpath + n - s, s) == 0) {