forked from luck/tmp_suning_uos_patched
4278e9d99e
Add mpi_sub_ui() based on Gnu MP mpz_sub_ui() function from file mpz/aors_ui.h[1] from change id 510b83519d1c adapting the code to the kernel's data structures, helper functions and coding style and also removing the defines used to produce mpz_sub_ui() and mpz_add_ui() from the same code. [1] https://gmplib.org/repo/gmp-6.2/file/510b83519d1c/mpz/aors.h Signed-off-by: Marcelo Henrique Cerri <marcelo.cerri@canonical.com> Signed-off-by: Stephan Mueller <smueller@chronox.de> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
25 lines
436 B
Makefile
25 lines
436 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# MPI multiprecision maths library (from gpg)
|
|
#
|
|
|
|
obj-$(CONFIG_MPILIB) = mpi.o
|
|
|
|
mpi-y = \
|
|
generic_mpih-lshift.o \
|
|
generic_mpih-mul1.o \
|
|
generic_mpih-mul2.o \
|
|
generic_mpih-mul3.o \
|
|
generic_mpih-rshift.o \
|
|
generic_mpih-sub1.o \
|
|
generic_mpih-add1.o \
|
|
mpicoder.o \
|
|
mpi-bit.o \
|
|
mpi-cmp.o \
|
|
mpi-sub-ui.o \
|
|
mpih-cmp.o \
|
|
mpih-div.o \
|
|
mpih-mul.o \
|
|
mpi-pow.o \
|
|
mpiutil.o
|