e620f4d6f8
Most of currently mentioned CFLAGS in arc770/Makefile are not really required because: [1] "-Os -pipe" are set by default in include/target.mk [2] "-fno-caller-saves" gets enabled via menuconfig as an extra compiler flag for developers So the only one that makes sense is "-matomic" and that one is really essential. Without it many software packges won't build complainin on unresolved atomic ops. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Felix Fietkau <nbd@openwrt.org> Cc: Jo-Philipp Wich <jow@openwrt.org> Cc: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 48326
26 lines
489 B
Makefile
26 lines
489 B
Makefile
#
|
|
# Copyright (C) 2015 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
ARCH:=arc
|
|
BOARD:=arc770
|
|
BOARDNAME:=Synopsys DesignWare ARC 770D
|
|
MAINTAINER:=Alexey Brodkin <abrodkin@synopsys.com>
|
|
SUBTARGETS:=generic
|
|
|
|
KERNEL_PATCHVER:=4.4
|
|
|
|
DEVICE_TYPE:=developerboard
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
define Target/Description
|
|
Synopsys DesignWare boards
|
|
endef
|
|
|
|
$(eval $(call BuildTarget))
|