forked from akopytov/sysbench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsb_luajit.m4
More file actions
72 lines (64 loc) · 2.49 KB
/
sb_luajit.m4
File metadata and controls
72 lines (64 loc) · 2.49 KB
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
# Copyright (C) 2016 Alexey Kopytov <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# ---------------------------------------------------------------------------
# Macro: SB_LUAJIT
# ---------------------------------------------------------------------------
AC_DEFUN([SB_LUAJIT], [
AC_ARG_WITH([system-luajit],
AC_HELP_STRING([--with-system-luajit],
[Use system-provided LuaJIT headers and library (requires pkg-config)]),
[sb_use_luajit="system"],
[sb_use_luajit="bundled"])
AC_CACHE_CHECK([whether to build with system or bundled LuaJIT],
[sb_cv_lib_luajit], [
AS_IF([test "x$sb_use_luajit" = "xsystem"],
[
sb_cv_lib_luajit=[system]
], [
sb_cv_lib_luajit=[bundled]
])
])
AS_IF([test "x$sb_cv_lib_luajit" = "xsystem"],
# let PKG_CHECK_MODULES set LUAJIT_CFLAGS and LUAJIT_LIBS for system libluajit
[PKG_CHECK_MODULES([LUAJIT], [luajit])],
# Set LUAJIT_CFLAGS and LUAJIT_LIBS manually for bundled libluajit
[
LUAJIT_CFLAGS="-I\$(abs_top_builddir)/third_party/luajit/inc"
LUAJIT_LIBS="\$(abs_top_builddir)/third_party/luajit/lib/libluajit-5.1.a"
]
)
AC_DEFINE_UNQUOTED([SB_WITH_LUAJIT], ["$sb_use_luajit"],
[Whether system or bundled LuaJIT is used])
AM_CONDITIONAL([USE_BUNDLED_LUAJIT], [test "x$sb_use_luajit" = xbundled])
AS_CASE([$host_os:$host_cpu],
# Add extra flags when building a 64-bit application on OS X,
# http://luajit.org/install.html
[*darwin*:x86_64],
[LUAJIT_LDFLAGS="-pagezero_size 10000 -image_base 100000000"],
# -ldl and -rdynamic are required on Linux
[*linux*:*],
[
LUAJIT_LIBS="$LUAJIT_LIBS -ldl"
LUAJIT_LDFLAGS="-rdynamic"
],
# -rdynamic is required on FreeBSD
[*freebsd*:*],
[
LUAJIT_LDFLAGS="-rdynamic"
]
)
AC_SUBST([LUAJIT_LDFLAGS])
])