summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathaniel Graff <nathaniel.graff@sifive.com>2019-05-31 18:27:26 +0000
committerGitHub <noreply@github.com>2019-05-31 18:27:26 +0000
commit3a5c06a362a39f2a41d2baa07badd38237be03e6 (patch)
tree1c480c95a5f815365ff13a51e01ac49fe60da494
parentd516289afde249b9b649ff95420b02817db74532 (diff)
parentfaf96e8d8236c12853b2088300924d4e6d0ba910 (diff)
Merge pull request #263 from sifive/disable-dhrystone-ramrodata-boards
Disable ramrodata for dhrystone on boards with 16k RAM
-rw-r--r--scripts/standalone.mk8
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/standalone.mk b/scripts/standalone.mk
index 6b83a29..6f87950 100644
--- a/scripts/standalone.mk
+++ b/scripts/standalone.mk
@@ -39,7 +39,13 @@ endif
ifeq ($(PROGRAM),dhrystone)
ifeq ($(LINK_TARGET),)
-LINK_TARGET = ramrodata
+ ifneq ($(TARGET),freedom-e310-arty)
+ ifneq ($(TARGET),sifive-hifive1)
+ ifneq ($(TARGET),sifive-hifive1-revb)
+ LINK_TARGET = ramrodata
+ endif
+ endif
+ endif
endif
endif