blob: 550c44cafd3a626571f10d456f50504a9c20e4d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
-*- Text -*-
unreleased
Version 1.3.2
* Don't accept the `-R' (msg_send) command line option anymore and make the
`-r' one (msg_rpc) a no-op.
* Fix warnings when compiling generated files with GCC 4.x.
* Handle the preprocessor option `-isystem' correctly.
* Cope with command line arguments that contain whitespace.
* Make the installation tree relocatable.
* Be more careful to catch write errors when closing files.
* The `debian/' subdirectory of packaging files is not included anymore.
29 August 2002
Version 1.3.1
* Fix warnings when compiling generated files with GCC 3.x.
* Fix alignment issues for greater than 32 bit types on 32 bit
machines.
* Alpha fixes.
8 March 2002
Version 1.3
* Minor bug fixes.
* The new keyword `retcode' is accepted as a parameter modifier.
This does not do anything, but is accepted for compatibility
with the MiG input syntax used with OSF Mach.
* The debian/ subdirectory of packaging files is now included in the
MiG source distribution.
7 June 2001
Version 1.2
* New option -n to suppress default output file creation.
With -n, no output files are created except those named
by other command-line options.
* New option -list to generate a file listing RPC names and message ID numbers.
The output is in six columns:
subsystem-name subsystem-base rpc-name rpc-num msg-id reply-id
For example this output line:
io 21000 io_read 1 21001 21101
says that the file used `subsystem io 21000' and defined an RPC called
`io_read' with message ID 21000+1 = 21001; the reply message ID is
computed 21001+100 = 21101. In this example:
io 21000 io_reauthenticate 14 21014 0
the declaration is a `simpleroutine' that expects no reply, so 0 is
printed in place of the computed reply message ID. The output list
these examples is generated on a GNU/Hurd system with this command:
mig -n -list /dev/stdout /include/hurd/io.defs
* Output files of C source now start by defining _GNU_SOURCE,
for compatibility with the GNU C library on GNU/Hurd.
22 June 1999
Version 1.1
* First official net release.
23 May 1999
Version 1.0.2
* Understand normal GNU --version and --help args.
* Find CPP in a more flexible fashion.
4 December 1998
Version 1.0.1
* This release fixes a bug in the `mig' driver script that made it fail to
invoke the C preprocessor properly.
19 July 1998
Version 1.0
* MiG has been split into a separate distribution to make it easier to set
up a compilation environment for GNU Mach and Hurd systems. The mig
program itself in this distribution has not been substantively changed
from the version in the GNUmach 1.1.3 distribution.
|