mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-11 06:02:37 -05:00
workaround weird gcc behaviour
it might a bug in the 4 years old gcc version, but __ASSEMBLER__ is not defined when preprocessing .S files with -std=gnu99 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28026 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7791843a37
commit
5a329ded5c
1 changed files with 6 additions and 0 deletions
|
|
@ -23,6 +23,12 @@ along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* workaround gcc 3.4.6 -std=gnu99 */
|
||||||
|
#ifndef __ASSEMBLER
|
||||||
|
#define __ASSEMBLER__
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "demac_config.h"
|
#include "demac_config.h"
|
||||||
|
|
||||||
/* NOTE: The following need to be kept in sync with parser.h */
|
/* NOTE: The following need to be kept in sync with parser.h */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue