You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a small project that I've been learning rust with. Just now I've added some code and the next time I run cargo build rustc exits with SIGSEV signal 11. I've previously not run into this issue while working on this project.
cspeckrun@specktop ~/P/n/t/barf> brew info rustrust: stable 1.9.0 (bottled), HEADSafe, concurrent, practical languagehttps://www.rust-lang.org/Conflicts with: multirust/usr/local/Cellar/rust/1.0.0 (13,947 files, 322M) Poured from bottle on 2015-05-16 at 08:45:38/usr/local/Cellar/rust/1.1.0 (13,888 files, 324.4M) Poured from bottle on 2015-06-26 at 12:02:48/usr/local/Cellar/rust/1.2.0 (4,034 files, 244.9M) Poured from bottle on 2015-08-13 at 09:49:46/usr/local/Cellar/rust/1.3.0 (4,147 files, 245M) Poured from bottle on 2015-09-19 at 01:12:26/usr/local/Cellar/rust/1.4.0 (3,968 files, 232.4M) Poured from bottle on 2015-11-03 at 23:02:54/usr/local/Cellar/rust/1.5.0 (4,051 files, 215.8M) Poured from bottle on 2015-12-10 at 11:44:31/usr/local/Cellar/rust/1.6.0 (8,908 files, 218.1M) Poured from bottle on 2016-01-24 at 17:57:02/usr/local/Cellar/rust/1.7.0 (10,323 files, 228.2M) Poured from bottle on 2016-03-04 at 00:39:39/usr/local/Cellar/rust/1.8.0 (9,398 files, 234.8M) Poured from bottle on 2016-04-17 at 02:59:36/usr/local/Cellar/rust/1.9.0 (10,239 files, 239.8M) * Poured from bottle on 2016-05-27 at 19:44:00From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/rust.rb==> DependenciesBuild: cmake ✔Required: pkg-config ✔, openssl ✔, libssh2 ✔Optional: llvm ✘==> Options--with-llvm Build with brewed LLVM. By default, Rust's LLVM will be used.--HEAD Install HEAD version==> CaveatsBash completion has been installed to: /usr/local/etc/bash_completion.dzsh completion has been installed to: /usr/local/share/zsh/site-functions
The text was updated successfully, but these errors were encountered:
I played around with the code to make it actually more minimal, as well as pointing to the line which introduces the error during compilation
#![allow(dead_code)]#![allow(non_upper_case_globals)]pubstructUID{uid:&'staticstr,}pubstaticImplicitVRLittleEndian:&'staticUID = &UID{uid:"1.2.840.10008.1.2"};pubstructTransferSyntax{uid:&'staticUID,}/**** The addition of the following line is what causes the error */pubstaticImplicitVRLittleEndian_TS:&'staticTransferSyntax = &TransferSyntax{uid:&ImplicitVRLittleEndian};fnmain(){println!("Hello, world!");}
This seems to have been fixed on nightly (playpen).
apasel422
added
the
E-needs-test
Call for participation: An issue has been fixed and does not reproduce, but no test has been added.
label
Jun 17, 2016
I have a small project that I've been learning rust with. Just now I've added some code and the next time I run
cargo build
rustc exits with SIGSEV signal 11. I've previously not run into this issue while working on this project.Minimal Reproducible Code: main.rs.txt
Meta
I'm working on Mac (OSX 10.11.5), with rust installed through Homebrew
Cargo & Rust Version:
Details on homebrew install:
The text was updated successfully, but these errors were encountered: