wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 1 | # |
| 2 | # (C) Copyright 2003 |
| 3 | # Wolfgang Denk, DENX Software Engineering, <wd@denx.de> |
| 4 | # |
| 5 | # See file CREDITS for list of people who contributed to this |
| 6 | # project. |
| 7 | # |
| 8 | # This program is free software; you can redistribute it and/or |
| 9 | # modify it under the terms of the GNU General Public License as |
| 10 | # published by the Free Software Foundation; either version 2 of |
| 11 | # the License, or (at your option) any later version. |
| 12 | # |
| 13 | # This program is distributed in the hope that it will be useful, |
| 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | # GNU General Public License for more details. |
| 17 | # |
| 18 | # You should have received a copy of the GNU General Public License |
| 19 | # along with this program; if not, write to the Free Software |
| 20 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | # MA 02111-1307 USA |
| 22 | # |
Shinya Kuribayashi | 141ba1c | 2008-05-03 13:51:44 +0900 | [diff] [blame] | 23 | v=$(shell $(AS) --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2) |
Shinya Kuribayashi | e682ba3 | 2008-02-23 16:58:41 +0900 | [diff] [blame] | 24 | MIPSFLAGS:=$(shell \ |
wdenk | e3c9b9f | 2004-10-24 23:54:40 +0000 | [diff] [blame] | 25 | if [ "$v" -lt "14" ]; then \ |
Wolfgang Denk | 2191923 | 2005-08-08 23:06:32 +0200 | [diff] [blame] | 26 | echo "-mcpu=4kc"; \ |
wdenk | e3c9b9f | 2004-10-24 23:54:40 +0000 | [diff] [blame] | 27 | else \ |
Wolfgang Denk | c75eba3 | 2005-12-01 02:15:07 +0100 | [diff] [blame] | 28 | echo "-march=4kc -mtune=4kc"; \ |
wdenk | e3c9b9f | 2004-10-24 23:54:40 +0000 | [diff] [blame] | 29 | fi) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 30 | |
Wolfgang Denk | 2191923 | 2005-08-08 23:06:32 +0200 | [diff] [blame] | 31 | ifneq (,$(findstring 4KCle,$(CROSS_COMPILE))) |
| 32 | ENDIANNESS = -EL |
| 33 | else |
| 34 | ENDIANNESS = -EB |
| 35 | endif |
| 36 | |
Shinya Kuribayashi | 00101dd | 2007-10-21 21:30:42 +0900 | [diff] [blame] | 37 | MIPSFLAGS += $(ENDIANNESS) |
Wolfgang Denk | 2191923 | 2005-08-08 23:06:32 +0200 | [diff] [blame] | 38 | |
wdenk | e3c9b9f | 2004-10-24 23:54:40 +0000 | [diff] [blame] | 39 | PLATFORM_CPPFLAGS += $(MIPSFLAGS) |