| Summary: | Stabilize dev-lang/mercury-11.01 and dev-lang/mercury-extras-11.01 | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Keri Harris <keri> |
| Component: | [OLD] Development | Assignee: | Keri Harris <keri> |
| Status: | RESOLVED FIXED | ||
| Severity: | enhancement | Keywords: | STABLEREQ |
| Priority: | Normal | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
Keri Harris
2011-06-14 06:50:14 UTC
amd64: All emerged ok, not (yet) used it as such If is needed only compilation is ok, otherwise can you provide with an example like "hello world" ? and take a look at Bug 372149 (In reply to comment #2) > If is needed only compilation is ok, otherwise can you provide with an example > like "hello world" ? Fortunately the mercury test suite along with compiling the mercury-extras package provide a comprehensive test of mercury's functionality. If you want to get your hands dirty and test the mercury compiler for yourself, then the following hello world program should suffice: $ cat hello_world.m :- module hello_world. :- interface. :- import_module io. :- pred main(io::di, io::uo) is det. :- implementation. main(!IO) :- io.write_string("Hello, World!\n", !IO). $ mmc hello_world.m $ ./hello_world Hello, World! (In reply to comment #3) > and take a look at Bug 372149 Thanks for lodging that bug - I've committed a fix to CVS. simple program works, ok here amd64 done. Thanks Agostino Builds fine on x86. Tests run fine. Please mark stable for x86. x86 stable, thanks Myckel ppc keywords dropped |