package/luajit: drop static build handling
Static build of luajit is disabled since commit b2e8f28efa
("package/luajit: disable for static build"). Remove the related
BUILDMODE handling as well.
Cc: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
7f156471ab
commit
2310d3588c
@ -17,12 +17,6 @@ ifeq ($(BR2_PACKAGE_LUAJIT_COMPAT52),y)
|
|||||||
LUAJIT_XCFLAGS += -DLUAJIT_ENABLE_LUA52COMPAT
|
LUAJIT_XCFLAGS += -DLUAJIT_ENABLE_LUA52COMPAT
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_STATIC_LIBS),y)
|
|
||||||
LUAJIT_BUILDMODE = static
|
|
||||||
else
|
|
||||||
LUAJIT_BUILDMODE = dynamic
|
|
||||||
endif
|
|
||||||
|
|
||||||
# The luajit build procedure requires the host compiler to have the
|
# The luajit build procedure requires the host compiler to have the
|
||||||
# same bitness as the target compiler. Therefore, on a x86 build
|
# same bitness as the target compiler. Therefore, on a x86 build
|
||||||
# machine, we can't build luajit for x86_64, which is checked in
|
# machine, we can't build luajit for x86_64, which is checked in
|
||||||
@ -50,7 +44,7 @@ define LUAJIT_BUILD_CMDS
|
|||||||
HOST_CC="$(LUAJIT_HOST_CC)" \
|
HOST_CC="$(LUAJIT_HOST_CC)" \
|
||||||
HOST_CFLAGS="$(HOST_CFLAGS)" \
|
HOST_CFLAGS="$(HOST_CFLAGS)" \
|
||||||
HOST_LDFLAGS="$(HOST_LDFLAGS)" \
|
HOST_LDFLAGS="$(HOST_LDFLAGS)" \
|
||||||
BUILDMODE=$(LUAJIT_BUILDMODE) \
|
BUILDMODE=dynamic \
|
||||||
XCFLAGS=$(LUAJIT_XCFLAGS) \
|
XCFLAGS=$(LUAJIT_XCFLAGS) \
|
||||||
-C $(@D) amalg
|
-C $(@D) amalg
|
||||||
endef
|
endef
|
||||||
|
Loading…
Reference in New Issue
Block a user