da0c870b94
Source Code:https://github.com/Keith-S-Thompson/dhrystone Signed-off-by: chenrun1 <chenrun1@xiaomi.com>
53 lines
1.8 KiB
Makefile
53 lines
1.8 KiB
Makefile
############################################################################
|
|
# apps/benchmarks/dhrystone/Makefile
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership. The
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance with the
|
|
# License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
############################################################################
|
|
|
|
include $(APPDIR)/Make.defs
|
|
|
|
#dhrystone
|
|
|
|
PROGNAME = $(CONFIG_BENCHMARK_DHRYSTONE_PROGNAME)
|
|
PRIORITY = $(CONFIG_BENCHMARK_DHRYSTONE_PRIORITY)
|
|
STACKSIZE = $(CONFIG_BENCHMARK_DHRYSTONE_STACKSIZE)
|
|
MODULE = $(CONFIG_BENCHMARK_DHRYSTONE)
|
|
|
|
CFLAGS += -DMSC_CLOCK
|
|
|
|
CSRCS += dhrystone/v2.1/dhry_2.c
|
|
|
|
MAINSRC = dhrystone/v2.2/dry.c
|
|
|
|
ifeq ($(wildcard dhrystone/.git),)
|
|
VERSION ?= master
|
|
dhrystone.zip:
|
|
$(Q) curl -L https://github.com/Keith-S-Thompson/dhrystone/archive/refs/heads/master.zip -o dhrystone.zip
|
|
$(Q) unzip -o dhrystone.zip
|
|
$(Q) mv dhrystone-$(VERSION) dhrystone
|
|
$(Q) patch -p0 < 0001-dry2.2-Fix-malloc-type-mismatch.patch
|
|
$(Q) patch -p0 < 0002-dhrystone-fix-redefine-warning.patch
|
|
|
|
context:: dhrystone.zip
|
|
|
|
distclean::
|
|
$(call DELDIR, dhrystone)
|
|
$(call DELFILE, dhrystone.zip)
|
|
endif
|
|
|
|
include $(APPDIR)/Application.mk
|