diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2012-06-26 16:01:05 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2012-06-26 16:01:05 +0000 |
commit | 6973c3b9daf970849a7d881f31f9c501422b4fb8 (patch) | |
tree | d57a4db688f5685f6f65d9d4a359f6c8a97fe168 | |
parent | b8238a8b61696e454e5fc391dec9d71555b909e9 (diff) |
PR#5255: natdynlink detection on powerpc, hurd, sparc
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12647 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | Changes | 4 | ||||
-rwxr-xr-x | configure | 5 |
2 files changed, 6 insertions, 3 deletions
@@ -149,7 +149,8 @@ Bug Fixes: - PR#5511: in Bigarray.reshape, unwarranted limitation on new array dimensions. - PR#5513: Int64.div causes floating point exception (ocamlopt, x86) - PR#5516: in Bigarray C stubs, use C99 flexible array types if possible -- PR#5531: Allow ocamlbuild to add ocamldoc flags through -docflag and -docflags switches +- PR#5531: Allow ocamlbuild to add ocamldoc flags through -docflag + and -docflags switches - PR#5543: in Bigarray.map_file, try to avoid using lseek() when growing file - PR#5538: combining -i and -annot in ocamlc - PR#5560: incompatible type for tuple pattern with -principal @@ -168,6 +169,7 @@ Feature wishes: or a non-empty value is set to "BYTECODE_ONLY" Makefile variable - PR#5236: new '%revapply' primitive with the semantics 'revapply x f = f x', and '%apply' with semantics 'apply f x = f x'. +- PR#5255: natdynlink detection on powerpc, hurd, sparc - PR#5297: compiler now checks existence of builtin primitives - PR#5329: (Windows) more efficient Unix.select if all fd's are sockets - PR#5358: first class modules don't allow "with type" declarations for types @@ -627,6 +627,7 @@ if test $withsharedlibs = "yes"; then case "$host" in *-*-cygwin*) natdynlink=true;; i[3456]86-*-linux*) natdynlink=true;; + i[3456]86-*-gnu*) natdynlink=true;; x86_64-*-linux*) natdynlink=true;; i[3456]86-*-darwin[89].*) natdynlink=true;; i[3456]86-*-darwin*) @@ -634,8 +635,8 @@ if test $withsharedlibs = "yes"; then natdynlink=true fi;; x86_64-*-darwin*) natdynlink=true;; - powerpc64-*-linux*) natdynlink=true;; - sparc-*-linux*) natdynlink=true;; + powerpc*-*-linux*) natdynlink=true;; + sparc*-*-linux*) natdynlink=true;; i686-*-kfreebsd*) natdynlink=true;; x86_64-*-kfreebsd*) natdynlink=true;; i[345]86-*-freebsd*) natdynlink=true;; |