Blame view

buildroot/buildroot-2016.08.1/package/jamvm/jamvm.mk 792 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  ################################################################################
  #
  # jamvm
  #
  ################################################################################
  
  JAMVM_VERSION = 2.0.0
  JAMVM_SITE = http://downloads.sourceforge.net/project/jamvm/jamvm/JamVM%20$(JAMVM_VERSION)
  JAMVM_LICENSE = GPLv2+
  JAMVM_LICENSE_FILES = COPYING
  JAMVM_DEPENDENCIES = zlib classpath
  # int inlining seems to crash jamvm, don't build shared version of internal lib
  JAMVM_CONF_OPTS = \
  	--with-classpath-install-dir=/usr \
  	--disable-int-inlining \
  	--disable-shared \
  	--without-pic
  
  # jamvm has ARM assembly code that cannot be compiled in Thumb2 mode,
  # so we must force traditional ARM mode.
  ifeq ($(BR2_arm),y)
  JAMVM_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -marm"
  endif
  
  $(eval $(autotools-package))