aboutsummaryrefslogtreecommitdiff
path: root/eight_bit_int_gemm
diff options
context:
space:
mode:
authorMiao Wang <miaowang@google.com>2015-07-13 14:23:34 -0700
committerMiao Wang <miaowang@google.com>2015-07-14 21:05:21 -0700
commitd3b4d7827e5b4cf711d6d2a20c068dd77b784552 (patch)
tree6664c118bc4dca2b6afbdcd721dcbff78e9c94e3 /eight_bit_int_gemm
parent93754b5dffa13928fecbf35808113fbb0235775e (diff)
downloadgemmlowp-d3b4d7827e5b4cf711d6d2a20c068dd77b784552.tar.gz
Add Android.mk to build gemmlowp static libs for both native RS and the
support lib. Change-Id: I838321773e87a4d382c2c88ed5ad3af15e2f2d31
Diffstat (limited to 'eight_bit_int_gemm')
-rw-r--r--eight_bit_int_gemm/Android.mk43
1 files changed, 43 insertions, 0 deletions
diff --git a/eight_bit_int_gemm/Android.mk b/eight_bit_int_gemm/Android.mk
new file mode 100644
index 0000000..bca39c5
--- /dev/null
+++ b/eight_bit_int_gemm/Android.mk
@@ -0,0 +1,43 @@
+# Copyright (C) 2015 The Android Open Source Project
+#
+# Licensed 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.
+
+LOCAL_PATH:=$(call my-dir)
+
+include $(CLEAR_VARS)
+LOCAL_CLANG := true
+LOCAL_MODULE := libbnnmlowp
+
+LOCAL_CPP_EXTENSION := .cc
+LOCAL_SRC_FILES:= eight_bit_int_gemm.cc
+
+LOCAL_CFLAGS += -no-integrated-as -std=c++11
+LOCAL_C_INCLUDES += external/gemmlowp/
+
+include $(BUILD_STATIC_LIBRARY)
+
+include $(CLEAR_VARS)
+LOCAL_CLANG := true
+LOCAL_MODULE := libbnnmlowpV8
+
+LOCAL_SDK_VERSION := 8
+
+LOCAL_CPP_EXTENSION := .cc
+LOCAL_SRC_FILES:= eight_bit_int_gemm.cc
+
+LOCAL_CFLAGS += -no-integrated-as -std=c++11
+LOCAL_CFLAGS += -DGEMMLOWP_USE_OLD_ANDROID_SDK
+LOCAL_C_INCLUDES += external/gemmlowp/
+LOCAL_NDK_STL_VARIANT := stlport_static
+
+include $(BUILD_STATIC_LIBRARY)