[Asterisk-Users] compiling cvs-head today?

2005-02-21 Thread Rich Adamson

Anyone having problems compiling the current cvs head this morning?

New cvs checkout on RH9, followed by appropriate make clean and make
install. System was running cvs head from Nov 23 with TDM card, PRI,
SIP phones on local wire, and IAX.

Appears zaptel and libpri compiled correctly, however the first attempt
in the asterisk src directory yielded:

gcc -pipe  -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wmissing-declarations -g  -Iinclude 
-I../include -D_REENTRANT -D_GNU_SOURCE  -O6 -march=i686   
-DZAPTEL_OPTIMIZATIONS  
-DASTERISK_VERSION=\CVS-HEAD-02/21/05-06:22:04\ -DASTERISK_VERSION_NUM=99 
-DINSTALL_PREFIX=\\ -DASTETCDIR=\/etc/asterisk\ 
-DASTLIBDIR=\/usr/lib/asterisk\ 
-DASTVARLIBDIR=\/var/lib/asterisk\ -DASTVARRUNDIR=\/var/run\ 
-DASTSPOOLDIR=\/var/spool/asterisk\ -DASTLOGDIR=\/var/log/asterisk\ 
-DASTCONFPATH=\/etc/asterisk/asterisk.conf\ 
-DASTMODDIR=\/usr/lib/asterisk/modules\ 
-DASTAGIDIR=\/var/lib/asterisk/agi-bin\ -DBUSYDETECT_MARTIN-c -o 
say.o say.c
say.c: In function `ast_say_number_full_tw':
say.c:2128: internal error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See URL:http://bugzilla.redhat.com/bugzilla/ for instructions.
The bug is not reproduceable, so it is likely a hardware or OS problem
make: *** [say.o] Error 1

Then, with another simple make clean and make install, yielded:

gcc -c  -Wall -pipe -g3 -O '-D__RCSID(x)=' '-D__COPYRIGHT(x)=' '-D__RENAME(x)=' 
'-D_DIAGASSERT(x)=' -I. readline.c -o readline.o_a
/usr/bin/ar cru libedit.a editline.o_a np/strlcat.o_a np/strlcpy.o_a 
np/fgetln.o_a np/vis.o_a 
np/unvis.o_a history.o_a tokenizer.o_a readline.o_a
ranlib libedit.a
make[1]: Leaving directory `/usr/src/asterisk/editline'
make[1]: Entering directory `/usr/src/asterisk/db1-ast'
gcc -Wall -c -D__DBINTERFACE_PRIVATE -O2 -I. -Iinclude -Ihash -o hash.o 
hash/hash.c
hash/hash.c: In function `__hash_open':
hash/hash.c:243: internal error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See URL:http://bugzilla.redhat.com/bugzilla/ for instructions.
make[1]: *** [hash.o] Error 1
make[1]: Leaving directory `/usr/src/asterisk/db1-ast'
make: *** [db1-ast/libdb1.a] Error 2

Not sure as yet what might have changed other then the asterisk box has
been stable since Nov 23 (other then the occasional TDM card lockup that
requires a restart of the drivers). This might not be an asterisk problem,
just not sure as yet.

Thoughts?


___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] compiling cvs-head today?

2005-02-21 Thread Steven Critchfield
On Mon, 2005-02-21 at 06:36 -0600, Rich Adamson wrote:
 Anyone having problems compiling the current cvs head this morning?
 
 New cvs checkout on RH9, followed by appropriate make clean and make
 install. System was running cvs head from Nov 23 with TDM card, PRI,
 SIP phones on local wire, and IAX.


 See URL:http://bugzilla.redhat.com/bugzilla/ for instructions.
 The bug is not reproduceable, so it is likely a hardware or OS problem
 make: *** [say.o] Error 1


 hash/hash.c:243: internal error: Segmentation fault
 Please submit a full bug report,
 with preprocessed source if appropriate.
 See URL:http://bugzilla.redhat.com/bugzilla/ for instructions.

Looks like a hardware problem as you had failures in different locations
but both where a gcc seg fault. This means either your CPU is hot and
starting to spit out randomness or your memory is failing and producing
randomness. Could be something else like low power supply and therefor
faulty writing/reading of data to/from memory. 

Any way around it looks like you are in for either a while of debugging
hardware or a hardware replacement regiment.

-- 
Steven Critchfield [EMAIL PROTECTED]

___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] compiling cvs-head today?

2005-02-21 Thread Rich Adamson
 On Mon, 2005-02-21 at 06:36 -0600, Rich Adamson wrote:
  Anyone having problems compiling the current cvs head this morning?
  
  New cvs checkout on RH9, followed by appropriate make clean and make
  install. System was running cvs head from Nov 23 with TDM card, PRI,
  SIP phones on local wire, and IAX.
 
 
  See URL:http://bugzilla.redhat.com/bugzilla/ for instructions.
  The bug is not reproduceable, so it is likely a hardware or OS problem
  make: *** [say.o] Error 1
 
 
  hash/hash.c:243: internal error: Segmentation fault
  Please submit a full bug report,
  with preprocessed source if appropriate.
  See URL:http://bugzilla.redhat.com/bugzilla/ for instructions.
 
 Looks like a hardware problem as you had failures in different locations
 but both where a gcc seg fault. This means either your CPU is hot and
 starting to spit out randomness or your memory is failing and producing
 randomness. Could be something else like low power supply and therefor
 faulty writing/reading of data to/from memory. 
 
 Any way around it looks like you are in for either a while of debugging
 hardware or a hardware replacement regiment.

Okay... this one is at a site 50 miles away where they are off on
holiday today. Guess I'll wait for someone to show up. ;)

Thanks


___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] compiling cvs-head today?

2005-02-21 Thread Steven Critchfield
On Mon, 2005-02-21 at 12:11 -0600, Rich Adamson wrote:
  On Mon, 2005-02-21 at 06:36 -0600, Rich Adamson wrote:
   Anyone having problems compiling the current cvs head this morning?
   
   New cvs checkout on RH9, followed by appropriate make clean and make
   install. System was running cvs head from Nov 23 with TDM card, PRI,
   SIP phones on local wire, and IAX.
  
  
   See URL:http://bugzilla.redhat.com/bugzilla/ for instructions.
   The bug is not reproduceable, so it is likely a hardware or OS problem
   make: *** [say.o] Error 1
  
  
   hash/hash.c:243: internal error: Segmentation fault
   Please submit a full bug report,
   with preprocessed source if appropriate.
   See URL:http://bugzilla.redhat.com/bugzilla/ for instructions.
  
  Looks like a hardware problem as you had failures in different locations
  but both where a gcc seg fault. This means either your CPU is hot and
  starting to spit out randomness or your memory is failing and producing
  randomness. Could be something else like low power supply and therefor
  faulty writing/reading of data to/from memory. 
  
  Any way around it looks like you are in for either a while of debugging
  hardware or a hardware replacement regiment.
 
 Okay... this one is at a site 50 miles away where they are off on
 holiday today. Guess I'll wait for someone to show up. ;)

If they are gone for holiday, it very well could be heat related. Try
your compiles a few hours after they get into the office and see if the
heat levels have changed.
-- 
Steven Critchfield [EMAIL PROTECTED]

___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] compiling cvs-head today?

2005-02-21 Thread David Brodbeck
 -Original Message-
 From: Steven Critchfield [mailto:[EMAIL PROTECTED]

 Looks like a hardware problem as you had failures in 
 different locations
 but both where a gcc seg fault. This means either your CPU is hot and
 starting to spit out randomness or your memory is failing and 
 producing
 randomness. Could be something else like low power supply and therefor
 faulty writing/reading of data to/from memory. 
 
 Any way around it looks like you are in for either a while of 
 debugging
 hardware or a hardware replacement regiment.

The first thing I usually do in these situations (after making sure the
machine's fans are all running and dust-free) is run MEMTEST-86.
http://www.memtest86.com/  It's not foolproof, but in my experience it
catches more memory problems than any other utility.
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] compiling cvs-head today?

2005-02-21 Thread Rich Adamson
 On Mon, 2005-02-21 at 12:11 -0600, Rich Adamson wrote:
   On Mon, 2005-02-21 at 06:36 -0600, Rich Adamson wrote:
Anyone having problems compiling the current cvs head this morning?

New cvs checkout on RH9, followed by appropriate make clean and make
install. System was running cvs head from Nov 23 with TDM card, PRI,
SIP phones on local wire, and IAX.
   
   
See URL:http://bugzilla.redhat.com/bugzilla/ for instructions.
The bug is not reproduceable, so it is likely a hardware or OS problem
make: *** [say.o] Error 1
   
   
hash/hash.c:243: internal error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See URL:http://bugzilla.redhat.com/bugzilla/ for instructions.
   
   Looks like a hardware problem as you had failures in different locations
   but both where a gcc seg fault. This means either your CPU is hot and
   starting to spit out randomness or your memory is failing and producing
   randomness. Could be something else like low power supply and therefor
   faulty writing/reading of data to/from memory. 
   
   Any way around it looks like you are in for either a while of debugging
   hardware or a hardware replacement regiment.
  
  Okay... this one is at a site 50 miles away where they are off on
  holiday today. Guess I'll wait for someone to show up. ;)
 
 If they are gone for holiday, it very well could be heat related. Try
 your compiles a few hours after they get into the office and see if the
 heat levels have changed.

This one is located in a data center with a fair air handler in place,
so more likely its a mem or power supply issue.

Rich


___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users