From 018427eebd67e96a7ab5b19e2f169f97c5c30836 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 18 Apr 1995 03:17:12 +0000 Subject: [PATCH] (m68k-motorola-sysv*): Determine which -m option to use with `gnucc'. --- configure.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 06c8ebeb7f2..255c2cb6062 100644 --- a/configure.in +++ b/configure.in @@ -274,7 +274,11 @@ case "${canonical}" in m68k-motorola-sysv* | m68000-motorola-sysv* ) machine=delta opsys=usg5-3 if test -z "`type gnucc | grep 'not found'`" - then CC=gnucc + then + if test -s /etc/167config + then CC="gnucc -m68040" + else CC="gnucc -m68881" + fi else if test -z "`type gcc | grep 'not found'`" then CC=gcc -- 2.39.5