musl-gccが機能しない

musl-gccが機能しない

chroot環境のarmv6 Android携帯にLinuxをインストールしました。

私はインストールしましたmusl-libcライブラリAndroid用静的バイナリビルドのソースコード。これは Debian でビルドしてインストールするときに実行するコマンドです。

./configure --disable-shared 
make
make install

config.mak:: です。

# This version of config.mak was generated by:
# ./configure --disable-shared
# Any changes made here will be lost if configure is re-run
ARCH = arm
SUBARCH =
ASMSUBARCH = el
prefix = /usr/local/musl
exec_prefix = $(prefix)
bindir = $(exec_prefix)/bin
libdir = $(prefix)/lib
includedir = $(prefix)/include
syslibdir = /lib
CC = gcc
CFLAGS = -Os -pipe -fomit-frame-pointer -fno-unwind-tables -fno-asynchronous-unwind-tables -Wa,--noexecstack -Werror=implicit-function-declaration -$
CFLAGS_C99FSE = -std=c99 -nostdinc -ffreestanding -fexcess-precision=standard -frounding-math
CFLAGS_MEMOPS = -fno-tree-loop-distribute-patterns
CPPFLAGS =
LDFLAGS = -Wl,--hash-style=both
CROSS_COMPILE =
LIBCC = -lgcc -lgcc_eh
OPTIMIZE_GLOBS = internal/*.c malloc/*.c string/*.c
SHARED_LIBS =

エラーなしでうまく構築されインストールされます。

しかし、インストールを確認するとき。

cat > hello.c <<EOF
#include <stdio.h>
int main()
{   printf("hello, world!\n");
return 0;
}
EOF
/usr/local/musl/bin/musl-gcc hello.c
./a.out

このエラーが表示されます::

/usr/lib/gcc/arm-linux-gnueabi/4.6/libgcc.a(_dvmd_lnx.o): In function     `__aeabi_ldiv0':
(.text+0x8): undefined reference to `raise'
collect2: ld returned 1 exit status

muslのインストールにどのような問題がありますか?

ベストアンサー1

muslサポートチームから次の答えを受けました。

If you add -v, you should see
.. --start-group -lgcc -lgcc_eh -lc --end-group ..

which means all dependencies between libgcc and libc are resolved. I think gcc does not do the --start-group/--end-group without  explicit -static, so only musl-gcc -static hello.c would work.


raise is in libc, referenced from libgcc
__aebi_ldiv0 is in libgcc, referenced from libc with static linking, undefined symbol resolution happens in the order the libraries are listed on the command line (so you need -lgcc -lc -lgcc -lc or the --*-group linker flags to resolve circular deps)

したがって、コンパイル時に-staticフラグを使用する必要があります。

おすすめ記事