fixed Makefile.am not to link unicosw in the mchar mode

This commit is contained in:
2012-08-20 15:08:06 +00:00
parent a2b51062a9
commit 5033596aee
8 changed files with 36 additions and 9 deletions

View File

@ -75,6 +75,12 @@
# define QSE_PRIVATE
#endif
#if defined(__GNUC__)
# define QSE_OPTIMIZE_NEVER __attribute__((optimize("O0")))
#else
# define QSE_OPTIMIZE_NEVER
#endif
/**
* The QSE_SIZEOF() macro gets data size in bytes. It is equivalent to the
* sizeof operator. The following code snippet should print sizeof(int)*128.