File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11check_location <- function (){
22 if (Sys.info()[' sysname' ] == ' Windows' ){
33 if (! file.exists(" ../build/bin/Debug/thundersvm.dll" )){
4- stop(" Please build the library first!" )
4+ stop(" Please build the library first (or check you called this while your workspace is set to the thundersvm/R/ directory) !" )
55 }
66 dyn.load(" ../build/bin/Debug/thundersvm.dll" )
77 } else if (Sys.info()[' sysname' ] == ' Linux' ){
88 if (! file.exists(" ../build/lib/libthundersvm.so" )){
9- stop(" Please build the library first!" )
9+ stop(" Please build the library first (or check you called this while your workspace is set to the thundersvm/R/ directory) !" )
1010 }
1111 dyn.load(" ../build/lib/libthundersvm.so" )
1212 } else if (Sys.info()[' sysname' ] == ' Darwin' ){
1313 if (! file.exists(" ../build/lib/libthundersvm.dylib" )){
14- stop(" Please build the library first!" )
14+ stop(" Please build the library first (or check you called this while your workspace is set to the thundersvm/R/ directory) !" )
1515 }
1616 dyn.load(" ../build/lib/libthundersvm.dylib" )
1717 } else {
You can’t perform that action at this time.
0 commit comments