2020-12-09 11:33:04 +01:00
|
|
|
$NetBSD: patch-otherlibs_Makefile.otherlibs.common,v 1.3 2020/12/09 10:33:04 jaapb Exp $
|
Updated lang/ocaml to 4.08.1.
4.08.1 is a bugfix release, fixing compilation failures in presence of the
-pack option, and dynlinking failures.
Highlights in 4.08.0 are:
* Binding operators (let*, let+, and*, etc). They can be used to
streamline monadic code.
* open now applies to arbitrary module expression in structures and to
applicative paths in signatures.
* A new notion of (user-defined) "alerts" generalizes the deprecated
warning.
* New modules in the standard library: Fun, Bool, Int, Option, Result.
* A significant number of new functions in Float, including FMA support,
and a new Float.Array submodule.
* Source highlighting for errors and warnings in batch mode.
* Many error messages were improved.
* Improved AFL instrumentation for objects and lazy values.
2019-08-24 12:54:23 +02:00
|
|
|
|
|
|
|
Honor LDFLAGS.
|
2020-01-14 20:53:35 +01:00
|
|
|
|
2020-12-09 11:33:04 +01:00
|
|
|
--- otherlibs/Makefile.otherlibs.common.orig 2020-01-10 16:10:46.000000000 +0000
|
Updated lang/ocaml to 4.08.1.
4.08.1 is a bugfix release, fixing compilation failures in presence of the
-pack option, and dynlinking failures.
Highlights in 4.08.0 are:
* Binding operators (let*, let+, and*, etc). They can be used to
streamline monadic code.
* open now applies to arbitrary module expression in structures and to
applicative paths in signatures.
* A new notion of (user-defined) "alerts" generalizes the deprecated
warning.
* New modules in the standard library: Fun, Bool, Int, Option, Result.
* A significant number of new functions in Float, including FMA support,
and a new Float.Array submodule.
* Source highlighting for errors and warnings in batch mode.
* Many error messages were improved.
* Improved AFL instrumentation for objects and lazy values.
2019-08-24 12:54:23 +02:00
|
|
|
+++ otherlibs/Makefile.otherlibs.common
|
2020-12-09 11:33:04 +01:00
|
|
|
@@ -51,7 +51,7 @@ COBJS ?=
|
|
|
|
EXTRACFLAGS ?=
|
|
|
|
EXTRACAMLFLAGS ?=
|
|
|
|
LINKOPTS ?=
|
|
|
|
-LDOPTS ?=
|
|
|
|
+LDOPTS ?= -ldopt "$(LDFLAGS)"
|
|
|
|
HEADERS ?=
|
Updated lang/ocaml to 4.08.1.
4.08.1 is a bugfix release, fixing compilation failures in presence of the
-pack option, and dynlinking failures.
Highlights in 4.08.0 are:
* Binding operators (let*, let+, and*, etc). They can be used to
streamline monadic code.
* open now applies to arbitrary module expression in structures and to
applicative paths in signatures.
* A new notion of (user-defined) "alerts" generalizes the deprecated
warning.
* New modules in the standard library: Fun, Bool, Int, Option, Result.
* A significant number of new functions in Float, including FMA support,
and a new Float.Array submodule.
* Source highlighting for errors and warnings in batch mode.
* Many error messages were improved.
* Improved AFL instrumentation for objects and lazy values.
2019-08-24 12:54:23 +02:00
|
|
|
CMIFILES ?= $(CAMLOBJS:.cmo=.cmi)
|
|
|
|
CAMLOBJS_NAT ?= $(CAMLOBJS:.cmo=.cmx)
|