[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Gm2] gm2 package built under jessie
From: |
Gaius Mulley |
Subject: |
Re: [Gm2] gm2 package built under jessie |
Date: |
Mon, 20 Apr 2015 20:56:31 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) |
Hi,
just reporting that gm2 works under (x86_64):
$ cat /etc/os-release
NAME="Ubuntu"
VERSION="14.04.2 LTS, Trusty Tahr"
ID=ubuntu
...
address@hidden:/home/gaius/GM2# cat /etc/apt/sources.list.d/gm2.list
#
# GNU Modula-2 repo
#
deb http://floppsie.comp.glam.ac.uk/debian/ jessie main
deb-src http://floppsie.comp.glam.ac.uk/debian/ jessie main
# apt-get install libpth-dev
# apt-get install gm2
$ cat hello.mod
MODULE hello ;
FROM libc IMPORT printf ;
BEGIN
printf ("hello world\n")
END hello.
$ gm2 -g hello.mod
$ ./a.out
hello world
Hope this helps,
regards,
Gaius