mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
19 lines
602 B
Bash
19 lines
602 B
Bash
#!/hint/bash
|
|
# shellcheck disable=2034
|
|
|
|
#
|
|
# /etc/makepkg.conf.d/rust.conf
|
|
#
|
|
|
|
#########################################################################
|
|
# RUST LANGUAGE SUPPORT
|
|
#########################################################################
|
|
|
|
# Flags used for the Rust compiler, similar in spirit to CFLAGS. Read
|
|
# linkman:rustc[1] for more details on the available flags.
|
|
RUSTFLAGS=""
|
|
|
|
# Additional compiler flags appended to `RUSTFLAGS` for use in debugging.
|
|
# Usually this would include: ``-C debuginfo=2''. Read linkman:rustc[1] for
|
|
# more details on the available flags.
|
|
DEBUG_RUSTFLAGS=""
|