после установки mpir-3.0 на fedora 31. Теперь я пытаюсь собрать проект:
#include <stdio.h>
#include <gmp.h>
#include <mpir.h>
#include <mpfr.h>
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
mpf_t a; //mpir float variable
mpf_init(a); //initialise a
mpir_ui two = 2; //mpir unsigned integer variable
FILE* stream; //file type pointer to output on standard output (console)
mpf_init_set_ui (a, 2); //set value of a to 2
mpf_out_str (stream, 10, 2, a); //output value of a
cout << "\nMPIR working" << "\n" ;
}
Но когда я скомпилирую его, я получаю эту ошибку:
‘mpir_ui’ was not declared in this scope; did you mean ‘mpfr_ai’?|
У меня есть использовал флаги:
-lmpir -lmpfr -lgmp