You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
443 B
26 lines
443 B
# Copyright 2006 The Android Open Source Project |
|
ifneq ($(filter $(TARGET_ARCH),arm arm64),) |
|
|
|
LOCAL_PATH:= $(call my-dir) |
|
|
|
include $(CLEAR_VARS) |
|
|
|
LOCAL_SRC_FILES := \ |
|
memtest.cpp \ |
|
fptest.cpp \ |
|
thumb.cpp \ |
|
bandwidth.cpp \ |
|
|
|
LOCAL_MODULE := memtest |
|
LOCAL_MODULE_TAGS := debug |
|
LOCAL_CFLAGS += \ |
|
-fomit-frame-pointer \ |
|
-Wall \ |
|
-Werror \ |
|
|
|
LOCAL_MULTILIB := 32 |
|
|
|
LOCAL_SANITIZE := never |
|
|
|
include $(BUILD_EXECUTABLE) |
|
endif
|
|
|