diff options
| author | Cody Holliday <9455568+Codysseus@users.noreply.github.com> | 2019-04-04 14:57:50 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-04-04 14:57:50 +0200 |
| commit | e5d1b3ac44472b1e7741da6bbcc0e655b931025e (patch) | |
| tree | f3604a88eae1a9ae3a7492e47fa4a55fef914134 | |
| parent | 1ee782d53c445be1996975e1c7fd2b7bb063d4b7 (diff) | |
sys/targets: fix arm target compiler prefix
sys/targets/targets.go: Change 'arm-linux-gnueabihf-' to 'arm-linux-gnueabi-' in the arm target since target ISA is armv6 and armhf is armv7+.
| -rw-r--r-- | AUTHORS | 1 | ||||
| -rw-r--r-- | CONTRIBUTORS | 1 | ||||
| -rw-r--r-- | sys/targets/targets.go | 2 |
3 files changed, 3 insertions, 1 deletions
@@ -33,3 +33,4 @@ Siddharth Muralee Dan Robertson Mark Johnston Mellanox Technologies +Cody Holliday diff --git a/CONTRIBUTORS b/CONTRIBUTORS index c3404fedf..660123815 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -47,3 +47,4 @@ Dan Robertson Mark Johnston Mellanox Technologies Noa Osherovich +Cody Holliday diff --git a/sys/targets/targets.go b/sys/targets/targets.go index eaf6cc80e..da8c568fe 100644 --- a/sys/targets/targets.go +++ b/sys/targets/targets.go @@ -156,7 +156,7 @@ var List = map[string]map[string]*Target{ PageSize: 4 << 10, CFlags: []string{"-D__LINUX_ARM_ARCH__=6", "-m32", "-D__ARM_EABI__"}, CrossCFlags: []string{"-D__LINUX_ARM_ARCH__=6", "-march=armv6", "-static"}, - CCompilerPrefix: "arm-linux-gnueabihf-", + CCompilerPrefix: "arm-linux-gnueabi-", KernelArch: "arm", KernelHeaderArch: "arm", }, |
