mirror of
https://github.com/termux/termux-packages.git
synced 2025-01-19 16:52:16 +00:00
6011ee85be
Fix the following build error: > ERROR: ./lib/libr_crypto.so.5.9.0 contains undefined symbols: > 20: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND log2 > ERROR: ./lib/libr_esil.so.5.9.0 contains undefined symbols: > 37: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND feclearexcept > 38: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND fetestexcept > ERROR: ./lib/libr_lang.so.5.9.0 contains undefined symbols: > 157: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND pow > 158: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND fmod > 161: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND hypot > 162: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND fabs > 163: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND acos > 164: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND asin > 165: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND atan > 166: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND atan2 > 167: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND cos > 168: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND exp > 169: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND log > 170: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND sin > 171: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND tan > 172: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND trunc > 173: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND cosh > 174: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND sinh > 175: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND tanh > 176: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND acosh > 177: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND asinh > 178: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND atanh > 179: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND expm1 > 180: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND log1p > 181: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND log2 > 182: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND log10 > 183: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND cbrt > ERROR: ./lib/libr_reg.so.5.9.0 contains undefined symbols: > 34: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND fmaxl
12 lines
366 B
Diff
12 lines
366 B
Diff
diff -u -r ../radare2-5.9.0/libr/lang/Makefile ./libr/lang/Makefile
|
|
--- ../radare2-5.9.0/libr/lang/Makefile 2024-03-31 15:01:15.000000000 +0000
|
|
+++ ./libr/lang/Makefile 2024-05-15 08:20:00.701578710 +0000
|
|
@@ -18,6 +18,7 @@
|
|
CFLAGS+=-DCONFIG_VERSION=\"0.0.0\"
|
|
OBJS+=$(QJS_OBJS)
|
|
# LINK+=$(QJS_FILES)
|
|
+LINK+=-lm
|
|
|
|
include ../../shlr/qjs/deps.mk
|
|
include ../rules.mk
|