Changeset 1621


Ignore:
Timestamp:
07/27/10 17:03:27 (3 years ago)
Author:
salcock
Message:
  • Disable strict aliasing for traceanon - we do scary casting in rijndael.c that doesn't work with strict aliasing. Could be fixed but way too much work now :)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/traceanon/Makefile.am

    r482 r1621  
    66include ../Makefile.tools 
    77traceanon_SOURCES = traceanon.c rijndael.h rijndael.c panon.h panon.c ipenc.c ipenc.h  
     8 
     9# rijndael.c does lots of nasty casting that is going to be a nightmare to fix 
     10# and debug - I'm going to disable this warning in the interim, as it's really 
     11# messy and hopefully isn't actually an issue.  
     12traceanon_CFLAGS = -fno-strict-aliasing $(AM_CFLAGS) 
Note: See TracChangeset for help on using the changeset viewer.