瀏覽代碼

add support for detecting pcc's compiler runtime

in old versions of pcc, the directory containing libpcc.a was not in
the library path, and other options like -print-file-name may have
been needed to locate it. however, -print-file-name itself seems to
have been added around the same time that the directory was added to
the search path, and moreover, I see no evidence that older versions
of pcc are capable of building a working musl shared library. thus, it
seems reasonable to just test whether -lpcc is accepted.
Rich Felker 12 年之前
父節點
當前提交
3d99266b5e
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      configure

+ 1 - 0
configure

@@ -299,6 +299,7 @@ shared=no
 # Find compiler runtime library
 test -z "$LIBCC" && tryldflag LIBCC -lgcc && tryldflag LIBCC -lgcc_eh
 test -z "$LIBCC" && tryldflag LIBCC -lcompiler_rt
+test -z "$LIBCC" && tryldflag LIBCC -lpcc
 printf "using compiler runtime libraries: %s\n" "$LIBCC"