-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
local install.packages type="source" does not honor verbose settings #149
Comments
The actual package error turned out to be because the package included a header file with... //#ifndef XLENGTH /* for compatibility with old R */ uncommented. I think anytime XLENGTH is set on a 64 bit machine, which it must be for FastR and not for gnu R, you would get a compile error. Caused by: Attached Guest Language Frames (0) With this in the code... For some reason isn't found in FastR? |
Hello, thank you for the report. This is quite interesting. This package contains this C function prototype:
This is not a function exposed in If we are lucky, this We can also properly implement |
Thank you for the comment. I am glad to hear these issues are being actively looked at and sorry to hear there is a backlog. The Rf_asS4 I'm afraid is beyond my current understanding of C code and the R API's. I trust you will address this as best seems fit for how you prioritize the error and how it fits into what you already have to do. |
Should be fixed in 9d03a7b |
From repo verbose
install.packages("fastmatch",quiet=FALSE,verbose=TRUE,keep_output=TRUE)
Installing package into ‘/Users/mjh/Documents/R/fastr’
(as ‘lib’ is unspecified)
system (cmd0): /Users/mjh/HalfPipe/HalfPipe_jpkg/outFastR/FastRGraalHPS.app/Contents/runtime/Contents/Home/languages/R/bin/R CMD INSTALL
Content type 'application/octet-stream' length 14290 bytes (13 KB)
foundpkgs: fastmatch, /var/folders/dh/91wmrk0n6lzfmr4tjhjmcfp40000gn/T/Rtmpl2ral6/downloaded_packages/fastmatch_1.1-0.tar.gz
files: /var/folders/dh/91wmrk0n6lzfmr4tjhjmcfp40000gn/T/Rtmpl2ral6/downloaded_packages/fastmatch_1.1-0.tar.gz
** package ‘fastmatch’ successfully unpacked and MD5 sums checked
** using staged installation
** libs
"/Users/mjh/HalfPipe/HalfPipe_jpkg/outFastR/FastRGraalHPS.app/Contents/runtime/Contents/Home/languages/llvm/native/bin/graalvm-native-clang" -I"/Users/mjh/HalfPipe/HalfPipe_jpkg/outFastR/FastRGraalHPS.app/Contents/runtime/Contents/Home/languages/R/include" -DNDEBUG -O2 -DFASTR -DNO_GNUR -fPIC -O2 -DFASTR -DNO_GNUR -c ctapply.c -o ctapply.o
"/Users/mjh/HalfPipe/HalfPipe_jpkg/outFastR/FastRGraalHPS.app/Contents/runtime/Contents/Home/languages/llvm/native/bin/graalvm-native-clang" -I"/Users/mjh/HalfPipe/HalfPipe_jpkg/outFastR/FastRGraalHPS.app/Contents/runtime/Contents/Home/languages/R/include" -DNDEBUG -O2 -DFASTR -DNO_GNUR -fPIC -O2 -DFASTR -DNO_GNUR -c fasthash.c -o fasthash.o
In file included from fasthash.c:19:
./common.h:13:17: error: typedef redefinition with different types ('R_len_t' (aka 'int') vs 'ptrdiff_t' (aka 'long'))
typedef R_len_t R_xlen_t;
^
/Users/mjh/HalfPipe/HalfPipe_jpkg/outFastR/FastRGraalHPS.app/Contents/runtime/Contents/Home/languages/R/include/Rinternals.h:72:23: note: previous definition is here
typedef ptrdiff_t R_xlen_t;
^
1 error generated.
make: *** [fasthash.o] Error 1
ERROR: compilation failed for package ‘fastmatch’
The downloaded source packages are in
‘/private/var/folders/dh/91wmrk0n6lzfmr4tjhjmcfp40000gn/T/Rtmpl2ral6/downloaded_packages’
Warning message:
In install.packages("fastmatch", quiet = FALSE, verbose = TRUE, :
installation of package ‘fastmatch’ had non-zero exit status
From local no verbose
install.packages("/Users/mjh/Downloads/fastmatch_1.1-0.tar.gz",repos=NULL,type="source",quiet=FALSE,verbose=TRUE,keep_output=TRUE)
Installing package into ‘/Users/mjh/Documents/R/fastr’
(as ‘lib’ is unspecified)
system (cmd0): /Users/mjh/HalfPipe/HalfPipe_jpkg/outFastR/FastRGraalHPS.app/Contents/runtime/Contents/Home/languages/R/bin/R CMD INSTALL
Warning message:
In install.packages("/Users/mjh/Downloads/fastmatch_1.1-0.tar.gz", :
installation of package ‘/Users/mjh/Downloads/fastmatch_1.1-0.tar.gz’ had non-zero exit status
From OS X R.app local, verbose and works
install.packages("/Users/mjh/Downloads/fastmatch_1.1-0.tar.gz",repos=NULL,type="source",quiet=FALSE,verbose=TRUE,keep_output=TRUE)
Installing package into ‘/Users/mjh/Library/R/3.6/library’
(as ‘lib’ is unspecified)
system (cmd0): /Library/Frameworks/R.framework/Resources/bin/R CMD INSTALL
** package ‘fastmatch’ successfully unpacked and MD5 sums checked
** using staged installation
** libs
clang -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -fPIC -Wall -g -O2 -c ctapply.c -o ctapply.o
clang -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -fPIC -Wall -g -O2 -c fasthash.c -o fasthash.o
clang -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -fPIC -Wall -g -O2 -c fastmatch.c -o fastmatch.o
clang -dynamiclib -Wl,-headerpad_max_install_names -undefined dynamic_lookup -single_module -multiply_defined suppress -L/Library/Frameworks/R.framework/Resources/lib -L/usr/local/lib -o fastmatch.so ctapply.o fasthash.o fastmatch.o -F/Library/Frameworks/R.framework/.. -framework R -Wl,-framework -Wl,CoreFoundation
installing to /Users/mjh/Library/R/3.6/library/00LOCK-fastmatch/00new/fastmatch/libs
** R
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** testing if installed package can be loaded from temporary location
** checking absolute paths in shared objects and dynamic libraries
** testing if installed package can be loaded from final location
** testing if installed package keeps a record of temporary installation path
1): succeeded '/Library/Frameworks/R.framework/Resources/bin/R CMD INSTALL -l '/Users/mjh/Library/R/3.6/library' '/Users/mjh/Downloads/fastmatch_1.1-0.tar.gz''
It seems like it should never work. I'm still trying to figure out why it works this way and not FastR.
But I did notice the verbose inconsistency.
The text was updated successfully, but these errors were encountered: