Created
March 2, 2017 17:39
-
-
Save mtreg/68bcd2a1881efde9b9bc1bd12845546a to your computer and use it in GitHub Desktop.
Output of installing RODBC on ubuntu 14.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> install.packages("RODBC") | |
Installing package into ‘/usr/local/lib/R/site-library’ | |
(as ‘lib’ is unspecified) | |
--- Please select a CRAN mirror for use in this session --- | |
trying URL 'https://cloud.r-project.org/src/contrib/RODBC_1.3-14.tar.gz' | |
Content type 'unknown' length 1163799 bytes (1.1 MB) | |
================================================== | |
downloaded 1.1 MB | |
* installing *source* package ‘RODBC’ ... | |
** package ‘RODBC’ successfully unpacked and MD5 sums checked | |
checking for gcc... gcc -std=gnu99 | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... no | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether gcc -std=gnu99 accepts -g... yes | |
checking for gcc -std=gnu99 option to accept ISO C89... none needed | |
checking how to run the C preprocessor... gcc -std=gnu99 -E | |
checking for grep that handles long lines and -e... /bin/grep | |
checking for egrep... /bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking sql.h usability... yes | |
checking sql.h presence... yes | |
checking for sql.h... yes | |
checking sqlext.h usability... yes | |
checking sqlext.h presence... yes | |
checking for sqlext.h... yes | |
checking for library containing SQLTables... -lodbc | |
checking for SQLLEN... yes | |
checking for SQLULEN... yes | |
checking size of long... 8 | |
configure: creating ./config.status | |
config.status: creating src/Makevars | |
config.status: creating src/config.h | |
** libs | |
gcc -std=gnu99 -I/usr/share/R/include -DNDEBUG -I. -fpic -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -g -c RODBC.c -o RODBC.o | |
gcc -std=gnu99 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o RODBC.so RODBC.o -lodbc -L/usr/lib/R/lib -lR | |
installing to /usr/local/lib/R/site-library/RODBC/libs | |
** R | |
** inst | |
** preparing package for lazy loading | |
** help | |
*** installing help indices | |
** building package indices | |
** installing vignettes | |
** testing if installed package can be loaded | |
* DONE (RODBC) | |
The downloaded source packages are in | |
‘/tmp/Rtmp8UJtcs/downloaded_packages’ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment