mirror of
https://github.com/termux/termux-packages.git
synced 2025-01-19 15:42:17 +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
324 B
Diff
12 lines
324 B
Diff
diff -u -r ../radare2-5.9.0/libr/crypto/Makefile ./libr/crypto/Makefile
|
|
--- ../radare2-5.9.0/libr/crypto/Makefile 2024-03-31 15:01:15.000000000 +0000
|
|
+++ ./libr/crypto/Makefile 2024-05-15 08:22:07.567447853 +0000
|
|
@@ -1,6 +1,7 @@
|
|
NAME=r_crypto
|
|
R2DEPS=r_util
|
|
CFLAGS+=-DR2_PLUGIN_INCORE
|
|
+LINK+=-lm
|
|
|
|
include ../config.mk
|
|
|