From: Eric Le Bihan <eric.le.bihan.dev@free.fr>
To: ng0 <ng0@we.make.ritual.n0.is>
Cc: guix-devel@gnu.org
Subject: Re: rust work in progress conflicts
Date: Thu, 28 Jul 2016 20:31:44 +0200 [thread overview]
Message-ID: <20160728203144.7df4bb8c@itchy> (raw)
In-Reply-To: <87popyp3od.fsf@we.make.ritual.n0.is>
[-- Attachment #1: Type: text/plain, Size: 1373 bytes --]
Hi ng0, all!
Le Thu, 28 Jul 2016 08:28:18 +0000,
ng0 <ng0@we.make.ritual.n0.is> a écrit :
> ng0 <ng0@libertad.pw> writes:
[...]
>
> So I picked up rust.scm again and forgot about this thread, only a
> search for rust brought it up again.
> As this will be a long task obviously, however we finish it, can we
> file a bug on it so it is obvious that work is being done on it and
> there'll be no dual work on this?
>
> Recently released version 1.10.0 of rust merged the
> "--disable-codegen-tests" I needed back when i worked on it.
It happens that I tried to package Rust, as an introduction to Guix.
Here is my version, inspired by the Haskell package, where Rust 1.10.0
is built, bootstrapped by a binary version of rustc 1.9.0. It uses the
"cc" wrapper trick previously presented.
Some questions, though:
1. I can compile a sample program in a guix environment created using
`guix environment gcc glibc binutils rust`, but the program
generated fails to run because libgcc_s.so.1 can not be found. How can
it be added to the environment?
2. Having a Rust compiler is cool, but having Cargo, the Rust package
manager, would be even better. Cargo is also bootstrapped, and it is
also built using zillions of crates (Rust packages) downloaded from the
Internet. How could this case be handled in Guix?
Best regards,
--
ELB
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-rust.patch --]
[-- Type: text/x-patch, Size: 6884 bytes --]
From fb1fbc92cd68331b3dea94c238274f8a01b98afa Mon Sep 17 00:00:00 2001
From: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Date: Thu, 28 Jul 2016 20:09:01 +0200
Subject: [PATCH 1/1] gnu: Add rust
* gnu/packages/rust.scm(rust): New variable.
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
---
gnu/packages/rust.scm | 141 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 141 insertions(+)
create mode 100644 gnu/packages/rust.scm
diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm
new file mode 100644
index 0000000..6c6ec0c
--- /dev/null
+++ b/gnu/packages/rust.scm
@@ -0,0 +1,141 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2016 Eric Le Bihan <eric.le.bihan.dev@free.fr>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages rust)
+ #:use-module (ice-9 regex)
+ #:use-module ((guix licenses) #:select (asl2.0 x11-style))
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix build-system gnu)
+ #:use-module (gnu packages base)
+ #:use-module (gnu packages bootstrap)
+ #:use-module (gnu packages curl)
+ #:use-module (gnu packages elf)
+ #:use-module (gnu packages gcc)
+ #:use-module (gnu packages jemalloc)
+ #:use-module (gnu packages perl)
+ #:use-module (gnu packages python))
+
+(define rust-bootstrap-x86_64-1.9.0
+ (origin
+ (method url-fetch)
+ (uri
+ "https://static.rust-lang.org/dist/2016-05-24/rustc-1.9.0-x86_64-unknown-linux-gnu.tar.gz")
+ (sha256
+ (base32
+ "1i44rlvvn3pr81sli6bdbkzd78ar1ibybxx6mzpw6rkw4c84sw6h"))))
+
+(define rust-bootstrap-i686-1.9.0
+ (origin
+ (method url-fetch)
+ (uri
+ "https://static.rust-lang.org/dist/2016-05-24/rustc-1.9.0-i686-unknown-linux-gnu.tar.gz")
+ (sha256
+ (base32
+ "0fdf5xvh3g4hdza0y80w1r9vnfczjqnbzbvs7k878yc26p4dwl99"))))
+
+(define-public rust
+ (package
+ (name "rust")
+ (version "1.10.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://static.rust-lang.org/dist/rustc-"
+ version "-src.tar.gz"))
+ (sha256
+ (base32
+ "0sb82xb8y2pzs8l1hk91z228bambwx3dmi2kj8isin7nyjn5l0d4"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("curl" ,curl)
+ ("gcc" ,gcc)
+ ("gcc-lib" ,gcc "lib")
+ ("jemalloc" ,jemalloc)
+ ("patchelf" ,patchelf)
+ ("perl" ,perl)
+ ("python" ,python-2)
+ ("rust-bootstrap"
+ ,(if (string-match "x86_64" (or (%current-target-system) (%current-system)))
+ rust-bootstrap-x86_64-1.9.0
+ rust-bootstrap-i686-1.9.0))
+ ("which" ,which)))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'unpack-bootstrap
+ (lambda* (#:key inputs #:allow-other-keys)
+ (with-directory-excursion (getcwd)
+ (zero? (system*
+ "tar"
+ "--strip-components=1"
+ "-xzf"
+ (assoc-ref inputs "rust-bootstrap"))))))
+ (replace 'configure
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (binutils (assoc-ref inputs "binutils"))
+ (gcc (assoc-ref inputs "gcc"))
+ (gcc-lib (assoc-ref inputs "gcc-lib"))
+ (jemalloc (assoc-ref inputs "jemalloc"))
+ (ld-so (string-append
+ (assoc-ref inputs "libc")
+ ,(glibc-dynamic-linker)))
+ (python (assoc-ref inputs "python")))
+ (setenv "SHELL" (which "sh"))
+ (setenv "CONFIG_SHELL" (which "sh"))
+ ;; Tell where to find libgcc_s.so
+ (setenv "LD_LIBRARY_PATH" (string-append gcc-lib "/lib"))
+ ;; Remove reference to "/lib64/ld-linux-x86-64.so.2" from binary
+ (zero? (system*
+ "patchelf"
+ "--set-interpreter" ld-so
+ (string-append (getcwd) "/rustc/bin/rustc")))
+ (zero? (system*
+ "./configure"
+ (string-append "--prefix=" out)
+ (string-append "--default-linker=" gcc "/bin/gcc")
+ (string-append "--default-ar=" binutils "/bin/ar")
+ (string-append "--jemalloc-root=" jemalloc "/lib")
+ (string-append "--enable-rpath")
+ (string-append "--enable-local-rust")
+ (string-append "--local-rust-root=" (getcwd) "/rustc")
+ (string-append "--python=" python "/bin/python2")
+ "--disable-manage-submodules")))))
+ (add-before 'build 'pre-build
+ (lambda _
+ (let* ((bindir (string-append (getcwd) "/bin"))
+ (cc (string-append bindir "/cc")))
+ (mkdir bindir)
+ (call-with-output-file cc
+ (lambda (port)
+ (format port
+ "#!~a\n\nexec gcc \"$@\"\n" (which "sh"))))
+ (chmod cc #o755))))
+ (replace 'build
+ (lambda* (#:key outputs #:allow-other-keys)
+ (setenv "PATH"
+ (string-append (getcwd) "/bin:" (getenv "PATH")))
+ (mkdir (assoc-ref outputs "out"))
+ (zero? (system* "make")))))
+ #:tests? #f))
+ (synopsis "Compiler for the Rust progamming language")
+ (description
+ "Rust is a systems programming language that runs blazingly fast, prevents
+ segfaults, and guarantees thread safety.")
+ (home-page "https://www.rust-lang.org")
+ (license (list asl2.0 (x11-style "file://LICENSE-MIT")))))
--
2.4.11
next prev parent reply other threads:[~2016-07-28 18:31 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-25 17:45 LLVM: "FileCheck" is missing Danny Milosavljevic
2016-03-25 21:58 ` Nils Gillmann
2016-03-25 22:06 ` rust work in progress conflicts (was: Re: LLVM: "FileCheck" is missing) Nils Gillmann
2016-05-04 10:34 ` Jelle Licht
2016-05-05 13:35 ` rust work in progress conflicts Ludovic Courtès
2016-05-05 14:46 ` Alex Griffin
2016-05-06 9:05 ` Andy Wingo
2016-05-06 9:15 ` Andy Wingo
2016-05-06 9:59 ` Ludovic Courtès
2016-05-05 15:06 ` ng0
2016-07-28 8:28 ` ng0
2016-07-28 18:31 ` Eric Le Bihan [this message]
2016-07-29 9:03 ` Andreas Enge
2016-07-29 11:40 ` Vincent Legoll
2016-07-29 14:37 ` ng0
2016-07-30 10:04 ` Eric Le Bihan
2016-07-29 15:16 ` Rust Ludovic Courtès
2016-07-29 15:34 ` Rust Alex Griffin
2016-07-29 16:08 ` Rust Jelle Licht
2016-07-30 13:34 ` Rust Ludovic Courtès
2016-07-30 17:57 ` Rust Pjotr Prins
2016-07-30 11:01 ` Rust Eric Le Bihan
2016-07-30 13:44 ` Rust Ludovic Courtès
-- strict thread matches above, loose matches on Subject: below --
2016-07-29 9:46 rust work in progress conflicts David Craven
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160728203144.7df4bb8c@itchy \
--to=eric.le.bihan.dev@free.fr \
--cc=guix-devel@gnu.org \
--cc=ng0@we.make.ritual.n0.is \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).