SHARE
TWEET
Untitled
a guest
May 5th, 2012
31
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- /*
- * helloworld_gmp.c
- $ gcc -lgmp helloworld_gmp.c
- /tmp/ccH3D1lt.o: In function `main':
- helloworld_gmp.c:(.text+0x17): undefined reference to `__gmpz_init'
- collect2: ld returned 1 exit status
- $ cat /etc/lsb-release
- DISTRIB_ID=Ubuntu
- DISTRIB_RELEASE=11.10
- DISTRIB_CODENAME=oneiric
- DISTRIB_DESCRIPTION="Ubuntu 11.10"
- $ uname -a
- Linux lathe 3.2.15-030215-generic #201204131303 SMP Fri Apr 13 17:04:51 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
- $ ls -la /usr/include/gmp*
- -rw-r--r-- 1 root root 2198 2011-04-21 02:53 /usr/include/gmp.h
- -rw-r--r-- 1 root root 86222 2011-04-21 02:53 /usr/include/gmp-x86_64.h
- -rw-r--r-- 1 root root 114646 2011-04-21 02:58 /usr/include/gmpxx.h
- $ ls -la /usr/lib/*gmp*
- -rw-r--r-- 2 root root 1213422 2011-04-21 03:04 /usr/lib/libgmp.a
- -rw-r--r-- 1 root root 927 2011-04-21 02:58 /usr/lib/libgmp.la
- lrwxrwxrwx 1 root root 16 2012-02-01 03:51 /usr/lib/libgmp.so -> libgmp.so.10.0.1
- lrwxrwxrwx 1 root root 16 2012-02-01 03:48 /usr/lib/libgmp.so.10 -> libgmp.so.10.0.1
- -rw-r--r-- 1 root root 475096 2011-04-21 03:04 /usr/lib/libgmp.so.10.0.1
- lrwxrwxrwx 1 root root 15 2011-04-21 02:37 /usr/lib/libgmp.so.3 -> libgmp.so.3.5.2
- -rw-r--r-- 1 root root 380736 2011-04-21 02:37 /usr/lib/libgmp.so.3.5.2
- -rw-r--r-- 1 root root 34660 2011-04-21 03:04 /usr/lib/libgmpxx.a
- -rw-r--r-- 1 root root 956 2011-04-21 02:58 /usr/lib/libgmpxx.la
- lrwxrwxrwx 1 root root 17 2012-02-01 03:51 /usr/lib/libgmpxx.so -> libgmpxx.so.4.2.1
- lrwxrwxrwx 1 root root 17 2012-02-01 03:51 /usr/lib/libgmpxx.so.4 -> libgmpxx.so.4.2.1
- -rw-r--r-- 1 root root 14616 2011-04-21 03:04 /usr/lib/libgmpxx.so.4.2.1
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <gmp.h>
- int main(int argc, char **argv) {
- mpz_t z;
- mpz_init(z);
- }
RAW Paste Data

