mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-14 05:12:33 +00:00
Estimated hours taken: 2 Branches: main Fix link problems on murlibobo caused by my recent changes to the way libmer_std.so and libmer_browser.so are built. The problem was due to shared libraries being renamed after they were built without telling the linker. library/mer_std.m: browser/mer_browser.m: Empty modules used to generate the libraries with the correct names. library/Mmakefile: browser/Mmakefile: Build and install libmer_std.* and libmer_browser.* rather than liblibrary.* and libmdb.*. Mmake.workspace: Mmake.common.in: Make sure SO_LOCATIONS_DIR is in ml's environment when building the libraries. Fix the order of the `-l' options. compiler/Mmakefile: Make sure `main.o' comes before the library `.a' files on the ml command line. doc/Mmakefile: Add mer_std.m to the list of files for which documentation should not be generated. trace/Mmakefile: Add the grade-specific library directory to the rpath for libmer_trace.so.
17 lines
626 B
Mathematica
17 lines
626 B
Mathematica
%-----------------------------------------------------------------------------%
|
|
% Copyright (C) 2002 University of Melbourne.
|
|
% This file may only be copied under the terms of the GNU General
|
|
% Public License - see the file COPYING in the Mercury distribution.
|
|
%-----------------------------------------------------------------------------%
|
|
% File: mer_browser.m
|
|
% Main author: stayl
|
|
%
|
|
% This file is only present so that the browser library is
|
|
% generated with the correct name.
|
|
%-----------------------------------------------------------------------------%
|
|
:- module mer_browser.
|
|
|
|
:- implementation.
|
|
|
|
:- import_module mdb.
|