blob: e369d1cb2fdfe2aeb620b9418c6be4a6f27ee30a [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 Wang000c3072011-01-27 19:06:02 -080018static_libraries_needed_by_slang := \
Zonr Chang08df36e2010-10-07 18:50:42 +080019 libLLVMLinker \
20 libLLVMipo \
21 libLLVMBitWriter \
22 libLLVMBitReader \
23 libLLVMARMAsmPrinter \
24 libLLVMX86AsmPrinter \
25 libLLVMAsmPrinter \
26 libLLVMMCParser \
27 libLLVMARMCodeGen \
28 libLLVMARMInfo \
29 libLLVMX86CodeGen \
30 libLLVMX86Info \
31 libLLVMSelectionDAG \
32 libLLVMCodeGen \
33 libLLVMScalarOpts \
34 libLLVMInstCombine \
35 libLLVMTransformUtils \
36 libLLVMInstrumentation \
37 libLLVMipa \
38 libLLVMAnalysis \
39 libLLVMTarget \
40 libLLVMMC \
41 libLLVMCore \
42 libclangParse \
43 libclangSema \
44 libclangAnalysis \
45 libclangAST \
46 libclangLex \
47 libclangFrontend \
48 libclangCodeGen \
49 libclangBasic \
50 libLLVMSupport \
51 libLLVMSystem
52
Ying Wang000c3072011-01-27 19:06:02 -080053# Static library libslang for host
54# ========================================================
55include $(CLEAR_VARS)
56include $(CLEAR_TBLGEN_VARS)
57
58LLVM_ROOT_PATH := external/llvm
59CLANG_ROOT_PATH := external/clang
60
61include $(CLANG_ROOT_PATH)/clang.mk
62
63LOCAL_MODULE := libslang
64LOCAL_MODULE_TAGS := optional
65
66LOCAL_CFLAGS += -Wno-sign-promo
67
68TBLGEN_TABLES := \
69 AttrList.inc \
70 Attrs.inc \
71 DeclNodes.inc \
72 DiagnosticCommonKinds.inc \
73 DiagnosticFrontendKinds.inc \
74 DiagnosticSemaKinds.inc \
75 StmtNodes.inc
76
77LOCAL_SRC_FILES := \
78 slang.cpp \
79 slang_utils.cpp \
80 slang_backend.cpp \
81 slang_pragma_recorder.cpp \
82 slang_diagnostic_buffer.cpp
83
Zonr Chang08df36e2010-10-07 18:50:42 +080084LOCAL_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
Shih-wei Liao5dee9562011-01-13 02:16:00 -0800102LOCAL_MODULE_CLASS := STATIC_LIBRARIES
Shih-wei Liao99230212011-01-13 01:09:03 -0800103
Zonr Changa02010c2010-10-11 20:54:28 +0800104include $(LOCAL_PATH)/SlangData.mk
Shih-wei Liao5dee9562011-01-13 02:16:00 -0800105include $(BUILD_HOST_STATIC_LIBRARY)
Shih-wei Liao9901f892011-01-13 00:23:47 -0800106
107# Executable slang-data for host
108# ========================================================
109include $(CLEAR_VARS)
110
111LOCAL_MODULE := slang-data
112LOCAL_MODULE_TAGS := optional
113
114LOCAL_MODULE_CLASS := EXECUTABLES
115
116LOCAL_SRC_FILES := slang-data.c
117
118include $(BUILD_HOST_EXECUTABLE)
Zonr Changa02010c2010-10-11 20:54:28 +0800119
Zonr Chang3c250c52010-10-07 12:19:23 +0800120# Executable llvm-rs-link for host
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700121# ========================================================
122include $(CLEAR_VARS)
123include $(CLEAR_TBLGEN_VARS)
124
Zonr Chang08df36e2010-10-07 18:50:42 +0800125include $(LLVM_ROOT_PATH)/llvm.mk
126
Shih-wei Liao835a7b72010-08-06 02:29:11 -0700127LOCAL_MODULE := llvm-rs-link
Zonr Changa02010c2010-10-11 20:54:28 +0800128LOCAL_MODULE_TAGS := optional
Shih-wei Liao835a7b72010-08-06 02:29:11 -0700129
130LOCAL_MODULE_CLASS := EXECUTABLES
131
132LOCAL_SRC_FILES := \
Zonr Chang92b344a2010-10-05 20:39:03 +0800133 llvm-rs-link.cpp
Shih-wei Liao835a7b72010-08-06 02:29:11 -0700134
Zonr Changa02010c2010-10-11 20:54:28 +0800135LOCAL_STATIC_LIBRARIES := \
Ying Wang000c3072011-01-27 19:06:02 -0800136 librslib libslang \
137 $(static_libraries_needed_by_slang)
Zonr Changa02010c2010-10-11 20:54:28 +0800138
Shih-wei Liao835a7b72010-08-06 02:29:11 -0700139LOCAL_LDLIBS := -ldl -lpthread
140
141include $(LLVM_HOST_BUILD_MK)
142include $(LLVM_GEN_INTRINSICS_MK)
143include $(BUILD_HOST_EXECUTABLE)
144
Zonr Changa65ec162010-10-17 01:53:05 +0800145# Executable rs-spec-gen for host
146# ========================================================
147include $(CLEAR_VARS)
148
149LOCAL_MODULE := rs-spec-gen
150LOCAL_MODULE_TAGS := optional
151
152LOCAL_MODULE_CLASS := EXECUTABLES
153
154LOCAL_SRC_FILES := \
155 slang_rs_spec_table.cpp
156
157include $(BUILD_HOST_EXECUTABLE)
158
Shih-wei Liaoffa58bb2010-10-10 14:15:13 -0700159# Executable llvm-rs-cc for host
Shih-wei Liao835a7b72010-08-06 02:29:11 -0700160# ========================================================
161include $(CLEAR_VARS)
162include $(CLEAR_TBLGEN_VARS)
163
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700164LOCAL_IS_HOST_MODULE := true
165LOCAL_MODULE := llvm-rs-cc
166LOCAL_MODULE_TAGS := optional
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700167
Shih-wei Liaobdd78882010-06-06 05:55:36 -0700168LOCAL_MODULE_CLASS := EXECUTABLES
169
Shih-wei Liaocecd11d2010-09-21 08:07:58 -0700170LOCAL_CFLAGS += -Wno-sign-promo
171
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700172TBLGEN_TABLES := \
Shih-wei Liaof52a6202010-09-10 17:40:53 -0700173 AttrList.inc \
174 Attrs.inc \
175 DeclNodes.inc \
176 DiagnosticCommonKinds.inc \
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700177 DiagnosticDriverKinds.inc \
Zonr Changcf6af6a2010-10-12 12:38:51 +0800178 DiagnosticFrontendKinds.inc \
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700179 DiagnosticSemaKinds.inc \
Zonr Chang92b344a2010-10-05 20:39:03 +0800180 StmtNodes.inc \
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700181 RSCCOptions.inc
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700182
Zonr Changa65ec162010-10-17 01:53:05 +0800183RS_SPEC_TABLES := \
184 RSClangBuiltinEnums.inc \
185 RSDataTypeEnums.inc \
186 RSDataElementEnums.inc \
187 RSDataKindEnums.inc \
Zonr Changb1771ef2010-10-22 18:03:46 +0800188 RSMatrixTypeEnums.inc \
Zonr Changa65ec162010-10-17 01:53:05 +0800189 RSObjectTypeEnums.inc
190
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700191LOCAL_SRC_FILES := \
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700192 llvm-rs-cc.cpp \
Zonr Chang3a9ca1f2010-10-06 17:52:56 +0800193 slang_rs.cpp \
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700194 slang_rs_context.cpp \
195 slang_rs_pragma_handler.cpp \
196 slang_rs_backend.cpp \
Zonr Chang641558f2010-10-12 21:07:06 +0800197 slang_rs_exportable.cpp \
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700198 slang_rs_export_type.cpp \
199 slang_rs_export_element.cpp \
200 slang_rs_export_var.cpp \
201 slang_rs_export_func.cpp \
Stephen Hines4b32ffd2010-11-05 18:47:11 -0700202 slang_rs_object_ref_count.cpp \
Ying Wang3f8b44d2010-09-04 01:17:01 -0700203 slang_rs_reflection.cpp \
Zonr Chang66a1a5a2010-10-22 11:00:11 +0800204 slang_rs_reflect_utils.cpp \
205 slang_rs_metadata_spec_encoder.cpp
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700206
207LOCAL_STATIC_LIBRARIES := \
Ying Wang000c3072011-01-27 19:06:02 -0800208 libclangDriver libslang \
209 $(static_libraries_needed_by_slang)
Ying Wange2201c02011-01-11 17:29:32 -0800210
Raphael11e2b932011-01-13 15:13:35 -0800211ifeq ($(HOST_OS),windows)
212 LOCAL_LDLIBS := -limagehlp -lpsapi
213else
214 LOCAL_LDLIBS := -ldl -lpthread
215endif
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700216
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700217# For build RSCCOptions.inc from RSCCOptions.td
218intermediates := $(call local-intermediates-dir)
219LOCAL_GENERATED_SOURCES += $(intermediates)/RSCCOptions.inc
220$(intermediates)/RSCCOptions.inc: $(LOCAL_PATH)/RSCCOptions.td $(CLANG_ROOT_PATH)/include/clang/Driver/OptParser.td $(TBLGEN)
221 @echo "Building RenderScript compiler (llvm-rs-cc) Option tables with tblgen"
222 $(call transform-host-td-to-out,opt-parser-defs)
223
Zonr Changa65ec162010-10-17 01:53:05 +0800224include frameworks/compile/slang/RSSpec.mk
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700225include $(CLANG_HOST_BUILD_MK)
226include $(CLANG_TBLGEN_RULES_MK)
227include $(BUILD_HOST_EXECUTABLE)