diff options
author | Russ Cox <rsc@swtch.com> | 2020-12-30 07:39:16 -0500 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2020-12-30 07:53:28 -0500 |
commit | 99dee78c2d44641ba56e5bb640d732f993b3dfa1 (patch) | |
tree | 3e785ab1037b96d4eb2dc321925bc0733332cea8 /bin/9a | |
parent | 0bd14783426d137428ffae7cd89cfc06b88d1b11 (diff) | |
download | plan9port-99dee78c2d44641ba56e5bb640d732f993b3dfa1.tar.gz plan9port-99dee78c2d44641ba56e5bb640d732f993b3dfa1.tar.bz2 plan9port-99dee78c2d44641ba56e5bb640d732f993b3dfa1.zip |
all: remove $OBJTYPE from build
Now that we assume pthreads, the only assembly
left is in libmp and libsec.
We only ever added assembly for 386.
The portable C code is fine for plan9port.
Diffstat (limited to 'bin/9a')
-rwxr-xr-x | bin/9a | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/bin/9a b/bin/9a deleted file mode 100755 index 753797c8..00000000 --- a/bin/9a +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh - -if [ $# != 1 ]; then - echo 'usage: 9a file.s' 1>&2 - exit 1 -fi - -test -f $PLAN9/config && . $PLAN9/config - -aflags="" -case "`uname`-${OBJTYPE:-`uname -m`}" in -Darwin-*386*) - aflags="-arch i386" - ;; -Darwin-*x86_64*) - aflags="-arch x86_64" - ;; -esac - -out=`echo $1 | sed 's/\.s$//;s/$/.o/'` -exec as $aflags -o $out $1 |