Makefile.arm (9821:afa9f7f4ee46) Makefile.arm (10151:2434d2fa50b6)
1# Copyright (c) 2010 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 41 unchanged lines hidden (view full) ---

50
51JC=javac
52JH=javah
53JR=jar
54### JDK_PATH must be set to build gem5OpJni
55#JDK_PATH=/path/to/jdk/version_number
56
57CFLAGS=-O2 -I $(JDK_PATH)/include/ -I $(JDK_PATH)/include/linux -march=armv7-a
1# Copyright (c) 2010 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 41 unchanged lines hidden (view full) ---

50
51JC=javac
52JH=javah
53JR=jar
54### JDK_PATH must be set to build gem5OpJni
55#JDK_PATH=/path/to/jdk/version_number
56
57CFLAGS=-O2 -I $(JDK_PATH)/include/ -I $(JDK_PATH)/include/linux -march=armv7-a
58LDFLAGS=-L. -lm5
58LDFLAGS=-L. -lm5 -static
59
60LIB_OBJS=m5op_arm.o
61OBJS=m5.o
62JNI_OBJS=m5op_arm.o jni_gem5Op.o
63
64all: libm5.a m5
65
66%.o: %.S

--- 12 unchanged lines hidden (view full) ---

79 $(CC) --shared -o lib$@.so $(JNI_OBJS)
80
81gem5OpJni.jar:
82 $(JC) jni/gem5Op.java; \
83 $(JH) jni.gem5Op; \
84 $(JR) cvf $@ jni/*.class
85
86clean:
59
60LIB_OBJS=m5op_arm.o
61OBJS=m5.o
62JNI_OBJS=m5op_arm.o jni_gem5Op.o
63
64all: libm5.a m5
65
66%.o: %.S

--- 12 unchanged lines hidden (view full) ---

79 $(CC) --shared -o lib$@.so $(JNI_OBJS)
80
81gem5OpJni.jar:
82 $(JC) jni/gem5Op.java; \
83 $(JH) jni.gem5Op; \
84 $(JR) cvf $@ jni/*.class
85
86clean:
87 rm -f *.o m5 libgemOpJni.so gem5OpJni.jar jni/*.class libm5.a
87 rm -f *.o m5 libgem5OpJni.so gem5OpJni.jar jni/*.class libm5.a \
88 jni_gem5Op.h