Lines 1-6
Link Here
|
1 |
--- build/BSD.inc.orig 2018-06-19 16:04:20 UTC |
1 |
--- build/BSD.inc.orig 2019-03-21 15:28:21 UTC |
2 |
+++ build/BSD.inc |
2 |
+++ build/BSD.inc |
3 |
@@ -26,17 +26,23 @@ ifndef arch |
3 |
@@ -26,17 +26,26 @@ ifndef arch |
4 |
ifeq ($(shell uname -m),amd64) |
4 |
ifeq ($(shell uname -m),amd64) |
5 |
export arch:=intel64 |
5 |
export arch:=intel64 |
6 |
endif |
6 |
endif |
Lines 10-15
Link Here
|
10 |
+ ifeq ($(shell uname -m),arm64) |
10 |
+ ifeq ($(shell uname -m),arm64) |
11 |
+ export arch:=arm64 |
11 |
+ export arch:=arm64 |
12 |
+ endif |
12 |
+ endif |
|
|
13 |
+ ifeq ($(shell uname -p),powerpc64) |
14 |
+ export arch:=powerpc64 |
15 |
+ endif |
13 |
endif |
16 |
endif |
14 |
|
17 |
|
15 |
ifndef runtime |
18 |
ifndef runtime |
Lines 27-33
Link Here
|
27 |
debugger ?= gdb |
30 |
debugger ?= gdb |
28 |
|
31 |
|
29 |
CMD=$(SHELL) -c |
32 |
CMD=$(SHELL) -c |
30 |
@@ -46,7 +52,7 @@ RD?=rmdir |
33 |
@@ -46,7 +55,7 @@ RD?=rmdir |
31 |
MD?=mkdir -p |
34 |
MD?=mkdir -p |
32 |
NUL= /dev/null |
35 |
NUL= /dev/null |
33 |
SLASH=/ |
36 |
SLASH=/ |