* Update Go's version. Make 8g & 8l commands working with no need of
extra argument to locate the Go's libraries. svn path=/nixpkgs/trunk/; revision=18376
This commit is contained in:
parent
ede5426070
commit
29384d43f2
@ -1,7 +1,7 @@
|
|||||||
{stdenv, fetchhg, bison, glibc, ed, which, bash, ...}:
|
{stdenv, fetchhg, bison, glibc, ed, which, bash, makeWrapper, ...}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "2009-11-10.1";
|
version = "2009-11-12";
|
||||||
md5 = "66e5803c8dc2855b339151918b6b0de5";
|
md5 = "66e5803c8dc2855b339151918b6b0de5";
|
||||||
in
|
in
|
||||||
|
|
||||||
@ -15,11 +15,10 @@ stdenv.mkDerivation {
|
|||||||
inherit md5;
|
inherit md5;
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ bison glibc ed which bash ];
|
buildInputs = [ bison glibc ed which bash makeWrapper ];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./disable-system-dependent-tests.patch
|
./disable-system-dependent-tests.patch
|
||||||
./pkg-log-test-accept-period-in-file-path.patch
|
|
||||||
./cgo-set-local-to-match-gcc-error-messages.patch
|
./cgo-set-local-to-match-gcc-error-messages.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -35,7 +34,6 @@ stdenv.mkDerivation {
|
|||||||
GOARCH = "386";
|
GOARCH = "386";
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
ensureDir "$out"
|
|
||||||
ensureDir "$out/bin"
|
ensureDir "$out/bin"
|
||||||
export GOROOT="$(pwd)/"
|
export GOROOT="$(pwd)/"
|
||||||
export GOBIN="$out/bin"
|
export GOBIN="$out/bin"
|
||||||
@ -43,6 +41,30 @@ stdenv.mkDerivation {
|
|||||||
cd ./src
|
cd ./src
|
||||||
./all.bash
|
./all.bash
|
||||||
cd -
|
cd -
|
||||||
|
|
||||||
|
# Handle Libraries and make them availabale under /share/go.
|
||||||
|
export GOLIB="pkg/"$GOOS"_"$GOARCH
|
||||||
|
ensureDir "$out/lib/go/$GOLIB"
|
||||||
|
cp -r ./$GOLIB $out/lib/go/pkg/
|
||||||
|
|
||||||
|
# this line set $AS $CC $GC $LD
|
||||||
|
source ./src/Make.$GOARCH
|
||||||
|
|
||||||
|
# Wrap the compiler and the linker to define the location of the
|
||||||
|
# libraries.
|
||||||
|
wrapProgram "$out/bin/$GC" \
|
||||||
|
--add-flags "-I" \
|
||||||
|
--add-flags "$out/lib/go/$GOLIB"
|
||||||
|
|
||||||
|
wrapProgram "$out/bin/$LD" \
|
||||||
|
--set "GOROOT" "$out/lib/go/" \
|
||||||
|
--set "GOOS" "$GOOS" \
|
||||||
|
--set "GOARCH" "$GOARCH"
|
||||||
|
|
||||||
|
# Copy the emacs configuration for Go files.
|
||||||
|
ensureDir "$out/share/emacs/site-lisp"
|
||||||
|
cp ./misc/emacs/* $out/share/emacs/site-lisp/ # */
|
||||||
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
diff -r b51fd2d6c160 src/pkg/Makefile
|
diff -r cb140bac9ab0 src/pkg/Makefile
|
||||||
--- a/src/pkg/Makefile Tue Nov 10 20:05:24 2009 -0800
|
--- a/src/pkg/Makefile Thu Nov 12 14:55:26 2009 -0800
|
||||||
+++ b/src/pkg/Makefile Sat Nov 14 19:42:42 2009 +0100
|
+++ b/src/pkg/Makefile Mon Nov 16 11:50:34 2009 +0100
|
||||||
@@ -100,16 +100,18 @@
|
@@ -100,12 +100,15 @@
|
||||||
|
|
||||||
NOTEST=\
|
NOTEST=\
|
||||||
debug/proc\
|
debug/proc\
|
||||||
@ -11,18 +11,15 @@ diff -r b51fd2d6c160 src/pkg/Makefile
|
|||||||
go/token\
|
go/token\
|
||||||
hash\
|
hash\
|
||||||
image\
|
image\
|
||||||
|
+ log\
|
||||||
malloc\
|
malloc\
|
||||||
+ os\
|
+ os\
|
||||||
rand\
|
rand\
|
||||||
runtime\
|
runtime\
|
||||||
syscall\
|
syscall\
|
||||||
testing/iotest\
|
diff -r cb140bac9ab0 src/run.bash
|
||||||
|
--- a/src/run.bash Thu Nov 12 14:55:26 2009 -0800
|
||||||
TEST=\
|
+++ b/src/run.bash Mon Nov 16 11:50:34 2009 +0100
|
||||||
$(filter-out $(NOTEST),$(DIRS))
|
|
||||||
diff -r b51fd2d6c160 src/run.bash
|
|
||||||
--- a/src/run.bash Tue Nov 10 20:05:24 2009 -0800
|
|
||||||
+++ b/src/run.bash Sat Nov 14 19:42:42 2009 +0100
|
|
||||||
@@ -69,7 +69,3 @@
|
@@ -69,7 +69,3 @@
|
||||||
./timing.sh -test
|
./timing.sh -test
|
||||||
) || exit $?
|
) || exit $?
|
||||||
|
@ -1,14 +0,0 @@
|
|||||||
diff -r b51fd2d6c160 src/pkg/log/log_test.go
|
|
||||||
--- a/src/pkg/log/log_test.go Tue Nov 10 20:05:24 2009 -0800
|
|
||||||
+++ b/src/pkg/log/log_test.go Sat Nov 14 20:45:04 2009 +0100
|
|
||||||
@@ -18,8 +18,8 @@
|
|
||||||
Rtime = `[0-9][0-9]:[0-9][0-9]:[0-9][0-9]`;
|
|
||||||
Rmicroseconds = `\.[0-9][0-9][0-9][0-9][0-9][0-9]`;
|
|
||||||
Rline = `[0-9]+:`;
|
|
||||||
- Rlongfile = `/[A-Za-z0-9_/\-]+\.go:` + Rline;
|
|
||||||
- Rshortfile = `[A-Za-z0-9_\-]+\.go:` + Rline;
|
|
||||||
+ Rlongfile = `/[A-Za-z0-9_./\-]+\.go:` + Rline;
|
|
||||||
+ Rshortfile = `[A-Za-z0-9_.\-]+\.go:` + Rline;
|
|
||||||
)
|
|
||||||
|
|
||||||
type tester struct {
|
|
@ -2066,7 +2066,7 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
go = import ../development/compilers/go {
|
go = import ../development/compilers/go {
|
||||||
inherit stdenv fetchhg glibc bison ed which bash;
|
inherit stdenv fetchhg glibc bison ed which bash makeWrapper;
|
||||||
};
|
};
|
||||||
|
|
||||||
gprolog = import ../development/compilers/gprolog {
|
gprolog = import ../development/compilers/gprolog {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user