Browse thread
OCaml 3.08.3 fails to compile under Fedora Core 4 (GCC 4).
-
Aleksey Nogin
-
Xavier Leroy
-
Aleksey Nogin
- Xavier Leroy
-
Aleksey Nogin
-
Xavier Leroy
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2005-06-19 (10:01) |
From: | Xavier Leroy <Xavier.Leroy@i...> |
Subject: | Re: [Caml-list] OCaml 3.08.3 fails to compile under Fedora Core 4 (GCC 4). |
> I've realized that in Fedora Extras 4 the ocaml package contains the > following patch: > - : "+&r" (a), "+&r" (b), "+&rm" (blen), "+&r" (out) > + : "+&r" (a), "+&r" (b), "+m" (blen), "+&r" (out) > Is this reasonable? Yes, very much so. You'll get better performance than with the workaround I suggested (disabling inline asm). I need to run a few tests with gcc 4, but eventually will fix the problem along these lines. > Also, > http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21291 suggests using -O0 > (which seems to work as well). That wil be costly in performance, especially if -O0 is applied to the whole OCaml runtime system (not just otherlibs/num). - Xavier Leroy