community/rust to 1.24.0-1

This commit is contained in:
Kevin Mihelich 2018-02-16 19:22:46 +00:00
parent 84472aec13
commit 4fd639bc59
2 changed files with 10 additions and 9 deletions

View file

@ -13,8 +13,8 @@ highmem=1
pkgname=('rust' 'rust-docs')
epoch=1
pkgver=1.23.0
pkgrel=3
pkgver=1.24.0
pkgrel=1
pkgdesc='Systems programming language focused on safety, speed and concurrency'
url='https://www.rust-lang.org/'
@ -28,9 +28,9 @@ options=('!emptydirs')
source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
bootstrap-config.toml)
sha256sums=('7464953871dcfdfa8afcc536916a686dd156a83339d8ec4d5cb4eb2fe146cb91'
sha256sums=('bb8276f6044e877e447f29f566e4bbf820fa51fea2f912d59b73233ffd95639f'
'SKIP'
'6c25c451d6286efd19e96a552406c8b299345749577cf924699cf4c3831d9ad0')
'8e30fcd8633e1900056ecbcc7267fea23e8e08889460239c614d4dcd796ce4f3')
validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag and Release Signing Key) <rust-key@rust-lang.org>
prepare() {

View file

@ -6,16 +6,17 @@ extended = true
# Verbosity level: 0 == not verbose, 1 == verbose, 2 == very verbose
verbose = 0
# Build the sanitizer runtimes
#sanitizers = false
sanitizers = false
[install]
prefix = "/usr"
[rust]
codegen-units = 0
debuginfo = true
# 0 or the new default of 16 is faster, but can result in worse performance
# https://github.com/rust-lang/rust/issues/47745
codegen-units = 1
# Whether or not line number debug information is emitted
#debuginfo-lines = false
debuginfo = true
debuginfo-lines = true
channel = "stable"