
On linux-arm STATIC_BUILD used the `-static` flag which leads for some reason to the executables being linked against `/lib/ld.so.1` which does not exists. Setting `STATIC_LDFLAGS_YES= -Wl,-Bstatic` in CONFIG.linux-arm.linux-arm fixed this issue for me.
14 lines
386 B
Plaintext
14 lines
386 B
Plaintext
# CONFIG.linux-arm.linux-arm
|
|
#
|
|
# Definitions for native linux-arm builds
|
|
# Sites may override these definitions in CONFIG_SITE.linux-arm.linux-arm
|
|
#-------------------------------------------------------
|
|
|
|
# Include common gnu compiler definitions
|
|
include $(CONFIG)/CONFIG.gnuCommon
|
|
|
|
STATIC_LDFLAGS_YES= -Wl,-Bstatic
|
|
STATIC_LDFLAGS_NO=
|
|
STATIC_LDLIBS_YES= -Wl,-Bdynamic
|
|
STATIC_LDLIBS_NO=
|