Skip to content

Commit 396dfc9

Browse files
author
Jean-Baptiste Queru
committed
Merge commit '3102d523c787402faf4590c7e25cef8c3e20afa4' into merge_korg_master
Conflicts: vm/Android.mk
2 parents fe70e8b + 3102d52 commit 396dfc9

File tree

3 files changed

+417
-0
lines changed

3 files changed

+417
-0
lines changed

README.txt

+8
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,11 @@ Here is the combined header comment:
5050
* See the License for the specific language governing permissions and
5151
* limitations under the License.
5252
*/
53+
54+
55+
Native SH call bridge
56+
---------------------
57+
58+
Native SH call bridge is written by
59+
Shin-ichiro KAWASAKI <[email protected]>
60+
and Contributed to Android by Hitachi, Ltd. and Renesas Solutions Corp.

vm/Android.mk

+9
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,15 @@ ifeq ($(TARGET_ARCH),x86)
283283
mterp/out/InterpAsm-x86.S
284284
endif
285285

286+
ifeq ($(TARGET_ARCH),sh)
287+
MTERP_ARCH_KNOWN := true
288+
LOCAL_SRC_FILES += \
289+
arch/sh/CallSH4ABI.S \
290+
arch/generic/Hints.c \
291+
mterp/out/InterpC-allstubs.c \
292+
mterp/out/InterpAsm-allstubs.S
293+
endif
294+
286295
ifeq ($(MTERP_ARCH_KNOWN),false)
287296
# unknown architecture, try to use FFI
288297
LOCAL_C_INCLUDES += external/libffi/$(TARGET_OS)-$(TARGET_ARCH)

0 commit comments

Comments
 (0)