Added documentation for rare segfault in FreeBSD 64bits (Profiling profile) 1.1.0-rc2
authorSebastien Decugis <sdecugis@nict.go.jp>
Fri Jan 21 16:48:37 2011 +0900 (16 months ago)
changeset 696ff23fecac0b2
parent 695 712a0bb8d3bf
child 697 b032a26a8f76
Added documentation for rare segfault in FreeBSD 64bits (Profiling profile)
INSTALL.FreeBSD
     1.1 --- a/INSTALL.FreeBSD	Fri Jan 21 16:18:39 2011 +0900
     1.2 +++ b/INSTALL.FreeBSD	Fri Jan 21 16:48:37 2011 +0900
     1.3 @@ -100,3 +100,26 @@
     1.4    # make test
     1.5    
     1.6    
     1.7 +----------------------------------
     1.8 +Segmentation fault on program exit
     1.9 +----------------------------------
    1.10 +
    1.11 +In case you encounter a segmentation fault on program termination like this:
    1.12 +  [...]
    1.13 +  freeDiameterd framework is terminated.
    1.14 +  Segmentation fault: 11 (core dumped)
    1.15 +
    1.16 +with a backtrace like this:
    1.17 +  #0  0x0000000801a414a0 in ?? ()
    1.18 +  #1  0x0000000800f99274 in __cxa_finalize () from /lib/libc.so.7
    1.19 +  #2  0x0000000800f460b7 in exit () from /lib/libc.so.7
    1.20 +  
    1.21 +You may try to add the following compilation directive in cmake:
    1.22 +  -DSKIP_DLCLOSE:BOOL=ON
    1.23 +
    1.24 +Note: this segmentation fault was experienced with:
    1.25 + - FreeBSD 8.1
    1.26 + - 64 bits architecture only.
    1.27 + - Profiling mode only.
    1.28 +
    1.29 +