Skip to content

Latest commit

 

History

History
110 lines (61 loc) · 1.21 KB

CppGmp.md

File metadata and controls

110 lines (61 loc) · 1.21 KB

 

 

 

 

 

 

GMP (abbreviation of GNU Multiple Precision Library) is a library to work with higher-precision data types, for example an infinite-size int.

 

 

 

 

 

 

For information about installing GMP, go to the page about installing GMP.

 

 

 

 

 

 

Information about porting GMP, can be found at the page about porting GMP.

 

 

 

 

 

Qt CreatorUbuntu Note for Qt Creator under Ubuntu users

 

Add the following line to your project file (to prevent link errors):

 


LIBS += -lgmp

 

 

 

 

 

External links