Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Missing "libsystem_darwin.dylib" after installing Xcode 9

Tags:

r

xcode9

I want to install GenomicAlignments R package, however the installation crushes because it can't install one of the dependancies which is RCurl. When I try to install RCurl alone by running install.packages("RCurl"), I get the following error:

ld: file not found: /usr/lib/system/libsystem_darwin.dylib for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [RCurl.so] Error 1
ERROR: compilation failed for package ‘RCurl’
* removing ‘/usr/local/lib/R/3.4/site-library/RCurl’
Warning in install.packages :
  installation of package ‘RCurl’ had non-zero exit status

This is the sessionInfo():

R version 3.4.2 (2017-09-28)
Platform: x86_64-apple-darwin16.7.0 (64-bit)
Running under: macOS Sierra 10.12.6

I traced it down to faulty Xcode 9 version which I installed recently. So, any ideas on how to fix this? Going back to Xcode 8.3.3 would probably fix the problem, but I have no idea how to do this.

Thanks in advance, TP

like image 551
ThePresident Avatar asked Oct 13 '17 03:10

ThePresident


1 Answers

In case people are wondering: uninstalling Xcode 9 and installing Xcode 8.3.3 solved the problem for RCurl package and the related GenomicsAlignments package in R.

** testing if installed package can be loaded
* DONE (RCurl)

TP

like image 147
ThePresident Avatar answered Oct 29 '22 15:10

ThePresident