[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: bison 1.29 build failed (make check) on tru64 4.0E
From: |
Akim Demaille |
Subject: |
Re: bison 1.29 build failed (make check) on tru64 4.0E |
Date: |
13 Sep 2001 15:14:11 +0200 |
User-agent: |
Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.4 (Artificial Intelligence) |
Hi!
1.29's test suite is known to be broken, 1.30 should be released
soon. Could you give it a try? TIA! Just paste it in tests/ before
make check again.
testsuite.gz
Description: Binary data
| ./configure
| make
| make check
|
| all tests failed on tru64 (digital unix) 4.0E
|
| /work/gastin/bison-1.29/tests> cc -V
| Compaq C V6.4-214 (dtk) on Digital UNIX V4.0E (Rev. 1091)
| Compiler Driver V6.4-014 (dtk) cc Driver
|
| At the end , I receive somes message like :
|
| fatal error: memory exhausted
I guess this is the parser which complains, right?
| or
|
| cc: Severe: calc.y, line 4: Cannot find file <config.h> specified in #include
while here, it's your compiler. Hm, I have some suspicion for the
first one, but the latter is weird. We'll track this down with the
new test suite.
| ## ----------- ##
| ## ChangeLogs. ##
| ## ----------- ##
|
| testsuite: {}:
Heck. DU is really the most stupid of all the modern Unices :(
Do you how this should be written for DU to work properly?
find . -name config.log \
-exec echo "$as_me: {}:" ';' \
-exec sed 's/^/| /' {} ';' \
-exec echo ';'
I guess this will work:
find . -name config.log \
-exec echo "$as_me:" {} ":" ';' \
-exec sed 's/^/| /' {} ';' \
-exec echo ';'
How *stupid* :(