Skip to content

Instantly share code, notes, and snippets.

@romainfrancois
Created May 11, 2014 17:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save romainfrancois/e70e6c49fdda9172b644 to your computer and use it in GitHub Desktop.
Save romainfrancois/e70e6c49fdda9172b644 to your computer and use it in GitHub Desktop.
log of installing Dirk's RcppRedis
romain@naxos ~/git/Rcpp11/Rcpp11 $ brew install hiredis
==> Downloading https://github.com/redis/hiredis/archive/v0.11.0.tar.gz
######################################################################## 100,0%
==> make install PREFIX=/usr/local/Cellar/hiredis/0.11.0
🍺 /usr/local/Cellar/hiredis/0.11.0: 11 files, 156K, built in 5 seconds
romain@naxos ~/git/Rcpp11/Rcpp11 $
romain@naxos ~/git/Rcpp11/Rcpp11 $ R
R version 3.1.0 (2014-04-10) -- "Spring Dance"
Copyright (C) 2014 The R Foundation for Statistical Computing
Platform: x86_64-apple-darwin13.1.0 (64-bit)
R est un logiciel libre livré sans AUCUNE GARANTIE.
Vous pouvez le redistribuer sous certaines conditions.
Tapez 'license()' ou 'licence()' pour plus de détails.
R est un projet collaboratif avec de nombreux contributeurs.
Tapez 'contributors()' pour plus d'information et
'citation()' pour la façon de le citer dans les publications.
Tapez 'demo()' pour des démonstrations, 'help()' pour l'aide
en ligne ou 'help.start()' pour obtenir l'aide au format HTML.
Tapez 'q()' pour quitter R.
install_> install_github( "eddelbuettel/rcppredis" )
Installing github repo rcppredis/master from eddelbuettel
Downloading master.zip from https://github.com/eddelbuettel/rcppredis/archive/master.zip
Installing package from /var/folders/2p/w41blnl95jv507lc9mffd0fr0000gn/T//RtmpZtJYoJ/master.zip
arguments 'minimized' and 'invisible' are for Windows only
Installing RcppRedis
Installing dependencies for RcppRedis:
RApiSerialize, RApiSerialize, rredis, RUnit
essai de l'URL 'http://cran.rstudio.com/bin/macosx/mavericks/contrib/3.1/RApiSerialize_0.1.0.tgz'
Content type 'application/x-gzip' length 17245 bytes (16 Kb)
URL ouverte
==================================================
downloaded 16 Kb
essai de l'URL 'http://cran.rstudio.com/bin/macosx/mavericks/contrib/3.1/rredis_1.6.8.tgz'
Content type 'application/x-gzip' length 388879 bytes (379 Kb)
URL ouverte
==================================================
downloaded 379 Kb
essai de l'URL 'http://cran.rstudio.com/bin/macosx/mavericks/contrib/3.1/RUnit_0.4.26.tgz'
Content type 'application/x-gzip' length 176082 bytes (171 Kb)
URL ouverte
==================================================
downloaded 171 Kb
The downloaded binary packages are in
/var/folders/2p/w41blnl95jv507lc9mffd0fr0000gn/T//RtmpZtJYoJ/downloaded_packages
'/Library/Frameworks/R.framework/Resources/bin/R' --vanilla CMD INSTALL \
'/private/var/folders/2p/w41blnl95jv507lc9mffd0fr0000gn/T/RtmpZtJYoJ/devtools1c262cd435a0/rcppredis-master' \
--library='/Library/Frameworks/R.framework/Versions/3.1/Resources/library' \
--install-tests
* installing *source* package 'RcppRedis' ...
checking for g++... g++
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 g++ accepts -g... yes
checking how to run the C++ preprocessor... g++ -E
checking whether we are using the GNU C++ compiler... (cached) yes
checking whether g++ accepts -g... (cached) yes
checking for pkg-config... no
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/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 hiredis/hiredis.h usability... yes
checking hiredis/hiredis.h presence... yes
checking for hiredis/hiredis.h... yes
configure: creating ./config.status
config.status: creating src/Makevars
Completed configuration and ready to build.
** libs
clang++ -I/Library/Frameworks/R.framework/Resources/include -DNDEBUG -I/usr/local/include -I/usr/local/include/freetype2 -I/opt/X11/include -I"/Library/Frameworks/R.framework/Versions/3.1/Resources/library/Rcpp/include" -I"/Library/Frameworks/R.framework/Versions/3.1/Resources/library/RApiSerialize/include" -fPIC -Wall -mtune=core2 -g -O2 -c RcppExports.cpp -o RcppExports.o
clang++ -I/Library/Frameworks/R.framework/Resources/include -DNDEBUG -I/usr/local/include -I/usr/local/include/freetype2 -I/opt/X11/include -I"/Library/Frameworks/R.framework/Versions/3.1/Resources/library/Rcpp/include" -I"/Library/Frameworks/R.framework/Versions/3.1/Resources/library/RApiSerialize/include" -fPIC -Wall -mtune=core2 -g -O2 -c Redis.cpp -o Redis.o
clang++ -dynamiclib -Wl,-headerpad_max_install_names -undefined dynamic_lookup -single_module -multiply_defined suppress -L/usr/local/lib -o RcppRedis.so RcppExports.o Redis.o -lhiredis -F/Library/Frameworks/R.framework/.. -framework R -Wl,-framework -Wl,CoreFoundation
installing to /Library/Frameworks/R.framework/Versions/3.1/Resources/library/RcppRedis/libs
** R
** demo
** inst
** tests
** preparing package for lazy loading
** help
*** installing help indices
** building package indices
** testing if installed package can be loaded
* DONE (RcppRedis)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment