Platform info
R version 3.4.1 (2017-06-30)
Platform: x86_64-apple-darwin15.6.0 (64-bit)
Running under: OS X El Capitan 10.11.6
R CMD INSTALL --no-multiarch --with-keep.source data.table
fails for me on the current dev. (this is also the default command run by Install and Restart in RStudio). The error is:
Error: package or namespace load failed for ‘data.table’ in dyn.load(file, DLLpath = DLLpath, ...):
unable to load shared object '/Library/Frameworks/R.framework/Versions/3.4/Resources/library/data.table/libs/datatable.so':
dlopen(/Library/Frameworks/R.framework/Versions/3.4/Resources/library/data.table/libs/datatable.so, 6): Symbol not found: _ENC2UTF8
Referenced from: /Library/Frameworks/R.framework/Versions/3.4/Resources/library/data.table/libs/datatable.so
Expected in: flat namespace
in /Library/Frameworks/R.framework/Versions/3.4/Resources/library/data.table/libs/datatable.so
I assume this is related to the work on #2566/#2462.
If instead we just run
R CMD build data.table
R CMD INSTALL data.table_1.10.5.tar.gz --no-multiarch --with-keep.source data.table
it runs fine...
Platform info
fails for me on the current dev. (this is also the default command run by
Install and Restartin RStudio). The error is:I assume this is related to the work on #2566/#2462.
If instead we just run
it runs fine...