diff options
author | Per Bothner <per@bothner.com> | 1994-03-11 20:58:16 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1994-03-11 20:58:16 +0000 |
commit | 545f07da90b71e07b17338ea789135f7d94539ca (patch) | |
tree | f3bf9e92080164b0d2b0f31940c83a8651f16caf /config.guess | |
parent | 8e4c7b3e255fc2961aa8db48ba0ca99a6b156f4f (diff) | |
download | gdb-545f07da90b71e07b17338ea789135f7d94539ca.zip gdb-545f07da90b71e07b17338ea789135f7d94539ca.tar.gz gdb-545f07da90b71e07b17338ea789135f7d94539ca.tar.bz2 |
* config.guess: Recognize i[34]86-unknown-freebsd.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.guess b/config.guess index 6d26cab..4efa722 100755 --- a/config.guess +++ b/config.guess @@ -183,6 +183,9 @@ EOF hp3[0-9][05]:NetBSD:*:*) echo m68k-hp-netbsd${UNAME_RELEASE} exit 0 ;; + i[34]86:FreeBSD:*:*) + echo ${UNAME_MACHINE}-unknown-freebsd${UNAME_RELEASE} + exit 0 ;; i[34]86:NetBSD:*:*) echo ${UNAME_MACHINE}-unknown-netbsd${UNAME_RELEASE} exit 0 ;; |