Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
certo
go
Commits
338bfc1e
Commit
338bfc1e
authored
Mar 19, 2019
by
Vladimir Bashkirtsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial commit
parents
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
0 deletions
+43
-0
Makefile
Makefile
+20
-0
build.xml
build.xml
+23
-0
go1.4-bootstrap-20170531.tar.gz
go1.4-bootstrap-20170531.tar.gz
+0
-0
go1.8.7.src.tar.gz
go1.8.7.src.tar.gz
+0
-0
No files found.
Makefile
0 → 100644
View file @
338bfc1e
current_dir
:=
$(
dir
$(
abspath
$(
lastword
$(MAKEFILE_LIST)
)))
temporary
:
tar
xf go1.8.7.src.tar.gz
# FIXME: go tests failure! Cannot successfully complete all.bash
if
[
"$(HOSTTYPE)"
=
"aarch64"
];
then
\
tar
xf
go-linux-arm64-bootstrap.tbz
;
\
cd
go/src
&&
GOROOT_BOOTSTRAP
=
$(current_dir)
go-linux-arm64-bootstrap ./make.bash
;
\
rm
-rf
$(current_dir)
go-linux-arm64-bootstrap
;
\
elif
[
"
$(HOSTTYPE)
"
=
"x86_64"
]
;
then
\
tar
xf go-linux-amd64-bootstrap.tbz
;
\
ln
-s
/lib /lib64
;
\
cd
go/src
&&
GOROOT_BOOTSTRAP
=
$(current_dir)
go-linux-amd64-bootstrap ./make.bash
;
\
rm
-rf
/lib64
;
\
rm
-rf
$(current_dir)
go-linux-amd64-bootstrap
;
\
else
\
tar
xf go-linux-arm-bootstrap.tbz
;
\
cd
go/src
&&
GOROOT_BOOTSTRAP
=
$(current_dir)
go-linux-arm-bootstrap ./make.bash
;
\
rm
-rf
$(current_dir)
go-linux-arm-bootstrap
;
\
fi
build.xml
0 → 100644
View file @
338bfc1e
<project
name=
"go"
>
<target
name=
"go-bootstrap"
>
<property
name=
"makedir"
value=
"${builddir}/go"
/>
<exec
executable=
"tar"
failonerror=
"true"
>
<arg
line=
"xf ${basedir}/packages/go/go1.4-bootstrap-20170531.tar.gz -C ${builddir}"
/>
</exec>
<exec
executable=
"./make.bash"
dir=
"${makedir}/src"
/>
<move
file=
"${builddir}/go"
tofile=
"${builddir}/go1.4"
/>
<exec
executable=
"tar"
failonerror=
"true"
>
<arg
line=
"xf ${basedir}/packages/go/go1.8.7.src.tar.gz -C ${builddir}"
/>
</exec>
<exec
executable=
"./bootstrap.bash"
dir=
"${makedir}/src"
>
<env
key=
"GOROOT_BOOTSTRAP"
path=
"${builddir}/go1.4"
/>
<env
key=
"GOOS"
value=
"linux"
/>
<env
key=
"GOARCH"
value=
"${GOARCH}"
/>
</exec>
<delete
dir=
"${builddir}/go1.4"
/>
<delete
dir=
"${builddir}/go"
/>
<delete
dir=
"${builddir}/go-linux-${GOARCH}-bootstrap"
/>
</target>
</project>
go1.4-bootstrap-20170531.tar.gz
0 → 100644
View file @
338bfc1e
File added
go1.8.7.src.tar.gz
0 → 100644
View file @
338bfc1e
File added
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment