Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:RUSTC
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/linux-6.6/scripts/
H
A
D
rust_is_available.sh
47
if [ -z "${
RUSTC
+x}" ]; then
49
echo >&2 "*** Environment variable '
RUSTC
' is not set."
66
if ! command -v "$
RUSTC
" >/dev/null; then
68
echo >&2 "*** Rust compiler '$
RUSTC
' could not be found."
85
LC_ALL=C "$
RUSTC
" --version 2>/dev/null
89
echo >&2 "*** Running '$
RUSTC
' to check the Rust compiler version failed with"
102
echo >&2 "*** Running '$
RUSTC
' to check the Rust compiler version did not return"
114
echo >&2 "*** Rust compiler '$
RUSTC
' is too old."
122
echo >&2 "*** Rust compiler '$
RUSTC
' is too new. This may or may not work."
252
rustc_sysroot=$("$
RUSTC
"
[all...]
/kernel/linux/linux-6.6/rust/
H
A
D
Makefile
39
# Avoids running `$(
RUSTC
)` for the sysroot when it may not be available.
43
rustc_sysroot := $(shell $(
RUSTC
) $(rust_flags) --print sysroot)
44
rustc_host_target := $(shell $(
RUSTC
) --version --verbose | grep -F 'host: ' | cut -d' ' -f2)
135
quiet_cmd_rustc_test_library =
RUSTC
TL $<
138
$(
RUSTC
) $(rust_common_flags) \
193
quiet_cmd_rustc_test =
RUSTC
T $<
196
$(
RUSTC
) --test $(rust_common_flags) \
226
# steps, thus we use a wrapper binary passed via `
RUSTC
` to pass the flag.
242
echo "$(
RUSTC
) --sysroot=$(abspath $(objtree)/$(obj)/test/sysroot) \"\$$@\"" \
246
RUSTC
[all...]
/kernel/linux/linux-6.6/
H
A
D
Makefile
501
RUSTC
= rustc
macro
591
RUSTC_OR_CLIPPY_QUIET :=
RUSTC
592
RUSTC_OR_CLIPPY = $(
RUSTC
)
603
export
RUSTC
RUSTDOC RUSTFMT RUSTC_OR_CLIPPY_QUIET RUSTC_OR_CLIPPY BINDGEN CARGO
Completed in 4 milliseconds