-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
all: sync and dedup the creation of the SYSNAME and OBJTYPE env vars (#…
…321) This should prevent the issues of dist/buildmk and src/mkhdr getting out of synchronization yet again. I also add a rule for arm64 to the OBJTYPE sed command. Fixes #243 Fixes #320 Change-Id: I60f69a1f32b5ed5ae5ac8a1659c38e29debed005
- Loading branch information
1 parent
f264bbc
commit 6f5bd96
Showing
3 changed files
with
22 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
SYSNAME=`uname` | ||
OBJTYPE=`(uname -m -p 2>/dev/null || uname -m) | sed ' | ||
s;.*i[3-6]86.*;386;; | ||
s;.*i86pc.*;386;; | ||
s;.*amd64.*;x86_64;; | ||
s;.*x86_64.*;x86_64;; | ||
s;.*armv.*;arm;g; | ||
s;.*powerpc.*;power;g; | ||
s;.*PowerMacintosh.*;power;g; | ||
s;.*Power.Macintosh.*;power;g; | ||
s;.*macppc.*;power;g; | ||
s;.*mips.*;mips;g; | ||
s;.*ppc64.*;power;g; | ||
s;.*ppc.*;power;g; | ||
s;.*alpha.*;alpha;g; | ||
s;.*sun4u.*;sun4u;g; | ||
s;.*aarch64.*;arm64; | ||
s;.*arm64.*;arm64; | ||
'` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,6 @@ | ||
#!/bin/sh | ||
|
||
# run this in the src directory | ||
SYSNAME=`uname` export SYSNAME | ||
OBJTYPE=`(uname -m -p 2>/dev/null || uname -m) | sed ' | ||
s;.*i[3-6]86.*;386;; | ||
s;.*i86pc.*;386;; | ||
s;.*amd64.*;x86_64;; | ||
s;.*x86_64.*;x86_64;; | ||
s;.*armv.*;arm;g; | ||
s;.*powerpc.*;power;g; | ||
s;.*PowerMacintosh.*;power;g; | ||
s;.*Power.Macintosh.*;power;g; | ||
s;.*macppc.*;power;g; | ||
s;.*mips.*;mips;g; | ||
s;.*ppc64.*;power;g; | ||
s;.*ppc.*;power;g; | ||
s;.*alpha.*;alpha;g; | ||
s;.*sun4u.*;sun4u;g; | ||
'` export OBJTYPE | ||
export SYSNAME OBJTYPE | ||
. ../buildEnvironmentVariables | ||
sh -x mkmk.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters