Skip to content

Commit

Permalink
android: Fix fbextra.x not being installed
Browse files Browse the repository at this point in the history
Although it may not be needed, this seems to differ between NDK installations.
  • Loading branch information
rversteegen authored and jayrm committed Jan 2, 2024
1 parent c4b2592 commit 7d3cebd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions makefile
Expand Up @@ -695,10 +695,12 @@ LIBFBGFXMT_C := $(patsubst $(libfbgfxobjdir)/%,$(libfbgfxmtobjdir)/%,$(LIBFBG
LIBFBGFXMT_S := $(patsubst $(libfbgfxobjdir)/%,$(libfbgfxmtobjdir)/%,$(LIBFBGFX_S))
LIBFBGFXMTPIC_C := $(patsubst $(libfbgfxobjdir)/%,$(libfbgfxmtpicobjdir)/%,$(LIBFBGFX_C))


RTL_LIBS := $(libdir)/$(FB_LDSCRIPT)
ifdef ENABLE_NONPIC
RTL_LIBS := $(libdir)/$(FB_LDSCRIPT) $(libdir)/fbrt0.o $(libdir)/libfb.a
FBRTL_LIBS := $(libdir)/libfbrt.a
GFX_LIBS := $(libdir)/libfbgfx.a
RTL_LIBS += $(libdir)/fbrt0.o $(libdir)/libfb.a
FBRTL_LIBS += $(libdir)/libfbrt.a
GFX_LIBS += $(libdir)/libfbgfx.a
endif
ifdef ENABLE_PIC
RTL_LIBS += $(libdir)/fbrt0pic.o $(libdir)/libfbpic.a
Expand Down

0 comments on commit 7d3cebd

Please sign in to comment.