src/math/ltm_desc.c: In function ‘set_int’: src/math/ltm_desc.c:92:4: warning: ‘mp_set_int’ is deprecated: replaced by mp_set_ul [-Wdeprecated-declarations] 92 | return mpi_to_ltc_error(mp_set_int(a, b)); | ^~~~~~ In file included from src/math/ltm_desc.c:15: /usr/include/tommath.h:358:33: note: declared here 358 | MP_DEPRECATED(mp_set_ul) mp_err mp_set_int(mp_int *a, unsigned long b); | ^~~~~~~~~~ src/math/ltm_desc.c: In function ‘get_int’: src/math/ltm_desc.c:98:4: warning: ‘mp_get_int’ is deprecated: replaced by mp_get_mag_u32/mp_get_u32 [-Wdeprecated-declarations] 98 | return mp_get_int(a); | ^~~~~~ /usr/include/tommath.h:355:56: note: declared here 355 | MP_DEPRECATED(mp_get_mag_u32/mp_get_u32) unsigned long mp_get_int(const mp_int *a) MP_WUR; | ^~~~~~~~~~ src/math/ltm_desc.c: In function ‘write_radix’: src/math/ltm_desc.c:178:4: warning: ‘mp_toradix’ is deprecated: replaced by mp_to_radix [-Wdeprecated-declarations] 178 | return mpi_to_ltc_error(mp_toradix(a, b, radix)); | ^~~~~~ /usr/include/tommath.h:753:35: note: declared here 753 | MP_DEPRECATED(mp_to_radix) mp_err mp_toradix(const mp_int *a, char *str, int radix) MP_WUR; | ^~~~~~~~~~ src/math/ltm_desc.c: In function ‘unsigned_size’: src/math/ltm_desc.c:185:4: warning: ‘mp_unsigned_bin_size’ is deprecated: replaced by mp_ubin_size [-Wdeprecated-declarations] 185 | return mp_unsigned_bin_size(a); | ^~~~~~ /usr/include/tommath.h:734:33: note: declared here 734 | MP_DEPRECATED(mp_ubin_size) int mp_unsigned_bin_size(const mp_int *a) MP_WUR; | ^~~~~~~~~~~~~~~~~~~~ src/math/ltm_desc.c: In function ‘unsigned_write’: src/math/ltm_desc.c:193:4: warning: ‘mp_to_unsigned_bin’ is deprecated: replaced by mp_to_ubin [-Wdeprecated-declarations] 193 | return mpi_to_ltc_error(mp_to_unsigned_bin(a, b)); | ^~~~~~ /usr/include/tommath.h:736:34: note: declared here 736 | MP_DEPRECATED(mp_to_ubin) mp_err mp_to_unsigned_bin(const mp_int *a, unsigned char *b) MP_WUR; | ^~~~~~~~~~~~~~~~~~ src/math/ltm_desc.c: In function ‘unsigned_read’: src/math/ltm_desc.c:201:4: warning: ‘mp_read_unsigned_bin’ is deprecated: replaced by mp_from_ubin [-Wdeprecated-declarations] 201 | return mpi_to_ltc_error(mp_read_unsigned_bin(a, b, len)); | ^~~~~~ /usr/include/tommath.h:735:36: note: declared here 735 | MP_DEPRECATED(mp_from_ubin) mp_err mp_read_unsigned_bin(mp_int *a, const unsigned char *b, int c) MP_WUR; | ^~~~~~~~~~~~~~~~~~~~ src/math/ltm_desc.c: At top level: src/math/ltm_desc.c:423:13: warning: DIGIT_BIT macro is deprecated, MP_DIGIT_BIT instead 423 | (int)DIGIT_BIT, | ^~~~~~ libtool: warning: remember to run 'libtool --finish /usr/local/lib'