blob: ec9fdfbfb6aa55898dd66a8a57f9cba60cd048b9 (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
include erlang.inc
DEPENDS += "erlang-native openssl"
PR = "r2"
SRC_URI += "\
file://erts-emulator-Makefile.in.patch;patch=1 \
file://erts-etc-unix-Install.src.patch;patch=1 \
file://lib-erl_interface-src-Makefile.in.patch;patch=1 \
file://Makefile.in.patch;patch=1 \
"
TARGET_CC_ARCH += "${LDFLAGS}"
EXTRA_OEMAKE = "BUILD_CC='${BUILD_CC}'"
EXTRA_OECONF = "--with-ssl=${STAGING_DIR_HOST}${layout_exec_prefix}"
EXTRA_OECONF_append_arm = " --disable-smp-support --disable-hipe"
EXTRA_OECONF_append_armeb = " --disable-smp-support --disable-hipe"
EXTRA_OECONF_append_mipsel = " --disable-smp-support --disable-hipe"
EXTRA_OECONF_append_sh3 = " --disable-smp-support --disable-hipe"
EXTRA_OECONF_append_sh4 = " --disable-smp-support --disable-hipe"
NATIVE_BIN = "${TMPDIR}/work/erlang-native-${PV}-${PR}/otp_src_${UPSTREAM_VERSION}/bin"
do_configure() {
cd ${S}/erts; autoreconf; cd -
. ${CONFIG_SITE}
ac_cv_prog_javac_ver_1_2=no \
ac_cv_prog_javac_ver_1_5=no \
SHLIB_LD='${CC}' \
oe_runconf
sed -i -e 's|$(ERL_TOP)/bin/dialyzer|${NATIVE_BIN}/dialyzer --output_plt $@ -pa $(ERL_TOP)/lib/kernel/ebin -pa $(ERL_TOP)/lib/stdlib/ebin|' lib/dialyzer/src/Makefile
}
do_compile() {
TARGET=${TARGET_SYS} \
PATH=${NATIVE_BIN}:$PATH \
oe_runmake noboot
}
do_install() {
TARGET=${TARGET_SYS} \
PATH=${NATIVE_BIN}:$PATH \
oe_runmake 'INSTALL_PREFIX=${D}' install
for f in erl start
do sed -i -e 's:ROOTDIR=.*:ROOTDIR=/usr/lib/erlang:' \
${D}/usr/lib/erlang/erts-*/bin/$f ${D}/usr/lib/erlang/bin/$f
done
}
def get_erlang_libs_R13B01(d):
import os, bb
install_root = bb.data.getVar('D', d, 1)
libdir = bb.data.getVar('libdir', d, 1)[1:]
libs = ["${bindir}/dialyzer", "${libdir}/erlang/bin/dialyzer"]
erlang_lib = os.path.join(install_root, libdir, "erlang/lib")
for fname in os.listdir(erlang_lib):
if not "-" in fname: continue
if fname.startswith("compiler-"): continue
if fname.startswith("kernel-"): continue
if fname.startswith("sasl-"): continue
if fname.startswith("stdlib-"): continue
if fname.startswith("tools-"): continue
libs.append(os.path.join("${libdir}", "erlang/lib", fname))
libs.sort()
return libs
FILES_${PN}-libs-dbg += " ${libdir}/erlang/*/.debug ${libdir}/erlang/*/*/.debug ${libdir}/erlang/*/*/*/.debug ${libdir}/erlang/*/*/*/*/.debug ${libdir}/erlang/*/*/*/*/*/.debug "
FILES_${PN}-libs += " ${@' '.join(get_erlang_libs_R13B01(d))}"
PACKAGES =+ "${PN}-libs-dbg ${PN}-libs"
|