1 | When compiling on DECstation running Ultrix 4.0 a command 'cc -c -O
|
---|
2 | regex.c' is causing an infinite loop in an optimizer. Other sources
|
---|
3 | compile fine with -O flag. If you are going to use this flag either
|
---|
4 | add a special rule to Makefile for a compilation of regex.c, or issue
|
---|
5 | 'cc -c regex.c' before hitting 'make'.
|
---|
6 |
|
---|
7 | From: Steve Simmons <scs@wotan.iti.org>
|
---|
8 | Subject: Non-bug report on gawk 2.13.2
|
---|
9 | To: david@cs.dal.ca, arnold@skeeve.atl.ga.us
|
---|
10 | Date: Thu, 25 Jul 1991 13:45:38 -0300
|
---|
11 |
|
---|
12 | Just fyi -- it passes tests with flying colors under Ultrix 4.2. The
|
---|
13 | README.ultrix file applies more than ever. You might want to add
|
---|
14 | these paragraphs to it:
|
---|
15 |
|
---|
16 | As of Ultrix 4.2 the optimise works for regex.c, but you must give an
|
---|
17 | additional switch to get everything optimised. Using '-Olimit 1500'
|
---|
18 | does the job. Without the switch gawk will compile and run correctly,
|
---|
19 | but you will get complaints about lost optimisations in builtin.c,
|
---|
20 | awk.tab.c and regex.c.
|
---|
21 |
|
---|
22 | From: Arnold Robbins <arnold@math.utah.edu>
|
---|
23 | Date: Sun Sep 8 07:05:07 EDT 1996
|
---|
24 |
|
---|
25 | On Decstations using Ultrix 4.3, the tweakfld test case will fail. It
|
---|
26 | appears that routines in the math library return very small but non-zero
|
---|
27 | numbers in cases where most other systems return zero.
|
---|
28 |
|
---|
29 | From: Juergen Kahrs <jkahrs@castor.atlas.de>
|
---|
30 | Date: Wed Jan 17 13:15:34 MET 2001
|
---|
31 |
|
---|
32 | On Ultrix 4.3, configure like this:
|
---|
33 |
|
---|
34 | ./configure --disable-nls
|
---|
35 |
|
---|
36 | In custom.h, we defined HAVE_MKTIME in order to avoid a linker error.
|
---|
37 | If you compile with
|
---|
38 |
|
---|
39 | make check
|
---|
40 |
|
---|
41 | every test will pass, except for the badargs test:
|
---|
42 |
|
---|
43 | *** Error code 1 (ignored)
|
---|
44 |
|
---|
45 | This shouldnt cause problems.
|
---|
46 |
|
---|