calejost / unimrcp

Automatically exported from code.google.com/p/unimrcp
Apache License 2.0
0 stars 0 forks source link

Sofia-SIP compliance issue with gcc 4.8 #169

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I'm attaching a patch to this report which makes Sofia-SIP comply with gcc 4.8 
and above. The patch will be included in future releases of UniMRCP 
dependencies.

The problem is in the gcc loop optimizers introduced in 4.8 version, which 
detect a loop operating with out of bounds memory and then optimize it with 
something undefined since, according to the C standard, out of bounds behavior 
is undefined. The problem could have been addressed by using the new option 
-fno-aggressive-loop-optimization as well.

Original issue reported on code.google.com by achalo...@gmail.com on 24 Apr 2014 at 7:49

Attachments:

GoogleCodeExporter commented 8 years ago
The patch has been included in UniMRCP dependencies 1.2.1 release.

http://unimrcp.org/project/release-view/unimrcp-deps-1-2-1

Original comment by achalo...@gmail.com on 5 Sep 2014 at 2:32