• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GCC with patches for OS216


Commit MetaInfo

修订版e37bbf01f6afabf61299f6f0959f282ae0a7d8e6 (tree)
时间1999-08-05 04:54:32
作者Rainer Orth <ro@Tech...>
CommiterTom Tromey

Log Message

configure.in (machdep): Use mips_ultrix_mach_dep.s on Ultrix V4.

Mon Aug 2 23:09:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>

* configure.in (machdep): Use mips_ultrix_mach_dep.s on Ultrix V4.

From-SVN: r28504

更改概述

差异

--- a/boehm-gc/ChangeLog
+++ b/boehm-gc/ChangeLog
@@ -1,3 +1,7 @@
1+Mon Aug 2 23:09:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
2+
3+ * configure.in (machdep): Use mips_ultrix_mach_dep.s on Ultrix V4.
4+
15 1999-08-02 Tom Tromey <tromey@cygnus.com>
26
37 * aclocal.m4, configure: Rebuilt for new libtool.
--- a/boehm-gc/configure
+++ b/boehm-gc/configure
@@ -2394,12 +2394,6 @@ case "$host" in
23942394 alpha*-*-*)
23952395 machdep="alpha_mach_dep.lo"
23962396 ;;
2397- mips-*-*)
2398- machdep="mips_sgi_mach_dep.lo"
2399- cat >> confdefs.h <<\EOF
2400-#define NO_EXECUTE_PERMISSION 1
2401-EOF
2402-
24032397 ;;
24042398 mipstx39-*-elf*)
24052399 machdep="mips_ultrix_mach_dep.lo"
@@ -2412,6 +2406,15 @@ EOF
24122406 EOF
24132407
24142408 ;;
2409+ mips-dec-ultrix*)
2410+ machdep="mips_ultrix_mach-dep.lo"
2411+ ;;
2412+ mips-*-*)
2413+ machdep="mips_sgi_mach_dep.lo"
2414+ cat >> confdefs.h <<\EOF
2415+#define NO_EXECUTE_PERMISSION 1
2416+EOF
2417+
24152418 sparc-sun-solaris2.3*)
24162419 cat >> confdefs.h <<\EOF
24172420 #define SUNOS53_SHARED_LIB 1
--- a/boehm-gc/configure.in
+++ b/boehm-gc/configure.in
@@ -137,15 +137,18 @@ case "$host" in
137137 alpha*-*-*)
138138 machdep="alpha_mach_dep.lo"
139139 ;;
140- mips-*-*)
141- machdep="mips_sgi_mach_dep.lo"
142- AC_DEFINE(NO_EXECUTE_PERMISSION)
143140 ;;
144141 mipstx39-*-elf*)
145142 machdep="mips_ultrix_mach_dep.lo"
146143 AC_DEFINE(STACKBASE, __stackbase)
147144 AC_DEFINE(DATASTART_IS_ETEXT)
148145 ;;
146+ mips-dec-ultrix*)
147+ machdep="mips_ultrix_mach-dep.lo"
148+ ;;
149+ mips-*-*)
150+ machdep="mips_sgi_mach_dep.lo"
151+ AC_DEFINE(NO_EXECUTE_PERMISSION)
149152 sparc-sun-solaris2.3*)
150153 AC_DEFINE(SUNOS53_SHARED_LIB)
151154 ;;