blob: 84ee4bdc6889078753363c106105818d61c9ab95 [file] [log] [blame]
Zonr Change86245a2010-10-12 21:42:13 +08001#
2# Copyright (C) 2010 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
Shih-wei Liao462aefd2010-06-04 15:32:04 -070016LOCAL_PATH := $(call my-dir)
Shih-wei Liao462aefd2010-06-04 15:32:04 -070017
Ying Wange2201c02011-01-11 17:29:32 -080018# Static library libslang for host
Zonr Chang08df36e2010-10-07 18:50:42 +080019# ========================================================
20include $(CLEAR_VARS)
21include $(CLEAR_TBLGEN_VARS)
Shih-wei Liao462aefd2010-06-04 15:32:04 -070022
Zonr Chang08df36e2010-10-07 18:50:42 +080023LLVM_ROOT_PATH := external/llvm
Ying Wang12f4d682010-09-08 09:54:32 -070024CLANG_ROOT_PATH := external/clang
Zonr Chang08df36e2010-10-07 18:50:42 +080025
Ying Wang12f4d682010-09-08 09:54:32 -070026include $(CLANG_ROOT_PATH)/clang.mk
27
Zonr Chang08df36e2010-10-07 18:50:42 +080028LOCAL_MODULE := libslang
29LOCAL_MODULE_TAGS := optional
30
Zonr Chang08df36e2010-10-07 18:50:42 +080031LOCAL_CFLAGS += -Wno-sign-promo
32
33TBLGEN_TABLES := \
34 AttrList.inc \
35 Attrs.inc \
36 DeclNodes.inc \
37 DiagnosticCommonKinds.inc \
38 DiagnosticFrontendKinds.inc \
39 DiagnosticSemaKinds.inc \
40 StmtNodes.inc
41
42LOCAL_SRC_FILES := \
43 slang.cpp \
44 slang_utils.cpp \
45 slang_backend.cpp \
46 slang_pragma_recorder.cpp \
47 slang_diagnostic_buffer.cpp
48
Ying Wange2201c02011-01-11 17:29:32 -080049LOCAL_WHOLE_STATIC_LIBRARIES := \
Zonr Chang08df36e2010-10-07 18:50:42 +080050 libLLVMLinker \
51 libLLVMipo \
52 libLLVMBitWriter \
53 libLLVMBitReader \
54 libLLVMARMAsmPrinter \
55 libLLVMX86AsmPrinter \
56 libLLVMAsmPrinter \
57 libLLVMMCParser \
58 libLLVMARMCodeGen \
59 libLLVMARMInfo \
60 libLLVMX86CodeGen \
61 libLLVMX86Info \
62 libLLVMSelectionDAG \
63 libLLVMCodeGen \
64 libLLVMScalarOpts \
65 libLLVMInstCombine \
66 libLLVMTransformUtils \
67 libLLVMInstrumentation \
68 libLLVMipa \
69 libLLVMAnalysis \
70 libLLVMTarget \
71 libLLVMMC \
72 libLLVMCore \
73 libclangParse \
74 libclangSema \
75 libclangAnalysis \
76 libclangAST \
77 libclangLex \
78 libclangFrontend \
79 libclangCodeGen \
80 libclangBasic \
81 libLLVMSupport \
82 libLLVMSystem
83
84LOCAL_LDLIBS := -ldl -lpthread
85
86include $(CLANG_HOST_BUILD_MK)
87include $(CLANG_TBLGEN_RULES_MK)
88include $(LLVM_GEN_INTRINSICS_MK)
Ying Wange2201c02011-01-11 17:29:32 -080089include $(BUILD_HOST_STATIC_LIBRARY)
Zonr Chang08df36e2010-10-07 18:50:42 +080090
Zonr Changa02010c2010-10-11 20:54:28 +080091# Host static library containing rslib.bc
92# ========================================================
93include $(CLEAR_VARS)
94
95input_data_file := frameworks/compile/slang/rslib.bc
96slangdata_output_var_name := rslib_bc
97
98LOCAL_IS_HOST_MODULE := true
99LOCAL_MODULE := librslib
100LOCAL_MODULE_TAGS := optional
101
102include $(LOCAL_PATH)/SlangData.mk
103include $(BUILD_HOST_STATIC_LIBRARY)
104
Zonr Chang3c250c52010-10-07 12:19:23 +0800105# Executable llvm-rs-link for host
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700106# ========================================================
107include $(CLEAR_VARS)
108include $(CLEAR_TBLGEN_VARS)
109
Zonr Chang08df36e2010-10-07 18:50:42 +0800110include $(LLVM_ROOT_PATH)/llvm.mk
111
Shih-wei Liao835a7b72010-08-06 02:29:11 -0700112LOCAL_MODULE := llvm-rs-link
Zonr Changa02010c2010-10-11 20:54:28 +0800113LOCAL_MODULE_TAGS := optional
Shih-wei Liao835a7b72010-08-06 02:29:11 -0700114
115LOCAL_MODULE_CLASS := EXECUTABLES
116
117LOCAL_SRC_FILES := \
Zonr Chang92b344a2010-10-05 20:39:03 +0800118 llvm-rs-link.cpp
Shih-wei Liao835a7b72010-08-06 02:29:11 -0700119
Zonr Changa02010c2010-10-11 20:54:28 +0800120LOCAL_STATIC_LIBRARIES := \
Ying Wange2201c02011-01-11 17:29:32 -0800121 librslib libslang
Zonr Changa02010c2010-10-11 20:54:28 +0800122
Shih-wei Liao835a7b72010-08-06 02:29:11 -0700123LOCAL_LDLIBS := -ldl -lpthread
124
125include $(LLVM_HOST_BUILD_MK)
126include $(LLVM_GEN_INTRINSICS_MK)
127include $(BUILD_HOST_EXECUTABLE)
128
Zonr Changa65ec162010-10-17 01:53:05 +0800129# Executable rs-spec-gen for host
130# ========================================================
131include $(CLEAR_VARS)
132
133LOCAL_MODULE := rs-spec-gen
134LOCAL_MODULE_TAGS := optional
135
136LOCAL_MODULE_CLASS := EXECUTABLES
137
138LOCAL_SRC_FILES := \
139 slang_rs_spec_table.cpp
140
141include $(BUILD_HOST_EXECUTABLE)
142
Shih-wei Liaoffa58bb2010-10-10 14:15:13 -0700143# Executable llvm-rs-cc for host
Shih-wei Liao835a7b72010-08-06 02:29:11 -0700144# ========================================================
145include $(CLEAR_VARS)
146include $(CLEAR_TBLGEN_VARS)
147
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700148LOCAL_IS_HOST_MODULE := true
149LOCAL_MODULE := llvm-rs-cc
150LOCAL_MODULE_TAGS := optional
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700151
Shih-wei Liaobdd78882010-06-06 05:55:36 -0700152LOCAL_MODULE_CLASS := EXECUTABLES
153
Shih-wei Liaocecd11d2010-09-21 08:07:58 -0700154LOCAL_CFLAGS += -Wno-sign-promo
155
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700156TBLGEN_TABLES := \
Shih-wei Liaof52a6202010-09-10 17:40:53 -0700157 AttrList.inc \
158 Attrs.inc \
159 DeclNodes.inc \
160 DiagnosticCommonKinds.inc \
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700161 DiagnosticDriverKinds.inc \
Zonr Changcf6af6a2010-10-12 12:38:51 +0800162 DiagnosticFrontendKinds.inc \
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700163 DiagnosticSemaKinds.inc \
Zonr Chang92b344a2010-10-05 20:39:03 +0800164 StmtNodes.inc \
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700165 RSCCOptions.inc
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700166
Zonr Changa65ec162010-10-17 01:53:05 +0800167RS_SPEC_TABLES := \
168 RSClangBuiltinEnums.inc \
169 RSDataTypeEnums.inc \
170 RSDataElementEnums.inc \
171 RSDataKindEnums.inc \
Zonr Changb1771ef2010-10-22 18:03:46 +0800172 RSMatrixTypeEnums.inc \
Zonr Changa65ec162010-10-17 01:53:05 +0800173 RSObjectTypeEnums.inc
174
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700175LOCAL_SRC_FILES := \
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700176 llvm-rs-cc.cpp \
Zonr Chang3a9ca1f2010-10-06 17:52:56 +0800177 slang_rs.cpp \
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700178 slang_rs_context.cpp \
179 slang_rs_pragma_handler.cpp \
180 slang_rs_backend.cpp \
Zonr Chang641558f2010-10-12 21:07:06 +0800181 slang_rs_exportable.cpp \
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700182 slang_rs_export_type.cpp \
183 slang_rs_export_element.cpp \
184 slang_rs_export_var.cpp \
185 slang_rs_export_func.cpp \
Stephen Hines4b32ffd2010-11-05 18:47:11 -0700186 slang_rs_object_ref_count.cpp \
Ying Wang3f8b44d2010-09-04 01:17:01 -0700187 slang_rs_reflection.cpp \
Zonr Chang66a1a5a2010-10-22 11:00:11 +0800188 slang_rs_reflect_utils.cpp \
189 slang_rs_metadata_spec_encoder.cpp
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700190
191LOCAL_STATIC_LIBRARIES := \
Ying Wange2201c02011-01-11 17:29:32 -0800192 libclangDriver libslang
193
194LOCAL_LDLIBS := -ldl -lpthread
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700195
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700196# For build RSCCOptions.inc from RSCCOptions.td
197intermediates := $(call local-intermediates-dir)
198LOCAL_GENERATED_SOURCES += $(intermediates)/RSCCOptions.inc
199$(intermediates)/RSCCOptions.inc: $(LOCAL_PATH)/RSCCOptions.td $(CLANG_ROOT_PATH)/include/clang/Driver/OptParser.td $(TBLGEN)
200 @echo "Building RenderScript compiler (llvm-rs-cc) Option tables with tblgen"
201 $(call transform-host-td-to-out,opt-parser-defs)
202
Zonr Changa65ec162010-10-17 01:53:05 +0800203include frameworks/compile/slang/RSSpec.mk
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700204include $(CLANG_HOST_BUILD_MK)
205include $(CLANG_TBLGEN_RULES_MK)
206include $(BUILD_HOST_EXECUTABLE)