diff options
author | jtb <jtb> | 2003-05-02 17:48:28 +0000 |
---|---|---|
committer | jtb <jtb> | 2003-05-02 17:48:28 +0000 |
commit | 0cba3fa9e113c9b1b1b783ef7b85b30740ab14e7 (patch) | |
tree | 6565716758e29f262c1dc34c81f7323063ab0edb /lang/mercury/patches/patch-ag | |
parent | cddc918678c4814d1d882d33bb172b1e41681c05 (diff) | |
download | pkgsrc-0cba3fa9e113c9b1b1b783ef7b85b30740ab14e7.tar.gz |
Update mercury to version 0.11.0.
Changes to the Mercury language:
* Support for constrained polymorphic modes.
* Addition of state variable syntax.
* Improved support for higher-order functions.
* Predicate and function equivalence type and mode declarations.
* Support for defining predicates or functions
using different clauses for different modes.
* Support for Haskell-like "@" expressions.
* Generalized foreign language interface.
Changes to the Mercury compiler:
* A new `--make' option, for simpler building of programs.
* A new `--smart-recompilation' option, for fine-grained dependency tracking.
* A new optional warning: `--warn-non-tail-recursion'.
* A new optimization: `--constraint-propagation'.
* A new optimization: `--loop-invariants'.
* Support for arbitrary mappings from module name to source file name.
Portability improvements:
* Mac OS X is now supported "out-of-the-box".
* On Windows we now support generating non-Cygwin executables.
* Better conformance to ANSI/ISO C.
Changes to the compiler back-ends:
* The native code Linux/x86 back-end is now "release quality".
* The .NET CLR back-end is much improved.
Major improvements to the Mercury debugger, including:
* Support for source-linked debugging using vim (rather than emacs).
* Command-line completion.
* Ability to display values of higher-order terms.
* Declarative debugging.
* Support for transparent retries across I/O.
A new profiler, which we call the Mercury deep profiler or mdprof:
* Supports both time and memory profiling.
* Gathers information about individual call sites as well as procedures.
* Eliminates the assumption that all calls to a procedure have equal cost.
* Allows users to explore the gathered data interactively with a web browser.
Numerous minor improvements to the Mercury standard library.
A new testing tool in the extras distribution.
Diffstat (limited to 'lang/mercury/patches/patch-ag')
-rw-r--r-- | lang/mercury/patches/patch-ag | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lang/mercury/patches/patch-ag b/lang/mercury/patches/patch-ag deleted file mode 100644 index 22d1376e575..00000000000 --- a/lang/mercury/patches/patch-ag +++ /dev/null @@ -1,21 +0,0 @@ -$NetBSD: patch-ag,v 1.1.1.1 2001/05/15 21:09:57 jtb Exp $ - ---- runtime/Mmakefile.orig Mon Apr 2 15:52:13 2001 -+++ runtime/Mmakefile -@@ -17,7 +17,6 @@ - CFLAGS = -g $(DLL_CFLAGS) - MGNUC = MERCURY_ALL_C_INCL_DIRS=" \ - -I$(RUNTIME_DIR) \ -- -I$(BOEHM_GC_DIR) \ - -I$(BOEHM_GC_DIR)/include \ - " \ - $(SCRIPTS_DIR)/mgnuc -@@ -160,7 +159,7 @@ - OBJS = $(CFILES:.c=.$O) - PIC_OBJS = $(CFILES:.c=.$(EXT_FOR_PIC_OBJECTS)) - --LDFLAGS = -L$(BOEHM_GC_DIR) -+LDFLAGS = -L$(BOEHM_GC_DIR)/lib - LDLIBS = \ - ` case "$(GRADE)" in \ - *.par*.gc*.prof*) echo "-lpar_gc_prof" ;; \ |