Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
9acec62c
Commit
9acec62c
authored
Dec 03, 2015
by
Péter Szilágyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makefile: support 64bit ARM iOS cross builds
parent
3eebeae3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
Makefile
Makefile
+13
-3
No files found.
Makefile
View file @
9acec62c
...
...
@@ -7,7 +7,8 @@
.PHONY
:
geth-linux-arm geth-linux-arm-5 geth-linux-arm-6 geth-linux-arm-7 geth-linux-arm64
.PHONY
:
geth-darwin geth-darwin-386 geth-darwin-amd64
.PHONY
:
geth-windows geth-windows-386 geth-windows-amd64
.PHONY
:
geth-android geth-ios
.PHONY
:
geth-android
.PHONY
:
geth-ios geth-ios-arm-7 geth-ios-arm64
GOBIN
=
build/bin
...
...
@@ -95,11 +96,20 @@ geth-android: xgo
@
echo
"Android cross compilation done:"
@
ls
-l
$(GOBIN)
/geth-android-
*
geth-ios
:
xgo
build/env.sh
$(GOBIN)
/xgo
--go
=
$(GO)
--buildmode
=
$(MODE)
--dest
=
$(GOBIN)
--deps
=
$(CROSSDEPS)
--depsargs
=
--disable-assembly
--targets
=
ios/
*
-v
$(
shell
build/flags.sh
)
./cmd/geth
geth-ios
:
geth-ios-arm-7 geth-ios-arm64
@
echo
"iOS cross compilation done:"
@
ls
-l
$(GOBIN)
/geth-ios-
*
geth-ios-arm-7
:
xgo
build/env.sh
$(GOBIN)
/xgo
--go
=
$(GO)
--buildmode
=
$(MODE)
--dest
=
$(GOBIN)
--deps
=
$(CROSSDEPS)
--depsargs
=
--disable-assembly
--targets
=
ios/arm-7
-v
$(
shell
build/flags.sh
)
./cmd/geth
@
echo
"iOS ARMv7 cross compilation done:"
@
ls
-l
$(GOBIN)
/geth-ios-
*
|
grep
arm-7
geth-ios-arm64
:
xgo
build/env.sh
$(GOBIN)
/xgo
--go
=
$(GO)
--buildmode
=
$(MODE)
--dest
=
$(GOBIN)
--deps
=
$(CROSSDEPS)
--depsargs
=
--disable-assembly
--targets
=
ios-7.0/arm64
-v
$(
shell
build/flags.sh
)
./cmd/geth
@
echo
"iOS ARM64 cross compilation done:"
@
ls
-l
$(GOBIN)
/geth-ios-
*
|
grep
arm64
evm
:
build/env.sh
$(GOROOT)
/bin/go
install
-v
$(
shell
build/flags.sh
)
./cmd/evm
@
echo
"Done building."
...
...
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