Skip to content
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

Issue with Seurat installation in R version 4.0.2 #3273

Closed
kmuench opened this issue Jul 16, 2020 · 30 comments
Closed

Issue with Seurat installation in R version 4.0.2 #3273

kmuench opened this issue Jul 16, 2020 · 30 comments

Comments

@kmuench
Copy link

kmuench commented Jul 16, 2020

Hello,

I just upgraded to R v4, and I'm running into some mystery issues while re-installing Seurat. Is Seurat compatible with R v4?

Thank you for your work on this library!

Details:

When I try to reinstall by typing

BiocManager::install("Seurat")

The installation initially proceeds as normal:

installing the source package ‘Seurat’

trying URL 'https://cran.rstudio.com/src/contrib/Seurat_3.2.0.tar.gz'
Content type 'application/x-gzip' length 1482089 bytes (1.4 MB)
==================================================
downloaded 1.4 MB

* installing *source* package ‘Seurat’ ...
** package ‘Seurat’ successfully unpacked and MD5 sums checked
** using staged installation

But then I see:

** libs
clang++ -mmacosx-version-min=10.13 -std=gnu++11 -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG  -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/Rcpp/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppProgress/include' -I/usr/local/include   -fPIC  -Wall -g -O2  -c ModularityOptimizer.cpp -o ModularityOptimizer.o
ModularityOptimizer.cpp:762:7: warning: unused variable 'n2_max' [-Wunused-variable]
  int n2_max = *std::max_element(node2.cbegin(), node2.cend());
      ^
ModularityOptimizer.cpp:761:7: warning: unused variable 'n1_max' [-Wunused-variable]
  int n1_max = *std::max_element(node1.cbegin(), node1.cend());
      ^
2 warnings generated.
clang++ -mmacosx-version-min=10.13 -std=gnu++11 -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG  -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/Rcpp/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppProgress/include' -I/usr/local/include   -fPIC  -Wall -g -O2  -c RModularityOptimizer.cpp -o RModularityOptimizer.o
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Core:535:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^

The "pragma" error then prints out ~20 times, then the clang error, then the 20 pragma errors, then that whole cycle repeats 5-6 times until finally the installation ends with:

installing to /Library/Frameworks/R.framework/Versions/4.0/Resources/library/00LOCK-Seurat/00new/Seurat/libs
** R
** data
*** moving datasets to lazyload DB
/Library/Frameworks/R.framework/Resources/bin/INSTALL: line 34: 51412 Done                    echo 'tools:::.install_packages()'
     51413 Killed: 9               | R_DEFAULT_PACKAGES= LC_COLLATE=C "${R_HOME}/bin/R" $myArgs --no-echo --args ${args}

The downloaded source packages are in
	‘/private/var/folders/n9/_hzybkxd18d3gph5qlqhmsw40000gr/T/RtmpAAMwJ8/downloaded_packages’
Warning message:
In install.packages(...) :
  installation of package ‘Seurat’ had non-zero exit status

If I attempt to re-install Seurat, I then get an error recommending I try removing the 00LOCK file.

sessionInfo:

R version 4.0.2 (2020-06-22)
Platform: x86_64-apple-darwin17.0 (64-bit)
Running under: macOS Mojave 10.14.6

Matrix products: default
BLAS:   /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRlapack.dylib

locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

attached base packages:
[1] parallel  stats4    stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
 [1] pheatmap_1.0.12             SingleCellExperiment_1.10.1 SummarizedExperiment_1.18.2 DelayedArray_0.14.1         matrixStats_0.56.0          Biobase_2.48.0              GenomicRanges_1.40.0        GenomeInfoDb_1.24.2        
 [9] IRanges_2.22.2              S4Vectors_0.26.1            BiocGenerics_0.34.0        

loaded via a namespace (and not attached):
 [1] RColorBrewer_1.1-2     BiocManager_1.30.10    compiler_4.0.2         pillar_1.4.6           XVector_0.28.0         base64enc_0.1-3        bitops_1.0-6           viridis_0.5.1          tools_4.0.2            zlibbioc_1.34.0       
[11] digest_0.6.25          jsonlite_1.7.0         evaluate_0.14          viridisLite_0.3.0      lifecycle_0.2.0        tibble_3.0.3           gtable_0.3.0           lattice_0.20-41        pkgconfig_2.0.3        rlang_0.4.7           
[21] Matrix_1.2-18          rstudioapi_0.11        yaml_2.2.1             xfun_0.15              gridExtra_2.3          GenomeInfoDbData_1.2.3 stringr_1.4.0          dplyr_1.0.0            knitr_1.29             generics_0.0.2        
[31] vctrs_0.3.2            tidyselect_1.1.0       grid_4.0.2             glue_1.4.1             R6_2.4.1               rmarkdown_2.3          purrr_0.3.4            ggplot2_3.3.2          magrittr_1.5           htmltools_0.5.0       
[41] scales_1.1.1           ellipsis_0.3.1         colorspace_1.4-1       stringi_1.4.6          RCurl_1.98-1.2         munsell_0.5.0          crayon_1.3.4          
@mojaveazure
Copy link
Member

The prama error is a warning and okay to ignore. The issue is that your R session is killing the installation process

51413 Killed: 9               | R_DEFAULT_PACKAGES= LC_COLLATE=C "${R_HOME}/bin/R" $myArgs --no-echo --args ${args}

Unfortunately, the error that's happening is being swallowed here. Can you try installing Seurat again using R in the terminal instead of RStudio?

@mojaveazure mojaveazure added the more-information-needed We need more information before this can be addressed label Jul 17, 2020
@rhondabacher
Copy link

This is happening to me as well. Using the terminal doesn't seem to produce a more helpful error:

17 warnings generated.
/usr/local/clang4/bin/clang++ -std=gnu++11 -dynamiclib -Wl,-headerpad_max_install_names -undefined dynamic_lookup -single_module -multiply_defined suppress -L/Library/Frameworks/R.framework/Resources/lib -L/usr/local/clang4/lib -o Seurat.so ModularityOptimizer.o RModularityOptimizer.o RcppExports.o data_manipulation.o integration.o snn.o -F/Library/Frameworks/R.framework/.. -framework R -Wl,-framework -Wl,CoreFoundation
installing to /Library/Frameworks/R.framework/Versions/4.0/Resources/library/00LOCK-Seurat/00new/Seurat/libs
** R
** data
*** moving datasets to lazyload DB
/Library/Frameworks/R.framework/Resources/bin/INSTALL: line 34: 1870 Done echo 'tools:::.install_packages()'
1872 Killed: 9 | R_DEFAULT_PACKAGES= LC_COLLATE=C "${R_HOME}/bin/R" $myArgs --no-echo --args ${args}

@kmuench
Copy link
Author

kmuench commented Jul 17, 2020

This is happening to me as well. Using the terminal doesn't seem to produce a more helpful error:

17 warnings generated.
/usr/local/clang4/bin/clang++ -std=gnu++11 -dynamiclib -Wl,-headerpad_max_install_names -undefined dynamic_lookup -single_module -multiply_defined suppress -L/Library/Frameworks/R.framework/Resources/lib -L/usr/local/clang4/lib -o Seurat.so ModularityOptimizer.o RModularityOptimizer.o RcppExports.o data_manipulation.o integration.o snn.o -F/Library/Frameworks/R.framework/.. -framework R -Wl,-framework -Wl,CoreFoundation
installing to /Library/Frameworks/R.framework/Versions/4.0/Resources/library/00LOCK-Seurat/00new/Seurat/libs
** R
** data
*** moving datasets to lazyload DB
/Library/Frameworks/R.framework/Resources/bin/INSTALL: line 34: 1870 Done echo 'tools:::.install_packages()'
1872 Killed: 9 | R_DEFAULT_PACKAGES= LC_COLLATE=C "${R_HOME}/bin/R" $myArgs --no-echo --args ${args}

Agreed, I tried in the R console and got the same error:

installing to /Library/Frameworks/R.framework/Versions/4.0/Resources/library/00LOCK-Seurat/00new/Seurat/libs
** R
** data
*** moving datasets to lazyload DB
/Library/Frameworks/R.framework/Resources/bin/INSTALL: line 34: 72242 Done                    echo 'tools:::.install_packages()'
     72243 Killed: 9               | R_DEFAULT_PACKAGES= LC_COLLATE=C "${R_HOME}/bin/R" $myArgs --no-echo --args ${args}

The downloaded source packages are in
	‘/private/var/folders/n9/_hzybkxd18d3gph5qlqhmsw40000gr/T/RtmpDANaaI/downloaded_packages’
Warning message:
In install.packages(...) :
  installation of package ‘Seurat’ had non-zero exit status

@no-response no-response bot removed the more-information-needed We need more information before this can be addressed label Jul 17, 2020
@mojaveazure
Copy link
Member

Hmm, it seems as though R is having trouble installing the latest release from source. We've built a binary of Seurat 3.2.0 for macOS under R v4, you can install it with the following:

install.packages("Seurat", repos = c("https://seurat.nygenome.org/", "https://cloud.r-project.org"))

Let me know if this works for you

@mojaveazure mojaveazure added the more-information-needed We need more information before this can be addressed label Jul 17, 2020
@kmuench
Copy link
Author

kmuench commented Jul 17, 2020

Thank you so much!

With the above, I get the following error:

Warning in install.packages :
  unable to access index for repository https://cloud.r-project.org/src/contrib:
  cannot open URL 'https://cloud.r-project.org/src/contrib/PACKAGES'
Warning in install.packages :
  package ‘Seurat’ is not available (for R version 4.0.2)
Warning in install.packages :
  unable to access index for repository https://cloud.r-project.org/bin/macosx/contrib/4.0:
  cannot open URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/PACKAGES'

Since it looked like it might be looking for the Seurat binary in the wrong place on cloud.r-project.org, I removed the second repo from that flag and then just got the "Seurat is not available for R4.0.2" error

@no-response no-response bot removed the more-information-needed We need more information before this can be addressed label Jul 17, 2020
@mojaveazure
Copy link
Member

mojaveazure commented Jul 17, 2020

Huh, it's weird that you can't see https://cloud.r-project.org/; looking back through your issue, you were using https://cran.rstudio.com before so you can replace https://cloud.r-project.org/ with https://cran.rstudio.com

As for the second issue, what happens if you run the following in the terminal (not R)

curl https://seurat.nygenome.org/bin/macosx/contrib/4.0/PACKAGES

@mojaveazure mojaveazure added the more-information-needed We need more information before this can be addressed label Jul 17, 2020
@rhondabacher
Copy link

The download works OK! But then I am unable to load the package. Am I using this incorrectly?

install.packages("Seurat", repos = c("https://seurat.nygenome.org/", "https://cran.rstudio.com"))
trying URL 'https://seurat.nygenome.org/bin/macosx/contrib/4.0/Seurat_3.2.0.tgz'
Content type 'application/octet-stream' length 1976967 bytes (1.9 MB)
==================================================
downloaded 1.9 MB

The downloaded binary packages are in
/var/folders/gc/tf5lysk92375n12zjcl41dh9xl9rpg/T//RtmpbeulfE/downloaded_packages

library(Seurat)
Error: package or namespace load failed for ‘Seurat’ in dyn.load(file, DLLpath = DLLpath, ...):
unable to load shared object '/Library/Frameworks/R.framework/Versions/4.0/Resources/library/Seurat/libs/Seurat.so':
dlopen(/Library/Frameworks/R.framework/Versions/4.0/Resources/library/Seurat/libs/Seurat.so, 6): Library not loaded: /usr/local/opt/r/lib/R/lib/libR.dylib
Referenced from: /Library/Frameworks/R.framework/Versions/4.0/Resources/library/Seurat/libs/Seurat.so
Reason: image not found

@kmuench
Copy link
Author

kmuench commented Jul 17, 2020

The download works OK! But then I am unable to load the package. Am I using this incorrectly?

install.packages("Seurat", repos = c("https://seurat.nygenome.org/", "https://cran.rstudio.com"))
trying URL 'https://seurat.nygenome.org/bin/macosx/contrib/4.0/Seurat_3.2.0.tgz'
Content type 'application/octet-stream' length 1976967 bytes (1.9 MB)

downloaded 1.9 MB

The downloaded binary packages are in
/var/folders/gc/tf5lysk92375n12zjcl41dh9xl9rpg/T//RtmpbeulfE/downloaded_packages

library(Seurat)
Error: package or namespace load failed for ‘Seurat’ in dyn.load(file, DLLpath = DLLpath, ...):
unable to load shared object '/Library/Frameworks/R.framework/Versions/4.0/Resources/library/Seurat/libs/Seurat.so':
dlopen(/Library/Frameworks/R.framework/Versions/4.0/Resources/library/Seurat/libs/Seurat.so, 6): Library not loaded: /usr/local/opt/r/lib/R/lib/libR.dylib
Referenced from: /Library/Frameworks/R.framework/Versions/4.0/Resources/library/Seurat/libs/Seurat.so
Reason: image not found

I am getting the same issue (except for I had to do a couple extra steps before I got to the same point:

  1. Install gfortran
  2. BiocManager::install("deldir") )

@no-response no-response bot removed the more-information-needed We need more information before this can be addressed label Jul 17, 2020
@mojaveazure
Copy link
Member

That's interesting that neither of you are able to install Seurat. How did you guys install R? Did you download the app from CRAN, did you install it through Conda, or some other method of installation?

@slowkow
Copy link

slowkow commented Jul 18, 2020

I have exactly the same error, line for line verbatim. I had Seurat installed OK on R 3.6 and now I can't get it installed on R 4.0

install.packages("Seurat")
17 warnings generated.
clang++ -mmacosx-version-min=10.13 -std=gnu++11 -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 Seurat.so ModularityOptimizer.o RModularityOptimizer.o RcppExports.o data_manipulation.o integration.o snn.o -F/Library/Frameworks/R.framework/.. -framework R -Wl,-framework -Wl,CoreFoundation
installing to /Library/Frameworks/R.framework/Versions/4.0/Resources/library/00LOCK-Seurat/00new/Seurat/libs
** R
** data
*** moving datasets to lazyload DB
/Library/Frameworks/R.framework/Resources/bin/INSTALL: line 34: 63947 Done                    echo 'tools:::.install_packages()'
     63948 Killed: 9               | R_DEFAULT_PACKAGES= LC_COLLATE=C "${R_HOME}/bin/R" $myArgs --no-echo --args ${args}

The downloaded source packages are in
        ‘/private/var/folders/_p/36jhfrg52ld1643fftf08x740000gp/T/RtmptR3lZo/downloaded_packages’
Warning message:
In install.packages("Seurat") :
  installation of package ‘Seurat’ had non-zero exit status
sessionInfo()
R version 4.0.2 (2020-06-22)
Platform: x86_64-apple-darwin17.0 (64-bit)
Running under: macOS Catalina 10.15.5

Matrix products: default
BLAS:   /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRblas.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRlapack.dylib

locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base

other attached packages:
[1] devtools_2.3.0 usethis_1.6.1

loaded via a namespace (and not attached):
 [1] ps_1.3.3           fansi_0.4.1        prettyunits_1.1.1  rprojroot_1.3-2
 [5] withr_2.2.0        digest_0.6.25      crayon_1.3.4       assertthat_0.2.1
 [9] R6_2.4.1           backports_1.1.8    magrittr_1.5       rlang_0.4.7
[13] cli_2.0.2          remotes_2.1.1      fs_1.4.2           testthat_2.3.2
[17] callr_3.4.3        ellipsis_0.3.1     desc_1.2.0         tools_4.0.2
[21] glue_1.4.1         compiler_4.0.2     pkgload_1.1.0      processx_3.4.3
[25] pkgbuild_1.1.0     sessioninfo_1.1.1  memoise_1.1.0.9000

I also recently tried to help others with a similar error with our harmony R package. I still don't fully understand it.

$ cat ~/.R/Makevars # it is empty
$ readlink -f $(which gfortran)
/usr/local/gfortran/bin/gfortran

$ gfortran --version
GNU Fortran (GCC) 6.3.0
Copyright (C) 2016 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

$ readlink -f $(which clang++)
/usr/bin/clang++

$ clang++ --version
Apple clang version 11.0.0 (clang-1100.0.33.17)
Target: x86_64-apple-darwin19.5.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin

@slowkow
Copy link

slowkow commented Jul 18, 2020

I tried installing gfortran 8.2.0 as recommended here. It didn't help.

https://cloud.r-project.org/
Screen Shot 2020-07-17 at 9 49 44 PM

$ gfortran --version
GNU Fortran (GCC) 8.2.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

I get a very slightly different error. Now it failed on line 64939 instead of 63947:

installing to /Library/Frameworks/R.framework/Versions/4.0/Resources/library/00LOCK-Seurat/00new/Seurat/libs
** R
** data
*** moving datasets to lazyload DB
/Library/Frameworks/R.framework/Resources/bin/INSTALL: line 34: 64939 Done                    echo 'tools:::.install_packages()'
     64940 Killed: 9               | R_DEFAULT_PACKAGES= LC_COLLATE=C "${R_HOME}/bin/R" $myArgs --no-echo --args ${args}

The downloaded source packages are in
        ‘/private/var/folders/_p/36jhfrg52ld1643fftf08x740000gp/T/RtmpsGzMza/downloaded_packages’
Warning message:
In install.packages("Seurat") :
  installation of package ‘Seurat’ had non-zero exit status

@slowkow
Copy link

slowkow commented Jul 18, 2020

I don't know why many of us with macOS are having problems while Travis is reporting success with this system information:

$ Rscript -e 'sessionInfo()'
R version 4.0.2 (2020-06-22)
Platform: x86_64-apple-darwin17.0 (64-bit)
Running under: macOS High Sierra 10.13.6

@slowkow
Copy link

slowkow commented Jul 18, 2020

I forked Seurat and launched GitHub Actions to test R CMD check with macOS 10.15.5:

https://github.com/slowkow/seurat/runs/884059520?check_suite_focus=true

The check passed without errors.

Since this issue appears in multiple R packages that use Rcpp, my hunch is that those of us experiencing this issue have probably changed the compilers on our local macOS systems, but I don't know exactly what the problem might be.

@slowkow
Copy link

slowkow commented Jul 18, 2020

Instead of choosing to compile Seurat 3.2.0, I tried choosing the binary version 3.1.5.

Then, running library(Seurat) instantly gives me Killed: 9. Searching Google for this error gives a lot of results and might help folks to investigate this problem. There seem to be a lot of possible causes...

> remove.packages("Seurat")
Removing package from ‘/Library/Frameworks/R.framework/Versions/4.0/Resources/library’
(as ‘lib’ is unspecified)
> install.packages("Seurat")

  There is a binary version available but the source version is later:
       binary source needs_compilation
Seurat  3.1.5  3.2.0              TRUE

Do you want to install from sources the package which needs compilation? (Yes/no/cancel) no
trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/Seurat_3.1.5.tgz'
Content type 'application/x-gzip' length 3186966 bytes (3.0 MB)
==================================================
downloaded 3.0 MB


The downloaded binary packages are in
        /var/folders/_p/36jhfrg52ld1643fftf08x740000gp/T//Rtmpi0g4ib/downloaded_packages
> library(Seurat)
Killed: 9

After the crash, I can see there is a new entry under Crash Reports in the Console app for macOS.

Screen Shot 2020-07-18 at 2 44 37 PM

I think this might be the important bit:

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_BAD_ACCESS (Code Signature Invalid)
Exception Codes:       0x0000000000000032, 0x000000010b784000
Exception Note:        EXC_CORPSE_NOTIFY

Termination Reason:    Namespace CODESIGNING, Code 0x2

kernel messages:

VM Regions Near 0x10b784000:
    VM_ALLOCATE            000000010b783000-000000010b784000 [    4K] rwx/rwx SM=PRV  
--> mapped file            000000010b784000-000000010b785000 [    4K] r--/r-x SM=PRV  �
    __TEXT                 000000010b785000-000000010b7ae000 [  164K] r-x/rwx SM=COW  /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRblas.dylib

The full crash report
Process:               R [2660]
Path:                  /Library/Frameworks/R.framework/Versions/4.0/Resources/bin/exec/R
Identifier:            R
Version:               0
Code Type:             X86-64 (Native)
Parent Process:        bash [67484]
Responsible:           iTerm2 [715]
User ID:               502

Date/Time:             2020-07-18 14:32:12.469 -0400
OS Version:            Mac OS X 10.15.5 (19F101)
Report Version:        12
Bridge OS Version:     4.5 (17P5300)
Anonymous UUID:        B4BCD4AE-D5A2-FADA-D9CB-55F8C4B47C43

Sleep/Wake UUID:       4B8044E9-A581-462F-A7DB-EE4272A57794

Time Awake Since Boot: 1700000 seconds
Time Since Wake:       19000 seconds

System Integrity Protection: enabled

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_BAD_ACCESS (Code Signature Invalid)
Exception Codes:       0x0000000000000032, 0x000000010b784000
Exception Note:        EXC_CORPSE_NOTIFY

Termination Reason:    Namespace CODESIGNING, Code 0x2

kernel messages:

VM Regions Near 0x10b784000:
    VM_ALLOCATE            000000010b783000-000000010b784000 [    4K] rwx/rwx SM=PRV  
--> mapped file            000000010b784000-000000010b785000 [    4K] r--/r-x SM=PRV  �
    __TEXT                 000000010b785000-000000010b7ae000 [  164K] r-x/rwx SM=COW  /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRblas.dylib

Application Specific Information:
dyld: in dlopen()
/Users/kamil/miniconda3/lib/libmkl_intel_thread.dylib

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   dyld                          	0x0000000110edf430 bcmp + 208
1   dyld                          	0x0000000110ea65ac ImageLoaderMachO::validateFirstPages(linkedit_data_command const*, int, unsigned char const*, unsigned long, long long, ImageLoader::LinkContext const&) + 104
2   dyld                          	0x0000000110eac446 ImageLoaderMachOCompressed::instantiateFromFile(char const*, int, unsigned char const*, unsigned long, unsigned long long, unsigned long long, stat const&, unsigned int, unsigned int, linkedit_data_command const*, encryption_info_command const*, ImageLoader::LinkContext const&) + 310
3   dyld                          	0x0000000110ea5638 ImageLoaderMachO::instantiateFromFile(char const*, int, unsigned char const*, unsigned long, unsigned long long, unsigned long long, stat const&, ImageLoader::LinkContext const&) + 158
4   dyld                          	0x0000000110e90e23 dyld::loadPhase6(int, stat const&, char const*, dyld::LoadContext const&) + 728
5   dyld                          	0x0000000110e98a7f dyld::loadPhase5(char const*, char const*, dyld::LoadContext const&, unsigned int&, std::__1::vector >*) + 1422
6   dyld                          	0x0000000110e9848f dyld::loadPhase4(char const*, char const*, dyld::LoadContext const&, unsigned int&, std::__1::vector >*) + 185
7   dyld                          	0x0000000110e981f9 dyld::loadPhase3(char const*, char const*, dyld::LoadContext const&, unsigned int&, std::__1::vector >*) + 1435
8   dyld                          	0x0000000110e978b3 dyld::loadPhase1(char const*, char const*, dyld::LoadContext const&, unsigned int&, std::__1::vector >*) + 183
9   dyld                          	0x0000000110e909bb dyld::loadPhase0(char const*, char const*, dyld::LoadContext const&, unsigned int&, std::__1::vector >*) + 487
10  dyld                          	0x0000000110e90578 dyld::load(char const*, dyld::LoadContext const&, unsigned int&) + 185
11  dyld                          	0x0000000110e9cd3d dlopen_internal + 419
12  libdyld.dylib                 	0x00007fff69192d8a dlopen + 171
13  libmkl_rt.dylib               	0x000000010eb04900 mkl_sdl_load_function + 912
14  libmkl_rt.dylib               	0x000000010eb010d9 MKL_Get_Version + 41
15  libpython3.7m.dylib           	0x000000010e7a71d6 _PyMethodDef_RawFastCallKeywords + 790
16  libpython3.7m.dylib           	0x000000010e7a726d _PyCFunction_FastCallKeywords + 45
17  libpython3.7m.dylib           	0x000000010e8af2bb call_function + 603
18  libpython3.7m.dylib           	0x000000010e8a64b5 _PyEval_EvalFrameDefault + 7893
19  libpython3.7m.dylib           	0x000000010e8a414c _PyEval_EvalCodeWithName + 3308
20  libpython3.7m.dylib           	0x000000010e89f985 builtin_exec + 901
21  libpython3.7m.dylib           	0x000000010e7a62ac _PyMethodDef_RawFastCallDict + 652
22  libpython3.7m.dylib           	0x000000010e7a7577 PyCFunction_Call + 87
23  libpython3.7m.dylib           	0x000000010e8a6902 _PyEval_EvalFrameDefault + 8994
24  libpython3.7m.dylib           	0x000000010e8a414c _PyEval_EvalCodeWithName + 3308
25  libpython3.7m.dylib           	0x000000010e7a6ea6 _PyFunction_FastCallKeywords + 230
26  libpython3.7m.dylib           	0x000000010e8af32e call_function + 718
27  libpython3.7m.dylib           	0x000000010e8a64b5 _PyEval_EvalFrameDefault + 7893
28  libpython3.7m.dylib           	0x000000010e7a691e function_code_fastcall + 254
29  libpython3.7m.dylib           	0x000000010e8af32e call_function + 718
30  libpython3.7m.dylib           	0x000000010e8a649b _PyEval_EvalFrameDefault + 7867
31  libpython3.7m.dylib           	0x000000010e7a691e function_code_fastcall + 254
32  libpython3.7m.dylib           	0x000000010e8af32e call_function + 718
33  libpython3.7m.dylib           	0x000000010e8a6546 _PyEval_EvalFrameDefault + 8038
34  libpython3.7m.dylib           	0x000000010e7a691e function_code_fastcall + 254
35  libpython3.7m.dylib           	0x000000010e8af32e call_function + 718
36  libpython3.7m.dylib           	0x000000010e8a6546 _PyEval_EvalFrameDefault + 8038
37  libpython3.7m.dylib           	0x000000010e7a691e function_code_fastcall + 254
38  libpython3.7m.dylib           	0x000000010e7a8908 object_vacall + 392
39  libpython3.7m.dylib           	0x000000010e7a8a3d _PyObject_CallMethodIdObjArgs + 173
40  libpython3.7m.dylib           	0x000000010e8d1c6c PyImport_ImportModuleLevelObject + 2124
41  libpython3.7m.dylib           	0x000000010e89e595 builtin___import__ + 149
42  libpython3.7m.dylib           	0x000000010e7a769c PyCFunction_Call + 380
43  libpython3.7m.dylib           	0x000000010e8a6902 _PyEval_EvalFrameDefault + 8994
44  libpython3.7m.dylib           	0x000000010e8a414c _PyEval_EvalCodeWithName + 3308
45  libpython3.7m.dylib           	0x000000010e7a6ea6 _PyFunction_FastCallKeywords + 230
46  libpython3.7m.dylib           	0x000000010e8af32e call_function + 718
47  libpython3.7m.dylib           	0x000000010e8a6546 _PyEval_EvalFrameDefault + 8038
48  libpython3.7m.dylib           	0x000000010e7a691e function_code_fastcall + 254
49  libpython3.7m.dylib           	0x000000010e8af32e call_function + 718
50  libpython3.7m.dylib           	0x000000010e8a6546 _PyEval_EvalFrameDefault + 8038
51  libpython3.7m.dylib           	0x000000010e7a691e function_code_fastcall + 254
52  libpython3.7m.dylib           	0x000000010e7a8908 object_vacall + 392
53  libpython3.7m.dylib           	0x000000010e7a8a3d _PyObject_CallMethodIdObjArgs + 173
54  libpython3.7m.dylib           	0x000000010e8d1c6c PyImport_ImportModuleLevelObject + 2124
55  libpython3.7m.dylib           	0x000000010e89e595 builtin___import__ + 149
56  libpython3.7m.dylib           	0x000000010e7a769c PyCFunction_Call + 380
57  libpython3.7m.dylib           	0x000000010e8a6902 _PyEval_EvalFrameDefault + 8994
58  libpython3.7m.dylib           	0x000000010e8a414c _PyEval_EvalCodeWithName + 3308
59  libpython3.7m.dylib           	0x000000010e7a6ea6 _PyFunction_FastCallKeywords + 230
60  libpython3.7m.dylib           	0x000000010e8af32e call_function + 718
61  libpython3.7m.dylib           	0x000000010e8a6546 _PyEval_EvalFrameDefault + 8038
62  libpython3.7m.dylib           	0x000000010e7a691e function_code_fastcall + 254
63  libpython3.7m.dylib           	0x000000010e8af32e call_function + 718
64  libpython3.7m.dylib           	0x000000010e8a6546 _PyEval_EvalFrameDefault + 8038
65  libpython3.7m.dylib           	0x000000010e7a691e function_code_fastcall + 254
66  libpython3.7m.dylib           	0x000000010e7a8908 object_vacall + 392
67  libpython3.7m.dylib           	0x000000010e7a8a3d _PyObject_CallMethodIdObjArgs + 173
68  libpython3.7m.dylib           	0x000000010e8d1c6c PyImport_ImportModuleLevelObject + 2124
69  libpython3.7m.dylib           	0x000000010e89e595 builtin___import__ + 149
70  libpython3.7m.dylib           	0x000000010e7a628d _PyMethodDef_RawFastCallDict + 621
71  libpython3.7m.dylib           	0x000000010e7a5c80 _PyObject_FastCallDict + 272
72  libpython3.7m.dylib           	0x000000010e7a7c7a _PyObject_CallFunctionVa + 266
73  libpython3.7m.dylib           	0x000000010e7a7b4b PyObject_CallFunction + 139
74  libpython3.7m.dylib           	0x000000010e8d1237 PyImport_Import + 631
75  libpython3.7m.dylib           	0x000000010e8d27fc PyImport_ImportModule + 28
76  reticulate.so                 	0x000000010e71c2c7 libpython::import_numpy_api(bool, std::__1::basic_string, std::__1::allocator >*) + 39 (libpython.cpp:325)
77  reticulate.so                 	0x000000010e728010 py_initialize(std::__1::basic_string, std::__1::allocator > const&, std::__1::basic_string, std::__1::allocator > const&, std::__1::basic_string, std::__1::allocator > const&, std::__1::basic_string, std::__1::allocator > const&, bool, bool, std::__1::basic_string, std::__1::allocator > const&) + 896 (python.cpp:1710)
78  reticulate.so                 	0x000000010e704e6a _reticulate_py_initialize + 858 (RcppExports.cpp:117)
79  libR.dylib                    	0x000000010b316de7 R_doDotCall + 2679
80  libR.dylib                    	0x000000010b3627fa bcEval + 105338 (eval.c:7655)
81  libR.dylib                    	0x000000010b348541 Rf_eval + 385
82  libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
83  libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
84  libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
85  libR.dylib                    	0x000000010b348541 Rf_eval + 385
86  libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
87  libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
88  libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
89  libR.dylib                    	0x000000010b348541 Rf_eval + 385
90  libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
91  libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
92  libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
93  libR.dylib                    	0x000000010b348541 Rf_eval + 385
94  libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
95  libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
96  libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
97  libR.dylib                    	0x000000010b348541 Rf_eval + 385
98  libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
99  libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
100 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
101 libR.dylib                    	0x000000010b348541 Rf_eval + 385
102 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
103 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
104 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
105 libR.dylib                    	0x000000010b348541 Rf_eval + 385
106 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
107 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
108 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
109 libR.dylib                    	0x000000010b348541 Rf_eval + 385
110 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
111 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
112 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
113 libR.dylib                    	0x000000010b348541 Rf_eval + 385
114 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
115 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
116 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
117 libR.dylib                    	0x000000010b348541 Rf_eval + 385
118 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
119 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
120 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
121 libR.dylib                    	0x000000010b348541 Rf_eval + 385
122 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
123 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
124 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
125 libR.dylib                    	0x000000010b348541 Rf_eval + 385
126 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
127 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
128 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
129 libR.dylib                    	0x000000010b348541 Rf_eval + 385
130 libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
131 libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
132 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
133 libR.dylib                    	0x000000010b348541 Rf_eval + 385
134 libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
135 libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
136 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
137 libR.dylib                    	0x000000010b348541 Rf_eval + 385
138 libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
139 libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
140 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
141 libR.dylib                    	0x000000010b348541 Rf_eval + 385
142 libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
143 libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
144 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
145 libR.dylib                    	0x000000010b348541 Rf_eval + 385
146 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
147 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
148 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
149 libR.dylib                    	0x000000010b348541 Rf_eval + 385
150 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
151 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
152 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
153 libR.dylib                    	0x000000010b348541 Rf_eval + 385
154 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
155 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
156 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
157 libR.dylib                    	0x000000010b348541 Rf_eval + 385
158 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
159 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
160 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
161 libR.dylib                    	0x000000010b348541 Rf_eval + 385
162 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
163 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
164 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
165 libR.dylib                    	0x000000010b348541 Rf_eval + 385
166 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
167 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
168 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
169 libR.dylib                    	0x000000010b348541 Rf_eval + 385
170 libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
171 libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
172 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
173 libR.dylib                    	0x000000010b348541 Rf_eval + 385
174 libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
175 libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
176 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
177 libR.dylib                    	0x000000010b348541 Rf_eval + 385
178 libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
179 libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
180 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
181 libR.dylib                    	0x000000010b348541 Rf_eval + 385
182 libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
183 libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
184 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
185 libR.dylib                    	0x000000010b348541 Rf_eval + 385
186 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
187 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
188 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
189 libR.dylib                    	0x000000010b348541 Rf_eval + 385
190 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
191 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
192 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
193 libR.dylib                    	0x000000010b348541 Rf_eval + 385
194 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
195 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
196 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
197 libR.dylib                    	0x000000010b348541 Rf_eval + 385
198 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
199 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
200 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
201 libR.dylib                    	0x000000010b348541 Rf_eval + 385
202 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
203 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
204 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
205 libR.dylib                    	0x000000010b348541 Rf_eval + 385
206 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
207 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
208 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
209 libR.dylib                    	0x000000010b348541 Rf_eval + 385
210 libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
211 libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
212 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
213 libR.dylib                    	0x000000010b348541 Rf_eval + 385
214 libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
215 libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
216 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
217 libR.dylib                    	0x000000010b348541 Rf_eval + 385
218 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
219 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
220 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
221 libR.dylib                    	0x000000010b348541 Rf_eval + 385
222 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
223 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
224 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
225 libR.dylib                    	0x000000010b348541 Rf_eval + 385
226 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
227 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
228 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
229 libR.dylib                    	0x000000010b348541 Rf_eval + 385
230 libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
231 libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
232 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
233 libR.dylib                    	0x000000010b348541 Rf_eval + 385
234 libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
235 libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
236 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
237 libR.dylib                    	0x000000010b348541 Rf_eval + 385
238 libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
239 libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
240 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
241 libR.dylib                    	0x000000010b348541 Rf_eval + 385
242 libR.dylib                    	0x000000010b366f4c forcePromise + 172 (eval.c:557)
243 libR.dylib                    	0x000000010b3728ca getvar + 778 (eval.c:5165)
244 libR.dylib                    	0x000000010b34c90c bcEval + 15500 (eval.c:6851)
245 libR.dylib                    	0x000000010b348541 Rf_eval + 385
246 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
247 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
248 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
249 libR.dylib                    	0x000000010b348541 Rf_eval + 385
250 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
251 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
252 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
253 libR.dylib                    	0x000000010b348541 Rf_eval + 385
254 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
255 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
256 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
257 libR.dylib                    	0x000000010b348541 Rf_eval + 385
258 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
259 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
260 libR.dylib                    	0x000000010b34f728 bcEval + 27304 (eval.c:7069)
261 libR.dylib                    	0x000000010b348541 Rf_eval + 385
262 libR.dylib                    	0x000000010b368a71 R_execClosure + 2193
263 libR.dylib                    	0x000000010b367849 Rf_applyClosure + 473 (eval.c:1814)
264 libR.dylib                    	0x000000010b348a16 Rf_eval + 1622 (eval.c:846)
265 libR.dylib                    	0x000000010b39dcba Rf_ReplIteration + 810 (main.c:264)
266 libR.dylib                    	0x000000010b39f1df run_Rmainloop + 207 (main.c:1113)
267 R                             	0x000000010b286f5b main + 27
268 libdyld.dylib                 	0x00007fff691a7cc9 start + 1

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x000000010b784000  rcx: 0x0000000000000000  rdx: 0x00000000000007c8
  rdi: 0x000000010b784000  rsi: 0x00007ffee4948650  rbp: 0x00007ffee4948030  rsp: 0x00007ffee4948030
   r8: 0x0000000000000007   r9: 0x0000000000000000  r10: 0x0000000000000001  r11: 0x0000000000000202
  r12: 0x0000000000000000  r13: 0x0000000000000007  r14: 0x00000000000007c8  r15: 0x00007fb48bce9d30
  rip: 0x0000000110edf430  rfl: 0x0000000000010246  cr2: 0x000000010b784000
  
Logical CPU:     2
Error Code:      0x00000004 (no mapping for user data read)
Trap Number:     14


Binary Images:
       0x10b286000 -        0x10b286fff +R (0)  /Library/Frameworks/R.framework/Resources/bin/exec/R
       0x10b290000 -        0x10b597ff7 +libR.dylib (0) <583EA0D6-DFEF-39EC-A783-AB5362181407> /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libR.dylib
       0x10b785000 -        0x10b7adfff +libRblas.dylib (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRblas.dylib
       0x10b7b9000 -        0x10b9eafef +libgfortran.5.dylib (0) <5B0F7278-9D16-3B60-A413-59EEF538E568> /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libgfortran.5.dylib
       0x10ba73000 -        0x10baabfff +libquadmath.0.dylib (0) <856F3E97-EECB-3DDE-AF45-56AEA7758A1E> /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libquadmath.0.dylib
       0x10bac2000 -        0x10bad7fef +libgcc_s.1.dylib (1)  /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libgcc_s.1.dylib
       0x10d644000 -        0x10d649ff7 +methods.so (0) <0F3E383F-C576-3189-AA08-B332F2BFCE45> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/methods/libs/methods.so
       0x10d654000 -        0x10d688ff7 +grDevices.so (0) <69152EF8-73F3-399C-9412-4E328387FE64> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/grDevices/libs/grDevices.so
       0x10d6a8000 -        0x10d6e1ff7 +graphics.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/graphics/libs/graphics.so
       0x10d6f1000 -        0x10d6f9ff3 +utils.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/utils/libs/utils.so
       0x10d704000 -        0x10d7aafff +stats.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/stats/libs/stats.so
       0x10d7cb000 -        0x10d9c4fef +libRlapack.dylib (0) <2FE8D12A-B5B7-3A7C-A7DC-2DADBCD92099> /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRlapack.dylib
       0x10d9f9000 -        0x10da19fff +fs.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/fs/libs/fs.so
       0x10da30000 -        0x10da47ffb +rlang.so (0) <30CDDCBD-B5FA-3481-82B8-4ABF1AA67F54> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/rlang/libs/rlang.so
       0x10da5c000 -        0x10da5eff7 +glue.so (0) <7037ABBB-F5B1-308E-B88B-FB3604E02F5D> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/glue/libs/glue.so
       0x10da61000 -        0x10da6dffb +fansi.so (0) <1A1DA677-6E67-3AFF-81F5-8AEC2E41A36A> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/fansi/libs/fansi.so
       0x10da73000 -        0x10da84ff3 +tools.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/tools/libs/tools.so
       0x10da91000 -        0x10da92fff +ellipsis.so (0) <01B8942E-798E-34E0-B530-FB60756A6460> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/ellipsis/libs/ellipsis.so
       0x10da95000 -        0x10dab0fff +digest.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/digest/libs/digest.so
       0x10daf8000 -        0x10db00ff7 +processx.so (0) <41F13C45-477F-37B9-82BC-C8B93C6DD010> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/processx/libs/processx.so
       0x10db0a000 -        0x10db16ffb +ps.so (0) <24C7F8BE-19F2-3F6C-8EFF-EA2DEC907A4A> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/ps/libs/ps.so
       0x10db1d000 -        0x10db1efff +pkgload.so (0) <63CC821A-C043-31C8-8368-4B545E6DDEE6> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/pkgload/libs/pkgload.so
       0x10db21000 -        0x10db22ff3 +backports.so (0) <0D975A95-4E78-3257-9B25-590A7864F1ED> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/backports/libs/backports.so
       0x10db25000 -        0x10db6ffff +testthat.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/testthat/libs/testthat.so
       0x10dbe3000 -        0x10dbf3ff7 +internet.so (0) <9EC746CB-F9A3-3EC4-BD68-D808D9A0CA4E> /Library/Frameworks/R.framework/Versions/4.0/Resources/modules/internet.so
       0x10dd11000 -        0x10dd2cff7 +grid.so (0) <133E3D50-426F-38FC-ACB9-30823F047879> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/grid/libs/grid.so
       0x10dd3f000 -        0x10dd41ff3 +lattice.so (0) <0995EB7B-B1EC-3944-9717-9D164DDBC55E> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/lattice/libs/lattice.so
       0x10dd49000 -        0x10de09ff3 +Matrix.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/Matrix/libs/Matrix.so
       0x10de31000 -        0x10de36fff +KernSmooth.so (0) <56B1FBE0-8B10-3D92-8CDF-670EEB13C503> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/KernSmooth/libs/KernSmooth.so
       0x10de3e000 -        0x10de44ffb +MASS.so (0) <96E69A63-58CB-3961-8021-8F4CE18904FD> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/MASS/libs/MASS.so
       0x10de4c000 -        0x10de56ff7 +RANN.so (0) <529601CC-C0C1-3092-9A0B-EF43B639051F> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RANN/libs/RANN.so
       0x10de60000 -        0x10deaeff3 +Rcpp.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/Rcpp/libs/Rcpp.so
       0x10deed000 -        0x10df31ff7 +RcppAnnoy.so (0) <42AE0E7A-A4CC-3C6A-8A27-CA332D6AD94A> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppAnnoy/libs/RcppAnnoy.so
       0x10df8e000 -        0x10dfc6fff +Rtsne.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/Rtsne/libs/Rtsne.so
       0x10dfe1000 -        0x10dff5fff +nlme.so (0) <2882A0E1-BB84-3C12-B22A-786141BE9A74> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/nlme/libs/nlme.so
       0x10e001000 -        0x10e005ff3 +parallel.so (0) <14938F79-30F9-357E-A25A-C23BC5E87BCA> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/parallel/libs/parallel.so
       0x10e00e000 -        0x10e04aff7 +ape.so (0) <6A8ED690-6FBB-3A99-93E0-950F2C92F15B> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/ape/libs/ape.so
       0x10e065000 -        0x10e076ff7 +cluster.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/cluster/libs/cluster.so
       0x10e07f000 -        0x10e08dff3 +colorspace.so (0) <5140F337-5749-3DB7-BA2A-F3267727B242> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/colorspace/libs/colorspace.so
       0x10e091000 -        0x10e0c6ffb +vctrs.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/vctrs/libs/vctrs.so
       0x10e0e5000 -        0x10e0e7ff3 +tibble.so (0) <9D426B8F-1178-327D-9C46-16A532ECAFA6> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/tibble/libs/tibble.so
       0x10e0eb000 -        0x10e0f0ff7 +purrr.so (0) <90FFFECA-F276-3198-892A-8BE9069BEEFB> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/purrr/libs/purrr.so
       0x10e0f5000 -        0x10e0fbff7 +dplyr.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/dplyr/libs/dplyr.so
       0x10e103000 -        0x10e105ffb +splines.so (0) <37AAA7DC-3065-3A00-B549-C6CBCEA33A2B> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/splines/libs/splines.so
       0x10e10d000 -        0x10e148fff +survival.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/survival/libs/survival.so
       0x10e156000 -        0x10e16efff +ggrepel.so (0)  /Library/Frameworks/R.framework/Versions/4.0/Resources/library/ggrepel/libs/ggrepel.so
       0x10e183000 -        0x10e18eff7 +plyr.so (0) <98132EBD-B54D-39F4-B142-6D79887FE3B5> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/plyr/libs/plyr.so
       0x10e19c000 -        0x10e58cfff +igraph.so (0) <20765A06-D182-35B2-BC17-77E6FB3DF514> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/igraph/libs/igraph.so
       0x10e6de000 -        0x10e6e5fff +irlba.so (0) <9D73812E-1356-30A4-B336-AA1243452D03> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/irlba/libs/irlba.so
       0x10e6ed000 -        0x10e6f8ff7 +jsonlite.so (0) <8C863156-C5F3-341B-BE07-DAB89067780A> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/jsonlite/libs/jsonlite.so
       0x10e700000 -        0x10e746fff +reticulate.so (0) <2DD50D96-5572-3D6B-847D-A8FE45D4385E> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/reticulate/libs/reticulate.so
       0x10e777000 -        0x10e778ff7 +rappdirs.so (0) <23565AB7-0E55-3B2A-AED7-CC7F3DDE08BF> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/rappdirs/libs/rappdirs.so
       0x10e77b000 -        0x10e9e1ffb +libpython3.7m.dylib (0) <79EA9F51-1C50-353D-B665-1A30669B157F> /Users/USER/*/libpython3.7m.dylib
       0x10eabc000 -        0x10eabdfff +_heapq.cpython-37m-darwin.so (0)  /Users/USER/*/_heapq.cpython-37m-darwin.so
       0x10eac1000 -        0x10ead3fff +_ctypes.cpython-37m-darwin.so (0) <66269FD6-56F9-32A5-8A25-F986023901A1> /Users/USER/*/_ctypes.cpython-37m-darwin.so
       0x10eae3000 -        0x10eae8ff7 +libffi.6.dylib (0) <514D4BF3-E09D-3751-9928-3A61EADCC904> /Users/USER/*/libffi.6.dylib
       0x10eaec000 -        0x10eaf1fff +_struct.cpython-37m-darwin.so (0) <38F3144D-00EE-33FA-B0B6-147F09DB901D> /Users/USER/*/_struct.cpython-37m-darwin.so
       0x10eafa000 -        0x10eafbff3 +_mklinit.cpython-37m-darwin.so (0)  /Users/USER/*/_mklinit.cpython-37m-darwin.so
       0x10eafe000 -        0x10f26bff7 +libmkl_rt.dylib (0) <5C349EF8-77CE-3C4F-B680-4D214CB21A17> /Users/USER/*/libmkl_rt.dylib
       0x10f4f2000 -        0x10f502ff7 +_py_mkl_service.cpython-37m-darwin.so (0) <0AEE0E32-CD63-3BEA-AB00-E9CE1E5BCA91> /Users/USER/*/_py_mkl_service.cpython-37m-darwin.so
       0x10f50e000 -        0x10f863ff7 +_multiarray_umath.cpython-37m-darwin.so (0) <117174EC-24E5-3221-9EF6-A2CC9B7C3C48> /Users/USER/*/_multiarray_umath.cpython-37m-darwin.so
       0x10f8f2000 -        0x10f8f8ffb +math.cpython-37m-darwin.so (0) <75CB4ABF-9838-389C-8455-02C9D9D7E531> /Users/USER/*/math.cpython-37m-darwin.so
       0x10f8ff000 -        0x10f90effb +_datetime.cpython-37m-darwin.so (0) <7FEAB1BD-9583-3338-B423-8574AFB0E9EA> /Users/USER/*/_datetime.cpython-37m-darwin.so
       0x10f91a000 -        0x10f930ffb +_pickle.cpython-37m-darwin.so (0) <5365127A-52F5-356B-B637-D6F2E350A813> /Users/USER/*/_pickle.cpython-37m-darwin.so
       0x10f93c000 -        0x10f94affb +_multiarray_tests.cpython-37m-darwin.so (0) <2B0D9513-F1FE-3928-9AEE-8EB09F22CD7A> /Users/USER/*/_multiarray_tests.cpython-37m-darwin.so
       0x10f954000 -        0x10f955fff +_posixsubprocess.cpython-37m-darwin.so (0)  /Users/USER/*/_posixsubprocess.cpython-37m-darwin.so
       0x10f959000 -        0x10f95cff3 +select.cpython-37m-darwin.so (0)  /Users/USER/*/select.cpython-37m-darwin.so
       0x10f962000 -        0x10f964fff +lapack_lite.cpython-37m-darwin.so (0) <29716316-8B82-343E-8711-E5635B750A2D> /Users/USER/*/lapack_lite.cpython-37m-darwin.so
       0x10f967000 -        0x10f980ffb +_umath_linalg.cpython-37m-darwin.so (0) <1B063805-2008-3B01-B3B7-6A6C78B43394> /Users/USER/*/_umath_linalg.cpython-37m-darwin.so
       0x10f988000 -        0x10f98cfff +zlib.cpython-37m-darwin.so (0) <19EDEF28-0886-3049-8319-638A2C219C2F> /Users/USER/*/zlib.cpython-37m-darwin.so
       0x10f992000 -        0x10f9a7fff +libz.1.2.11.dylib (0)  /Users/USER/*/libz.1.2.11.dylib
       0x10f9ab000 -        0x10f9bdfff +_bz2.cpython-37m-darwin.so (0)  /Users/USER/*/_bz2.cpython-37m-darwin.so
       0x10f9c3000 -        0x10f9c7ffb +_lzma.cpython-37m-darwin.so (0)  /Users/USER/*/_lzma.cpython-37m-darwin.so
       0x10f9cd000 -        0x10f9edff7 +liblzma.5.dylib (0)  /Users/USER/*/liblzma.5.dylib
       0x10f9f3000 -        0x10f9f4fff +grp.cpython-37m-darwin.so (0)  /Users/USER/*/grp.cpython-37m-darwin.so
       0x10f9f7000 -        0x10fa3eff7 +_decimal.cpython-37m-darwin.so (0)  /Users/USER/*/_decimal.cpython-37m-darwin.so
       0x10fa56000 -        0x10fa66ff7 +_pocketfft_internal.cpython-37m-darwin.so (0) <958A5562-FE2C-30ED-B097-58AC2A2EB653> /Users/USER/*/_pocketfft_internal.cpython-37m-darwin.so
       0x10fa69000 -        0x10fab0ff7 +_pydfti.cpython-37m-darwin.so (0)  /Users/USER/*/_pydfti.cpython-37m-darwin.so
       0x10fac4000 -        0x10fb26ff3 +mtrand.cpython-37m-darwin.so (0) <2C593BEE-B1FF-3AAC-AB66-F66307B2FEC5> /Users/USER/*/mtrand.cpython-37m-darwin.so
       0x10fb63000 -        0x10fb8fff7 +common.cpython-37m-darwin.so (0)  /Users/USER/*/common.cpython-37m-darwin.so
       0x10fb9d000 -        0x10fbe5ffb +bounded_integers.cpython-37m-darwin.so (0)  /Users/USER/*/bounded_integers.cpython-37m-darwin.so
       0x10fbf9000 -        0x10fc0bfff +mt19937.cpython-37m-darwin.so (0) <98C0A705-30A6-3578-9B12-2E1F22C95485> /Users/USER/*/mt19937.cpython-37m-darwin.so
       0x10fc14000 -        0x10fc30ff7 +bit_generator.cpython-37m-darwin.so (0)  /Users/USER/*/bit_generator.cpython-37m-darwin.so
       0x10fc42000 -        0x10fc46ff7 +binascii.cpython-37m-darwin.so (0) <7642ACCF-2EE8-3470-9567-13051891E3C2> /Users/USER/*/binascii.cpython-37m-darwin.so
       0x10fc4a000 -        0x10fc4dfff +_hashlib.cpython-37m-darwin.so (0)  /Users/USER/*/_hashlib.cpython-37m-darwin.so
       0x10fc52000 -        0x10fe3487b +libcrypto.1.1.dylib (0) <6F5DB370-615A-3737-AA60-8D6B3B27C397> /Users/USER/*/libcrypto.1.1.dylib
       0x10fec4000 -        0x10fecaff3 +_blake2.cpython-37m-darwin.so (0) <77B9D30A-C343-32CC-AB8A-8A80C57D2E83> /Users/USER/*/_blake2.cpython-37m-darwin.so
       0x10fecf000 -        0x10fee0ffb +_sha3.cpython-37m-darwin.so (0)  /Users/USER/*/_sha3.cpython-37m-darwin.so
       0x10fee6000 -        0x10fee7fff +_bisect.cpython-37m-darwin.so (0) <25F1D157-8D0A-3D95-B44E-78BED32972E8> /Users/USER/*/_bisect.cpython-37m-darwin.so
       0x10feea000 -        0x10feebffb +_random.cpython-37m-darwin.so (0)  /Users/USER/*/_random.cpython-37m-darwin.so
       0x10feee000 -        0x10fefaff7 +philox.cpython-37m-darwin.so (0) <93B3DF69-EBAF-3069-98D7-88C445EC69B1> /Users/USER/*/philox.cpython-37m-darwin.so
       0x10ff02000 -        0x10ff0cff7 +pcg64.cpython-37m-darwin.so (0) <5172DBC0-A9CB-3163-BE05-8F353976E621> /Users/USER/*/pcg64.cpython-37m-darwin.so
       0x10ff14000 -        0x10ff1bff7 +sfc64.cpython-37m-darwin.so (0) <4C8D5C39-2DE6-34A1-9B58-EDE187588F01> /Users/USER/*/sfc64.cpython-37m-darwin.so
       0x10ff22000 -        0x10ff91ff3 +generator.cpython-37m-darwin.so (0) <07B68E02-4930-38BC-91A8-CC7215FA0783> /Users/USER/*/generator.cpython-37m-darwin.so
       0x10ffcd000 -        0x110044ff7 +libomp.dylib (0) <48576612-0C13-38C2-A665-5DB381336002> /Users/USER/*/libomp.dylib
       0x110e8d000 -        0x110f1eeff  dyld (750.5)  /usr/lib/dyld
       0x110f92000 -        0x114d65f97 +libmkl_core.dylib (0) <025B0E08-88CC-3DAD-A5A7-F186C7888753> /Users/USER/*/libmkl_core.dylib
    0x7fff2af4d000 -     0x7fff2af4dfff  com.apple.Accelerate (1.11 - Accelerate 1.11) <56DFF715-6A4E-3231-BDCC-A348BCB05047> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff2af65000 -     0x7fff2b5bbfff  com.apple.vImage (8.1 - 524.2.1) <17C93AB9-1625-3FDB-9851-C5E77BBE3428> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff2b5bc000 -     0x7fff2b823ff7  libBLAS.dylib (1303.60.1)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff2b824000 -     0x7fff2bcf7fef  libBNNS.dylib (144.100.2) <8D653678-1F9B-3670-AAE2-46DFB8D37643> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff2bcf8000 -     0x7fff2c093fff  libLAPACK.dylib (1303.60.1)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2c094000 -     0x7fff2c0a9fec  libLinearAlgebra.dylib (1303.60.1)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff2c0aa000 -     0x7fff2c0afff3  libQuadrature.dylib (7) <3112C977-8306-3190-8313-01A952B7F3CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2c0b0000 -     0x7fff2c120fff  libSparse.dylib (103) <40510BF9-99A7-3155-A81D-6DE5A0C73EDC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff2c121000 -     0x7fff2c133fef  libSparseBLAS.dylib (1303.60.1) <3C1066AB-20D5-38D2-B1F2-70A03DE76D0B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff2c134000 -     0x7fff2c30bfd7  libvDSP.dylib (735.121.1) <74702E2E-ED05-3765-B18C-64BEFF62B517> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff2c30c000 -     0x7fff2c3cefef  libvMisc.dylib (735.121.1) <137558BF-503D-3A6E-96DC-A181E3FB31FF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff2c3cf000 -     0x7fff2c3cffff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff2c579000 -     0x7fff2d339ffd  com.apple.AppKit (6.9 - 1894.50.103) <61269B8C-C432-335F-8894-B95C235A41A5> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff2d389000 -     0x7fff2d389fff  com.apple.ApplicationServices (48 - 50)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff2d38a000 -     0x7fff2d3f5fff  com.apple.ApplicationServices.ATS (377 - 493.0.4.1)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff2d48e000 -     0x7fff2d4ccff0  libFontRegistry.dylib (274.0.5.1)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff2d527000 -     0x7fff2d556fff  com.apple.ATSUI (1.0 - 1) <4B3C2201-DBB3-352C-936B-9C423122EFF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
    0x7fff2d557000 -     0x7fff2d55bffb  com.apple.ColorSyncLegacy (4.13.0 - 1) <47D42CDE-2E9A-3AF6-9365-1BFD1189196B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff2d5f5000 -     0x7fff2d64cffa  com.apple.HIServices (1.22 - 675.1) <273492E3-FF0F-3A8A-A83F-0F11F99B5F26> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff2d64d000 -     0x7fff2d65bfff  com.apple.LangAnalysis (1.7.0 - 1.7.0)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff2d65c000 -     0x7fff2d6a1ffa  com.apple.print.framework.PrintCore (15.4 - 516.2) <99AEBCDB-2DCA-3A13-906F-7F0D7962B002> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff2d6a2000 -     0x7fff2d6acff7  com.apple.QD (4.0 - 413)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff2d6ad000 -     0x7fff2d6baffc  com.apple.speech.synthesis.framework (9.0.24 - 9.0.24) <823C0DE7-1351-3B39-8F06-AB5FCAD2C874> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff2d6bb000 -     0x7fff2d79cffa  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <75651F0A-F2CE-3F68-B86A-E66B8815DCF4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff2d79e000 -     0x7fff2d79efff  com.apple.audio.units.AudioUnit (1.14 - 1.14)  /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff2db34000 -     0x7fff2dec2ffd  com.apple.CFNetwork (1126 - 1126)  /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff2df43000 -     0x7fff2e237ff3  com.apple.HIToolbox (2.1.1 - 994.6) <5C44ACA7-D158-3F9B-8F88-0477510D44FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff2e282000 -     0x7fff2e288fff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <1188E643-967C-334E-BC1A-60A0F82C67E5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff2e430000 -     0x7fff2e526fff  com.apple.ColorSync (4.13.0 - 3394.9) <61698A7B-BB8C-3891-9547-703FF84671A8> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff2e811000 -     0x7fff2ed1affb  com.apple.audio.CoreAudio (5.0 - 5.0) <62BEE4B7-8A26-3951-9D78-4E193617AF7A> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff2ed6d000 -     0x7fff2eda5fff  com.apple.CoreBluetooth (1.0 - 1) <6BC7F863-4495-371F-BC54-543E5CFE1665> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff2eda6000 -     0x7fff2f190fe8  com.apple.CoreData (120 - 977.3)  /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff2f191000 -     0x7fff2f2c1ffe  com.apple.CoreDisplay (1.0 - 186.6.12)  /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff2f2c2000 -     0x7fff2f741ffb  com.apple.CoreFoundation (6.9 - 1676.105) <6AF8B3CC-BC3F-3869-B9FB-1D881422364E> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff2f743000 -     0x7fff2fdb7ff8  com.apple.CoreGraphics (2.0 - 1355.17)  /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff2fdc5000 -     0x7fff30120ff0  com.apple.CoreImage (15.0.0 - 940.9) <44F68E8C-315A-32A6-BB19-7F24C00AB347> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff306a9000 -     0x7fff306a9fff  com.apple.CoreServices (1069.24 - 1069.24)  /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff306aa000 -     0x7fff3072ffff  com.apple.AE (838.1 - 838.1) <5F26DA9B-FB2E-3AF8-964B-63BD6671CF12> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff30730000 -     0x7fff30a11ff7  com.apple.CoreServices.CarbonCore (1217 - 1217) <8022AF47-AA99-3786-B086-141D84F00387> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff30a12000 -     0x7fff30a5fffd  com.apple.DictionaryServices (1.2 - 323.6)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff30a60000 -     0x7fff30a68ff7  com.apple.CoreServices.FSEvents (1268.100.1 - 1268.100.1)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff30a69000 -     0x7fff30ca3ff6  com.apple.LaunchServices (1069.24 - 1069.24) <2E0AD228-B1CC-3645-91EE-EB7F46F2147B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff30ca4000 -     0x7fff30d3cff1  com.apple.Metadata (10.7.0 - 2076.6)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff30d3d000 -     0x7fff30d6afff  com.apple.CoreServices.OSServices (1069.24 - 1069.24) <72FDEA52-7607-3745-AC43-630D80962099> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff30d6b000 -     0x7fff30dd2fff  com.apple.SearchKit (1.4.1 - 1.4.1) <086EB5DF-A2EC-3342-8028-CA7996BE5CB2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff30dd3000 -     0x7fff30df7ff5  com.apple.coreservices.SharedFileList (131.4 - 131.4)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff3111c000 -     0x7fff312d3ffc  com.apple.CoreText (643.1.5.1 - 643.1.5.1) <715FE3F7-E8FB-3997-85A0-3AB2839F6C30> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff312d4000 -     0x7fff31318ffb  com.apple.CoreVideo (1.8 - 344.3)  /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff31319000 -     0x7fff313a6ffc  com.apple.framework.CoreWLAN (13.0 - 1601.2) <855E51AA-DF3A-3BB9-A4F0-6880D42B8762> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff3163d000 -     0x7fff31643fff  com.apple.DiskArbitration (2.7 - 2.7) <52E7D181-2A18-37CD-B24F-AA32E93F7A69> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff3197c000 -     0x7fff31d41fff  com.apple.Foundation (6.9 - 1676.105) <1FA28BAB-7296-3A09-8E1E-E62A7D233DB8> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff31dae000 -     0x7fff31dfeff7  com.apple.GSS (4.0 - 2.0) <4E241C00-42A5-3572-9430-D950FBB7A4A0> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff31f3b000 -     0x7fff3204fff3  com.apple.Bluetooth (7.0.5 - 7.0.5f6) <5897C368-9674-3E34-B144-FFB06A2DF37B> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff320b5000 -     0x7fff32159ff3  com.apple.framework.IOKit (2.0.2 - 1726.121.1)  /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff3215b000 -     0x7fff3216cffb  com.apple.IOSurface (269.11 - 269.11)  /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff321eb000 -     0x7fff32347ffe  com.apple.ImageIO.framework (3.3.0 - 1976.6) <5B4C2E04-9161-3C82-A7FB-F4D51E3C1E10> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff32348000 -     0x7fff3234bfff  libGIF.dylib (1976.6) <3B26EE1C-C570-305C-A9A3-EA62D2F2E7B8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff3234c000 -     0x7fff32405fff  libJP2.dylib (1976.6)  /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff32406000 -     0x7fff32429fe3  libJPEG.dylib (1976.6) <9D7FAC55-85A6-34AB-9F26-0BCA381E8CE7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff326a5000 -     0x7fff326bffef  libPng.dylib (1976.6) <4886A1F8-E9CA-38F2-BF2F-1FCA1DFDD1C9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff326c0000 -     0x7fff326c1fff  libRadiance.dylib (1976.6)  /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff326c2000 -     0x7fff3270bfff  libTIFF.dylib (1976.6)  /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff33c6d000 -     0x7fff33c7fff3  com.apple.Kerberos (3.0 - 1)  /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff33c80000 -     0x7fff33c80fff  libHeimdalProxy.dylib (77)  /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
    0x7fff33c81000 -     0x7fff33cb7ff7  com.apple.LDAPFramework (2.4.28 - 194.5) <4CFB6351-53B9-36AF-B654-AE636BBC361A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff34837000 -     0x7fff34901ff7  com.apple.Metal (212.7 - 212.7)  /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff3491e000 -     0x7fff3495bff7  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <52089325-EC97-3EED-ABB3-9B39EC0BD429> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff3495c000 -     0x7fff349e6fe2  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <9E434EA0-6BCA-3903-B882-CEB69730A63B> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff349e7000 -     0x7fff34a0cff4  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1)  /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff34a0d000 -     0x7fff34a22ffb  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1)  /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff34a23000 -     0x7fff34b81ffc  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <47CCDBAC-5843-366A-A68C-6E8851D0865D> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff34b82000 -     0x7fff34bd1ff4  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <302BDF8E-B00A-3123-A6C4-E262B7513CF6> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff34bd2000 -     0x7fff34bd3ff5  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <14F84B42-9DA2-39A1-81B4-666B8020520C> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff35c5a000 -     0x7fff35c66ffe  com.apple.NetFS (6.0 - 4.0)  /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff35c67000 -     0x7fff35dbeff3  com.apple.Network (1.0 - 1)  /System/Library/Frameworks/Network.framework/Versions/A/Network
    0x7fff387ef000 -     0x7fff38847fff  com.apple.opencl (3.5 - 3.5) <9B101D40-EA79-3C0D-B7AE-A3F18094B2D7> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff38848000 -     0x7fff38864fff  com.apple.CFOpenDirectory (10.15 - 220.40.1)  /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff38865000 -     0x7fff38870ffd  com.apple.OpenDirectory (10.15 - 220.40.1) <76A20BBA-775F-3E17-AB0F-FEDFCDCE0716> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff391d6000 -     0x7fff391d8fff  libCVMSPluginSupport.dylib (17.10.22)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff391d9000 -     0x7fff391defff  libCoreFSCache.dylib (176.15) <609C5DFC-9A97-344D-BBC7-E0B08D862C63> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff391df000 -     0x7fff391e3fff  libCoreVMClient.dylib (176.15) <8F8DD27F-AC7C-398D-A8E3-396F1528E317> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff391e4000 -     0x7fff391ecff7  libGFXShared.dylib (17.10.22)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff391ed000 -     0x7fff391f7fff  libGL.dylib (17.10.22) <116DDBF7-D725-3B8C-BD0B-A21B758FE421> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff391f8000 -     0x7fff3922cff7  libGLImage.dylib (17.10.22) <2B314C76-C7E6-3AC5-9157-70B0529C1F9B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff393c2000 -     0x7fff393fefff  libGLU.dylib (17.10.22)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff39e3a000 -     0x7fff39e49ff7  com.apple.opengl (17.10.22 - 17.10.22)  /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff3ae07000 -     0x7fff3b089ff9  com.apple.QuartzCore (1.11 - 841.2) <444E6F22-DFA6-391B-B51F-A96AE69E524D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff3bc0a000 -     0x7fff3bf53ff1  com.apple.security (7.0 - 59306.120.7)  /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff3bf54000 -     0x7fff3bfdcffb  com.apple.securityfoundation (6.0 - 55236.60.1) <79289FE1-CB5F-3BEF-A33F-11A29A93A681> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff3c00b000 -     0x7fff3c00fff8  com.apple.xpc.ServiceManagement (1.0 - 1) <4194D29D-F0D4-33F8-839A-D03C6C62D8DB> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff3ccbb000 -     0x7fff3cd29ff7  com.apple.SystemConfiguration (1.19 - 1.19) <0CF8726A-BE41-3E07-B895-FBC44B75450E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff40c8a000 -     0x7fff40d4fff7  com.apple.APFS (1412.120.2 - 1412.120.2) <1E8FD511-FDC4-31A2-ACDE-EB5192032BC6> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff41e5f000 -     0x7fff41e60ff1  com.apple.AggregateDictionary (1.0 - 1)  /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff42772000 -     0x7fff42796ffb  com.apple.framework.Apple80211 (13.0 - 1610.1)  /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff42a54000 -     0x7fff42a63fd7  com.apple.AppleFSCompression (119.100.1 - 1.0) <2E75CF51-B693-3275-9A4F-40571D48745E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff42b62000 -     0x7fff42b6dff7  com.apple.AppleIDAuthSupport (1.0 - 1)  /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff42baf000 -     0x7fff42bf7ff7  com.apple.AppleJPEG (1.0 - 1) <4655FF70-9772-3D7C-8159-5A5E56C9F84B> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff42fe1000 -     0x7fff42fe5ff7  com.apple.AppleSRP (5.0 - 1)  /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff42fe6000 -     0x7fff43008fff  com.apple.applesauce (1.0 - 16.25) <33B66B71-64A4-365D-9953-E0545E69A5E7> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff430c7000 -     0x7fff430caffb  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <92580EE3-74BF-3488-90ED-C8EBD7A1B4C3> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff43164000 -     0x7fff43173ff9  com.apple.AssertionServices (1.0 - 223.100.31) <478D2004-9B84-3AE9-9A0B-0A0B68ED028F> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff43d06000 -     0x7fff43f46fe0  com.apple.audio.AudioToolboxCore (1.0 - 1104.84)  /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
    0x7fff43f4a000 -     0x7fff44066ff0  com.apple.AuthKit (1.0 - 1) <375C3886-5430-3C02-BD2C-4244BF490ABA> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff44223000 -     0x7fff4422cff7  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104)  /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff4422d000 -     0x7fff442ceff5  com.apple.backup.framework (1.11.5 - 1298.5.10) <637CA389-627A-365C-98C2-D297C47D6EE3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff442cf000 -     0x7fff4435bff6  com.apple.BaseBoard (466.3 - 466.3) <1718A41A-9923-3FD0-96B8-82376E153D27> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff4445d000 -     0x7fff44499ff7  com.apple.bom (14.0 - 219.2) <586F1D9C-23B0-3F38-9C5B-728E9DD8B953> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff45f0e000 -     0x7fff45f1effb  com.apple.CommonAuth (4.0 - 2.0) <91EC83B5-857D-3D4F-93B1-AAD7E0E029D8> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff45f32000 -     0x7fff45f49fff  com.apple.commonutilities (8.0 - 900) <12C6DEE5-1740-39A5-9711-6F815C6D77BD> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff46a73000 -     0x7fff46a92ffc  com.apple.analyticsd (1.0 - 1)  /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff46d9d000 -     0x7fff46da8ff7  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <8F8E586D-C153-3ABA-88B7-6CEC7F476F0E> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff47029000 -     0x7fff47039ff3  com.apple.CoreEmoji (1.0 - 107.1)  /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff47679000 -     0x7fff476e3ff0  com.apple.CoreNLP (1.0 - 213) <40FC46D2-844C-3282-A8E4-69DD827F05C5> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff47b11000 -     0x7fff47b19ff8  com.apple.CorePhoneNumbers (1.0 - 1)  /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff48506000 -     0x7fff48529fff  com.apple.CoreSVG (1.0 - 129) <3141D198-0507-3F72-A2C9-752EAFE3EEB3> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
    0x7fff4855e000 -     0x7fff4858cffd  com.apple.CSStore (1069.24 - 1069.24)  /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff48bdf000 -     0x7fff48d0bff6  com.apple.coreui (2.1 - 609.4) <9B93CC42-804B-305A-8FCE-5F06821B544C> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff48d0c000 -     0x7fff48ec2ff5  com.apple.CoreUtils (6.2.1 - 621.5)  /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff48ffc000 -     0x7fff4900fff1  com.apple.CrashReporterSupport (10.13 - 15016) <827F4E31-9F23-3683-AC5A-59CCA90F2359> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff490c8000 -     0x7fff490daff8  com.apple.framework.DFRFoundation (1.0 - 252.50.1) <19F79D32-71D3-3A87-98C9-B5C6C96076C4> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff490db000 -     0x7fff490e0fff  com.apple.DSExternalDisplay (3.1 - 380) <971F24F1-B1FC-3674-9C00-F88EEF94DC05> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff4916a000 -     0x7fff491e4ff0  com.apple.datadetectorscore (8.0 - 659) <9FD9BDFA-3724-3BEA-946C-0473447196A3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff4926e000 -     0x7fff493f6ff6  com.apple.desktopservices (1.14.5 - 1281.5.3) <79972B8B-7B60-3AD5-9A5F-17976DE8080B> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff4ad8e000 -     0x7fff4b1a9ff1  com.apple.vision.FaceCore (4.3.0 - 4.3.0) <1B5D7DD6-718E-3111-A702-EB04B8903662> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff4b847000 -     0x7fff4b97fffc  libFontParser.dylib (277.2.5.3)  /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff4ba19000 -     0x7fff4ba29ff6  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <6396BC1F-13C1-37D7-91B9-1FF60910C7FA> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff505c8000 -     0x7fff505cefff  com.apple.GPUWrangler (5.2.4 - 5.2.4) <5B819701-9F0C-374B-8925-A22DFC16514F> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff51a42000 -     0x7fff51a50ffb  com.apple.GraphVisualizer (1.0 - 100.1) <0A86C9FF-4484-3C7F-BC71-3D23BDBE81CE> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff51bef000 -     0x7fff51cadff4  com.apple.Heimdal (4.0 - 2.0)  /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff53e31000 -     0x7fff53e39ff5  com.apple.IOAccelerator (438.5.4 - 438.5.4)  /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff53e46000 -     0x7fff53e5dfff  com.apple.IOPresentment (1.0 - 37) <3EDBB454-D248-394B-A026-9717CD8535C3> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff541e5000 -     0x7fff54230ff1  com.apple.IconServices (438.3 - 438.3) <2AE74790-64F1-3B0A-9534-DEEEE307E562> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff543ee000 -     0x7fff543f5ff9  com.apple.InternationalSupport (1.0 - 45.4)  /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff54682000 -     0x7fff546a1ffd  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <76DB5326-BE5D-3339-975C-D9FCF39A341E> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff547d6000 -     0x7fff548a4ffd  com.apple.LanguageModeling (1.0 - 215.1)  /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff548a5000 -     0x7fff548edfff  com.apple.Lexicon-framework (1.0 - 72) <6AE1872C-0352-36FE-90CC-7303F13A5BEF> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff548f4000 -     0x7fff548f9ff3  com.apple.LinguisticData (1.0 - 353.18) <686E7B7C-640F-3D7B-A9C1-31E2DFACD457> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff55c60000 -     0x7fff55cacfff  com.apple.spotlight.metadata.utilities (1.0 - 2076.6)  /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff55cad000 -     0x7fff55d7effa  com.apple.gpusw.MetalTools (1.0 - 1)  /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff55fb2000 -     0x7fff55fd0fff  com.apple.MobileKeyBag (2.0 - 1.0)  /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff56233000 -     0x7fff56263ff7  com.apple.MultitouchSupport.framework (3440.1 - 3440.1) <4E7CB188-382E-3128-8671-4A3EF6E06622> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff56763000 -     0x7fff5676dfff  com.apple.NetAuth (6.2 - 6.2)  /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff57183000 -     0x7fff571ceffb  com.apple.OTSVG (1.0 - 643.1.5.1)  /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff583e2000 -     0x7fff583edff2  com.apple.PerformanceAnalysis (1.243.2 - 243.2) <941698D6-EF00-3D59-8560-F160BC04B412> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff583ee000 -     0x7fff58416ffb  com.apple.persistentconnection (1.0 - 1.0)  /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
    0x7fff5add4000 -     0x7fff5adedffb  com.apple.ProtocolBuffer (1 - 274.24.9.16.3)  /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff5b24c000 -     0x7fff5b275ff1  com.apple.RemoteViewServices (2.0 - 148) <1C61CFC2-F76F-31E5-BA13-EFD5DC69C8D5> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff5b3da000 -     0x7fff5b415ff0  com.apple.RunningBoardServices (1.0 - 223.100.31) <9FD1FC53-186A-3327-A359-B0BC7F4360EF> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
    0x7fff5ce6b000 -     0x7fff5cf92ff0  com.apple.Sharing (1526.31 - 1526.31) <2CB07F08-7794-3BF2-9ED5-BAB5C55C9D2C> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff5e3a5000 -     0x7fff5e69bff7  com.apple.SkyLight (1.600.0 - 451.4)  /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff5eee8000 -     0x7fff5eef6ffb  com.apple.SpeechRecognitionCore (6.0.91.2 - 6.0.91.2) <820602AB-117B-3C3E-B20B-819CBC97B7A4> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff5f9e8000 -     0x7fff5f9f8ff3  com.apple.TCC (1.0 - 1)  /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff5ff1d000 -     0x7fff5ffe3ff0  com.apple.TextureIO (3.10.9 - 3.10.9)  /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff6016f000 -     0x7fff60170fff  com.apple.TrustEvaluationAgent (2.0 - 33) <11DF5A28-4410-36A8-B3B8-BF1094BE1544> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff601a8000 -     0x7fff60400ff0  com.apple.UIFoundation (1.0 - 662)  /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff620cf000 -     0x7fff620d0fff  com.apple.WatchdogClient.framework (1.0 - 67.120.2) <3B8EBB6B-77D0-317C-A3DB-D0D2E294B18D> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
    0x7fff62cfd000 -     0x7fff62d00ffa  com.apple.dt.XCTTargetBootstrap (1.0 - 16091)  /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff62d7a000 -     0x7fff62d88ff5  com.apple.audio.caulk (1.0 - 32.3) <7D3D2F91-8B1D-3558-B324-45BDF11306DB> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
    0x7fff630ca000 -     0x7fff630ccff3  com.apple.loginsupport (1.0 - 1) <31F02734-1ECF-37D9-9DF6-7C3BC3A324FE> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff630cd000 -     0x7fff630e0ffd  com.apple.login (3.0 - 3.0) <1DC570FD-29EC-3AE8-BD34-D44C00E4621B> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff65bb0000 -     0x7fff65be3ffa  libAudioToolboxUtility.dylib (1104.84)  /usr/lib/libAudioToolboxUtility.dylib
    0x7fff65bea000 -     0x7fff65c1efff  libCRFSuite.dylib (48) <02C52318-C537-3FD8-BBC4-E5BD25430652> /usr/lib/libCRFSuite.dylib
    0x7fff65c21000 -     0x7fff65c2bfff  libChineseTokenizer.dylib (34) <04A7CB5A-FD68-398A-A206-33A510C115E7> /usr/lib/libChineseTokenizer.dylib
    0x7fff65cb7000 -     0x7fff65cb9ff7  libDiagnosticMessagesClient.dylib (112) <27220E98-6CE2-33E3-BD48-3CC3CE4AA036> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff65cff000 -     0x7fff65eb6ffb  libFosl_dynamic.dylib (100.4) <68038226-8CAA-36B5-B5D6-510F900B318D> /usr/lib/libFosl_dynamic.dylib
    0x7fff65edd000 -     0x7fff65ee3ff3  libIOReport.dylib (54)  /usr/lib/libIOReport.dylib
    0x7fff65ffb000 -     0x7fff6601bfff  libMobileGestalt.dylib (826.120.5) <1977AD00-533A-31AA-8D74-EA6CB962F668> /usr/lib/libMobileGestalt.dylib
    0x7fff6618d000 -     0x7fff6618efff  libSystem.B.dylib (1281.100.1)  /usr/lib/libSystem.B.dylib
    0x7fff6621b000 -     0x7fff6621cfff  libThaiTokenizer.dylib (3) <97DC10ED-3C11-3C89-B366-299A644035E7> /usr/lib/libThaiTokenizer.dylib
    0x7fff66234000 -     0x7fff6624afff  libapple_nghttp2.dylib (1.39.2)  /usr/lib/libapple_nghttp2.dylib
    0x7fff6627f000 -     0x7fff662f1ff7  libarchive.2.dylib (72.100.1) <20B70252-0C4B-3AFD-8C8D-F51921E9D324> /usr/lib/libarchive.2.dylib
    0x7fff662f2000 -     0x7fff6638bfe5  libate.dylib (3.0.1)  /usr/lib/libate.dylib
    0x7fff6638f000 -     0x7fff6638fff3  libauto.dylib (187) <85383E24-1592-36BC-BB39-308B7F1C826E> /usr/lib/libauto.dylib
    0x7fff66455000 -     0x7fff66465ffb  libbsm.0.dylib (60.100.1)  /usr/lib/libbsm.0.dylib
    0x7fff66466000 -     0x7fff66472fff  libbz2.1.0.dylib (44)  /usr/lib/libbz2.1.0.dylib
    0x7fff66473000 -     0x7fff664c5fff  libc++.1.dylib (902.1)  /usr/lib/libc++.1.dylib
    0x7fff664c6000 -     0x7fff664dbffb  libc++abi.dylib (902) <771E9263-E832-3985-9477-8F1B2D73B771> /usr/lib/libc++abi.dylib
    0x7fff664dc000 -     0x7fff664dcfff  libcharset.1.dylib (59)  /usr/lib/libcharset.1.dylib
    0x7fff664dd000 -     0x7fff664eefff  libcmph.dylib (8) <296A51E6-9661-3AC2-A1C9-F1E3510F91AA> /usr/lib/libcmph.dylib
    0x7fff664ef000 -     0x7fff66506fd7  libcompression.dylib (87) <21F37C2E-B9AA-38CE-9023-B763C8828AC6> /usr/lib/libcompression.dylib
    0x7fff667e0000 -     0x7fff667f6ff7  libcoretls.dylib (167) <9E5D1E0C-03F8-37B6-82A1-0D0597021CB8> /usr/lib/libcoretls.dylib
    0x7fff667f7000 -     0x7fff667f8fff  libcoretls_cfhelpers.dylib (167)  /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff66c9b000 -     0x7fff66d9ffef  libcrypto.44.dylib (47.120.1)  /usr/lib/libcrypto.44.dylib
    0x7fff66db5000 -     0x7fff66e14ff7  libcups.2.dylib (483.6)  /usr/lib/libcups.2.dylib
    0x7fff66e16000 -     0x7fff66e7bff7  libcurl.4.dylib (118.120.2)  /usr/lib/libcurl.4.dylib
    0x7fff66f1e000 -     0x7fff66f1efff  libenergytrace.dylib (21)  /usr/lib/libenergytrace.dylib
    0x7fff66f1f000 -     0x7fff66f37fff  libexpat.1.dylib (19.60.2)  /usr/lib/libexpat.1.dylib
    0x7fff66f45000 -     0x7fff66f47fff  libfakelink.dylib (149.1) <122F530F-F10E-3DD5-BBEA-91796BE583F3> /usr/lib/libfakelink.dylib
    0x7fff66f56000 -     0x7fff66f5bfff  libgermantok.dylib (24)  /usr/lib/libgermantok.dylib
    0x7fff66f5c000 -     0x7fff66f65ff7  libheimdal-asn1.dylib (564.100.1) <68FA1BE5-8FFC-3345-8980-8D8629EBA451> /usr/lib/libheimdal-asn1.dylib
    0x7fff66f66000 -     0x7fff67056fff  libiconv.2.dylib (59)  /usr/lib/libiconv.2.dylib
    0x7fff67057000 -     0x7fff672aefff  libicucore.A.dylib (64260.0.1) <7B9204AC-EA14-3FF3-B6B9-4C85B37EED79> /usr/lib/libicucore.A.dylib
    0x7fff672c8000 -     0x7fff672c9fff  liblangid.dylib (133) <36581D30-1C7B-3A58-AA07-36237BD75E0E> /usr/lib/liblangid.dylib
    0x7fff672ca000 -     0x7fff672e2ff3  liblzma.5.dylib (16) <4DB30730-DBD1-3503-957A-D604049B98F9> /usr/lib/liblzma.5.dylib
    0x7fff672fa000 -     0x7fff673a1ff7  libmecab.dylib (883.11) <66AD729B-2BCC-3347-B9B3-FD88570E884D> /usr/lib/libmecab.dylib
    0x7fff673a2000 -     0x7fff67604ff1  libmecabra.dylib (883.11) <2AE744D2-AC95-3720-8E66-4F9C7A79384C> /usr/lib/libmecabra.dylib
    0x7fff67971000 -     0x7fff679a0fff  libncurses.5.4.dylib (57)  /usr/lib/libncurses.5.4.dylib
    0x7fff67ad0000 -     0x7fff67f4cff5  libnetwork.dylib (1880.120.4) <715FB943-BA01-351C-BEA6-121970472985> /usr/lib/libnetwork.dylib
    0x7fff67fed000 -     0x7fff68020fde  libobjc.A.dylib (787.1)  /usr/lib/libobjc.A.dylib
    0x7fff68033000 -     0x7fff68037fff  libpam.2.dylib (25.100.1) <732E8D8E-C630-3EC2-B6C3-A1564E3B68B8> /usr/lib/libpam.2.dylib
    0x7fff6803a000 -     0x7fff68070ff7  libpcap.A.dylib (89.120.1)  /usr/lib/libpcap.A.dylib
    0x7fff680f4000 -     0x7fff6810cfff  libresolv.9.dylib (67.40.1)  /usr/lib/libresolv.9.dylib
    0x7fff68153000 -     0x7fff68165ff7  libsasl2.2.dylib (213.120.1)  /usr/lib/libsasl2.2.dylib
    0x7fff68168000 -     0x7fff68352ff7  libsqlite3.dylib (308.5)  /usr/lib/libsqlite3.dylib
    0x7fff68446000 -     0x7fff68473ffb  libssl.46.dylib (47.120.1) <6209494A-4AAD-344E-992C-03ACD2D4C402> /usr/lib/libssl.46.dylib
    0x7fff68548000 -     0x7fff685a2ff8  libusrtcp.dylib (1880.120.4)  /usr/lib/libusrtcp.dylib
    0x7fff685a3000 -     0x7fff685a6ffb  libutil.dylib (57)  /usr/lib/libutil.dylib
    0x7fff685a7000 -     0x7fff685b4ff7  libxar.1.dylib (425.2) <943A4CBB-331B-3A04-A11F-A2301189D40B> /usr/lib/libxar.1.dylib
    0x7fff685ba000 -     0x7fff6869cff7  libxml2.2.dylib (33.3) <262EF7C6-7D83-3C01-863F-36E97F5ACD34> /usr/lib/libxml2.2.dylib
    0x7fff686a0000 -     0x7fff686c8fff  libxslt.1.dylib (16.9) <86FE4382-BD77-3C19-A678-11EBCD70685A> /usr/lib/libxslt.1.dylib
    0x7fff686c9000 -     0x7fff686dbff3  libz.1.dylib (76)  /usr/lib/libz.1.dylib
    0x7fff68f89000 -     0x7fff68f8eff3  libcache.dylib (83)  /usr/lib/system/libcache.dylib
    0x7fff68f8f000 -     0x7fff68f9afff  libcommonCrypto.dylib (60165.120.1)  /usr/lib/system/libcommonCrypto.dylib
    0x7fff68f9b000 -     0x7fff68fa2fff  libcompiler_rt.dylib (101.2) <652A6012-7E5C-3F4F-9438-86BC094526F3> /usr/lib/system/libcompiler_rt.dylib
    0x7fff68fa3000 -     0x7fff68facff7  libcopyfile.dylib (166.40.1) <40113A69-A81C-3397-ADC6-1D16B9A22C3E> /usr/lib/system/libcopyfile.dylib
    0x7fff68fad000 -     0x7fff6903ffe3  libcorecrypto.dylib (866.120.3) <5E4B0E50-24DD-3E04-9374-EDA9FFD6257B> /usr/lib/system/libcorecrypto.dylib
    0x7fff6914c000 -     0x7fff6918cff0  libdispatch.dylib (1173.100.2) <201EDBF3-0B36-31BA-A7CB-443CE35C05D4> /usr/lib/system/libdispatch.dylib
    0x7fff6918d000 -     0x7fff691c3fff  libdyld.dylib (750.5) <7E711A46-5E4D-393C-AEA6-440E2A5CCD0C> /usr/lib/system/libdyld.dylib
    0x7fff691c4000 -     0x7fff691c4ffb  libkeymgr.dylib (30) <52662CAA-DB1F-30A3-BE13-D6274B1A6D7B> /usr/lib/system/libkeymgr.dylib
    0x7fff691c5000 -     0x7fff691d1ff3  libkxld.dylib (6153.121.2) <5EBB4886-C7B6-31D6-AA63-D861B2D58FCE> /usr/lib/system/libkxld.dylib
    0x7fff691d2000 -     0x7fff691d2ff7  liblaunch.dylib (1738.120.8) <07CF647B-F9DC-3907-AD98-2F85FCB34A72> /usr/lib/system/liblaunch.dylib
    0x7fff691d3000 -     0x7fff691d8ff7  libmacho.dylib (959.0.1)  /usr/lib/system/libmacho.dylib
    0x7fff691d9000 -     0x7fff691dbff3  libquarantine.dylib (110.40.3)  /usr/lib/system/libquarantine.dylib
    0x7fff691dc000 -     0x7fff691ddff7  libremovefile.dylib (48)  /usr/lib/system/libremovefile.dylib
    0x7fff691de000 -     0x7fff691f5ff3  libsystem_asl.dylib (377.60.2) <1170348D-2491-33F1-AA79-E2A05B4A287C> /usr/lib/system/libsystem_asl.dylib
    0x7fff691f6000 -     0x7fff691f6ff7  libsystem_blocks.dylib (74) <7AFBCAA6-81BE-36C3-8DB0-AAE0A4ACE4C5> /usr/lib/system/libsystem_blocks.dylib
    0x7fff691f7000 -     0x7fff6927efff  libsystem_c.dylib (1353.100.2) <935DDCE9-4ED0-3F79-A05A-A123DDE399CC> /usr/lib/system/libsystem_c.dylib
    0x7fff6927f000 -     0x7fff69282ffb  libsystem_configuration.dylib (1061.120.2)  /usr/lib/system/libsystem_configuration.dylib
    0x7fff69283000 -     0x7fff69286fff  libsystem_coreservices.dylib (114) <3D0A3AA8-8415-37B2-AAE3-66C03BCE8B55> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff69287000 -     0x7fff6928ffff  libsystem_darwin.dylib (1353.100.2) <6EEC9975-EE3B-3C95-AA5B-030FD10587BC> /usr/lib/system/libsystem_darwin.dylib
    0x7fff69290000 -     0x7fff69297fff  libsystem_dnssd.dylib (1096.100.3) <0115092A-E61B-317D-8670-41C7C34B1A82> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff69298000 -     0x7fff69299ffb  libsystem_featureflags.dylib (17)  /usr/lib/system/libsystem_featureflags.dylib
    0x7fff6929a000 -     0x7fff692e7ff7  libsystem_info.dylib (538) <851693E9-C079-3547-AD41-353F8C248BE8> /usr/lib/system/libsystem_info.dylib
    0x7fff692e8000 -     0x7fff69314ff7  libsystem_kernel.dylib (6153.121.2) <9F9902C9-A46F-3CA9-B7F9-5CCFE98FBF75> /usr/lib/system/libsystem_kernel.dylib
    0x7fff69315000 -     0x7fff6935cfff  libsystem_m.dylib (3178) <436CFF76-6A99-36F2-A3B6-8D017396A050> /usr/lib/system/libsystem_m.dylib
    0x7fff6935d000 -     0x7fff69384fff  libsystem_malloc.dylib (283.100.6)  /usr/lib/system/libsystem_malloc.dylib
    0x7fff69385000 -     0x7fff69392ffb  libsystem_networkextension.dylib (1095.120.6) <6DE86DB0-8CD2-361E-BD6A-A34282B47847> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff69393000 -     0x7fff6939cff7  libsystem_notify.dylib (241.100.2) <7E9E2FC8-DF26-340C-B196-B81B11850C46> /usr/lib/system/libsystem_notify.dylib
    0x7fff6939d000 -     0x7fff693a5fef  libsystem_platform.dylib (220.100.1) <736920EA-6AE0-3B1B-BBDA-7DCDF0C229DF> /usr/lib/system/libsystem_platform.dylib
    0x7fff693a6000 -     0x7fff693b0fff  libsystem_pthread.dylib (416.100.3) <77488669-19A3-3993-AD65-CA5377E2475A> /usr/lib/system/libsystem_pthread.dylib
    0x7fff693b1000 -     0x7fff693b5ff3  libsystem_sandbox.dylib (1217.120.7) <20C93D69-6452-3C82-9521-8AE54345C66F> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff693b6000 -     0x7fff693b8fff  libsystem_secinit.dylib (62.100.2)  /usr/lib/system/libsystem_secinit.dylib
    0x7fff693b9000 -     0x7fff693c0ffb  libsystem_symptoms.dylib (1238.120.1) <25C3866B-004E-3621-9CD3-B1E9C4D887EB> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff693c1000 -     0x7fff693d7ff2  libsystem_trace.dylib (1147.120)  /usr/lib/system/libsystem_trace.dylib
    0x7fff693d9000 -     0x7fff693deff7  libunwind.dylib (35.4) <253A12E2-F88F-3838-A666-C5306F833CB8> /usr/lib/system/libunwind.dylib
    0x7fff693df000 -     0x7fff69414ffe  libxpc.dylib (1738.120.8) <68D433B6-DCFF-385D-8620-F847FB7D4A5A> /usr/lib/system/libxpc.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 8
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 192821905
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=656.7M resident=0K(0%) swapped_out_or_unallocated=656.7M(100%)
Writable regions: Total=1.0G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.0G(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Activity Tracing                   256K        1 
Kernel Alloc Once                    8K        1 
MALLOC                           383.1M       67 
MALLOC guard page                   24K        4 
MALLOC_MEDIUM (reserved)         664.0M        6         reserved VM address space (unallocated)
STACK GUARD                       56.0M        1 
Stack                             8192K        1 
VM_ALLOCATE                          4K        1 
__DATA                            26.9M      375 
__DATA_CONST                        20K        1 
__FONT_DATA                          4K        1 
__LINKEDIT                       402.4M       98 
__OBJC_RO                         32.2M        1 
__OBJC_RW                         1892K        2 
__TEXT                           254.3M      343 
__UNICODE                          564K        1 
mapped file                       27.2M        4 
shared memory                       12K        3 
===========                     =======  ======= 
TOTAL                              1.8G      911 
TOTAL, minus reserved VM space     1.2G      911 


@slowkow
Copy link

slowkow commented Jul 18, 2020

Paul, I tried your binary and it also failed with a similar error.

> devtools::install_local("~/Downloads/Seurat_3.2.0.tgz")
Skipping 1 packages ahead of CRAN: data.table
* installing *binary* package ‘Seurat’ ...
* DONE (Seurat)
> library(Seurat)
Killed: 9

This also gave Namespace CODESIGNING, Code 0x2 in the Console Crash Report logs.

@KatherineMueller
Copy link

KatherineMueller commented Jul 18, 2020

Hello,

I am having similar issues installing. I'm running R version 4.0.2 on MacOS Catalina 10.15.5. Here's what happens when I initially try the install:

Installing package into ‘/Users/katherinemueller/Library/R/4.0/library’
(as ‘lib’ is unspecified)

  There is a binary version available but the source version is later:
       binary source needs_compilation
Seurat  3.1.5  3.2.0              TRUE

Do you want to install from sources the package which needs compilation? (Yes/no/cancel) yes
installing the source package ‘Seurat’

trying URL 'https://cran.rstudio.com/src/contrib/Seurat_3.2.0.tar.gz'
Content type 'application/x-gzip' length 1482089 bytes (1.4 MB)
==================================================
downloaded 1.4 MB

ERROR: failed to lock directory ‘/Users/katherinemueller/Library/R/4.0/library’ for modifying
Try removing ‘/Users/katherinemueller/Library/R/4.0/library/00LOCK-Seurat’
Warning in install.packages :
  installation of package ‘Seurat’ had non-zero exit status

The downloaded source packages are in
	‘/private/var/folders/xt/k6t8jllx42z65jp6_f136ps00000gn/T/RtmpiTTpHt/downloaded_packages’
> 

When I delete this mystery "00LOCK-Seurat" folder and try again, I get the following:

Installing package into ‘/Users/katherinemueller/Library/R/4.0/library’
(as ‘lib’ is unspecified)

  There is a binary version available but the source version is later:
       binary source needs_compilation
Seurat  3.1.5  3.2.0              TRUE

Do you want to install from sources the package which needs compilation? (Yes/no/cancel) yes
installing the source package ‘Seurat’

trying URL 'https://cran.rstudio.com/src/contrib/Seurat_3.2.0.tar.gz'
Content type 'application/x-gzip' length 1482089 bytes (1.4 MB)
==================================================
downloaded 1.4 MB

* installing *source* package ‘Seurat’ ...
** package ‘Seurat’ successfully unpacked and MD5 sums checked
** using staged installation
** libs
clang++ -mmacosx-version-min=10.13 -std=gnu++11 -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG  -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/Rcpp/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppProgress/include' -I/usr/local/include   -fPIC  -Wall -g -O2  -c ModularityOptimizer.cpp -o ModularityOptimizer.o
ModularityOptimizer.cpp:762:7: warning: unused variable 'n2_max' [-Wunused-variable]
  int n2_max = *std::max_element(node2.cbegin(), node2.cend());
      ^
ModularityOptimizer.cpp:761:7: warning: unused variable 'n1_max' [-Wunused-variable]
  int n1_max = *std::max_element(node1.cbegin(), node1.cend());
      ^
2 warnings generated.
clang++ -mmacosx-version-min=10.13 -std=gnu++11 -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG  -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/Rcpp/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppProgress/include' -I/usr/local/include   -fPIC  -Wall -g -O2  -c RModularityOptimizer.cpp -o RModularityOptimizer.o
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Core:535:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:2:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/LU:47:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:3:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Cholesky:12:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Jacobi:29:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:3:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Cholesky:43:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/QR:17:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Householder:27:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:5:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SVD:48:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:6:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Geometry:58:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:7:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Eigenvalues:58:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:26:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseCore:66:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:27:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/OrderingMethods:71:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:29:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseCholesky:43:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:32:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseQR:35:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:33:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/IterativeLinearSolvers:46:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:32:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/CholmodSupport:45:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:35:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/KroneckerProduct:34:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:39:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/Polynomials:135:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RModularityOptimizer.cpp:9:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:40:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/SparseExtra:51:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
17 warnings generated.
clang++ -mmacosx-version-min=10.13 -std=gnu++11 -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG  -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/Rcpp/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppProgress/include' -I/usr/local/include   -fPIC  -Wall -g -O2  -c RcppExports.cpp -o RcppExports.o
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Core:535:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:2:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/LU:47:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:3:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Cholesky:12:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Jacobi:29:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:3:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Cholesky:43:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/QR:17:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Householder:27:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:5:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SVD:48:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:6:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Geometry:58:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:7:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Eigenvalues:58:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:26:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseCore:66:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:27:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/OrderingMethods:71:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:29:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseCholesky:43:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:32:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseQR:35:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:33:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/IterativeLinearSolvers:46:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:32:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/CholmodSupport:45:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:35:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/KroneckerProduct:34:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:39:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/Polynomials:135:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from RcppExports.cpp:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:40:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/SparseExtra:51:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
17 warnings generated.
clang++ -mmacosx-version-min=10.13 -std=gnu++11 -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG  -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/Rcpp/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppProgress/include' -I/usr/local/include   -fPIC  -Wall -g -O2  -c data_manipulation.cpp -o data_manipulation.o
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Core:535:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:2:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/LU:47:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:3:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Cholesky:12:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Jacobi:29:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:3:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Cholesky:43:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/QR:17:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Householder:27:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:5:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SVD:48:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:6:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Geometry:58:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:7:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Eigenvalues:58:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:26:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseCore:66:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:27:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/OrderingMethods:71:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:29:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseCholesky:43:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:32:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseQR:35:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:33:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/IterativeLinearSolvers:46:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:32:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/CholmodSupport:45:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:35:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/KroneckerProduct:34:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:39:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/Polynomials:135:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from data_manipulation.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:40:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/SparseExtra:51:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
17 warnings generated.
clang++ -mmacosx-version-min=10.13 -std=gnu++11 -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG  -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/Rcpp/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppProgress/include' -I/usr/local/include   -fPIC  -Wall -g -O2  -c integration.cpp -o integration.o
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Core:535:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:2:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/LU:47:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:3:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Cholesky:12:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Jacobi:29:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:3:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Cholesky:43:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/QR:17:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Householder:27:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:5:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SVD:48:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:6:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Geometry:58:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:7:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Eigenvalues:58:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:26:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseCore:66:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:27:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/OrderingMethods:71:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:29:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseCholesky:43:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:32:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseQR:35:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:33:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/IterativeLinearSolvers:46:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:32:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/CholmodSupport:45:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:35:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/KroneckerProduct:34:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:39:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/Polynomials:135:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from integration.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:40:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/SparseExtra:51:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
17 warnings generated.
clang++ -mmacosx-version-min=10.13 -std=gnu++11 -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG  -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/Rcpp/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include' -I'/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppProgress/include' -I/usr/local/include   -fPIC  -Wall -g -O2  -c snn.cpp -o snn.o
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Core:535:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:2:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/LU:47:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:3:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Cholesky:12:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Jacobi:29:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:3:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Cholesky:43:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:4:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/QR:17:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Householder:27:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:5:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SVD:48:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:6:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Geometry:58:

> /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]

    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:30:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Dense:7:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Eigenvalues:58:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:26:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseCore:66:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:27:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/OrderingMethods:71:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:29:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseCholesky:43:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:32:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/SparseQR:35:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:31:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/Sparse:33:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/IterativeLinearSolvers:46:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:32:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/CholmodSupport:45:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:35:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/KroneckerProduct:34:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:39:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/Polynomials:135:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
In file included from snn.cpp:1:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigen.h:25:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/RcppEigenForward.h:40:
In file included from /Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/SparseExtra:51:
/Library/Frameworks/R.framework/Versions/4.0/Resources/library/RcppEigen/include/unsupported/Eigen/../../Eigen/src/Core/util/ReenableStupidWarnings.h:10:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas]
    #pragma clang diagnostic pop
                             ^
17 warnings generated.
clang++ -mmacosx-version-min=10.13 -std=gnu++11 -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 Seurat.so ModularityOptimizer.o RModularityOptimizer.o RcppExports.o data_manipulation.o integration.o snn.o -F/Library/Frameworks/R.framework/.. -framework R -Wl,-framework -Wl,CoreFoundation
installing to /Users/katherinemueller/Library/R/4.0/library/00LOCK-Seurat/00new/Seurat/libs
** R
** data
*** moving datasets to lazyload DB
/Library/Frameworks/R.framework/Resources/bin/INSTALL: line 34: 63386 Done                    echo 'tools:::.install_packages()'
     63387 Killed: 9               | R_DEFAULT_PACKAGES= LC_COLLATE=C "${R_HOME}/bin/R" $myArgs --no-echo --args ${args}
Warning in install.packages :
  installation of package ‘Seurat’ had non-zero exit status

The downloaded source packages are in
	‘/private/var/folders/xt/k6t8jllx42z65jp6_f136ps00000gn/T/RtmpiTTpHt/downloaded_packages’

I get the same results when I try to install directly from the terminal. The weirdest thing is that I haven't updated my version of R in the last few days, and Seurat was running just fine yesterday - I believe I may have accidentally tried to update Seurat yesterday while installing another program ('fgsea'), which is when it broke for me.

Thank you in advance for your help with this! Seurat is a great package, and I appreciate any feedback you can offer to help me get it up and running again.

@Projectnix
Copy link

I had the same issue and I was able to resolve this issue through following this https://github.com/rmacoslib/r-macos-rtools/releases/tag/v4.0.0

I was unable to compile RcppArmadillo, deldir, and Seurat. After following the linked github page for macos-rtools, I still got 17 warnings when trying to compile Seurat 3.2.0, but it compiled fine and I was able to load the library and continue my work. As far as I understand this issue happens due to misaligned headers between R, R-tools for mac, and Xcode. Hope this helps!

@KatherineMueller
Copy link

Thanks for the suggestion @Projectnix ! No luck unfortunately - I just tried installing r-macos-rtools, and while it seems to have installed successfully I'm still seeing the same errors during Seurat install as before, even after restarting the R session.

@slowkow
Copy link

slowkow commented Jul 19, 2020

@Projectnix I followed the same steps without success (install Xcode, install gfortran, remove ~/.R/Makevars). It's neat that someone packaged those steps into a GUI, but we can also run each of them manually from the command line. After completing all of the steps, I still get Killed: 9 when trying to load the binary Seurat or when trying to compile the source Seurat.


I found a fix on my system!!

I hope that it works for others, too.

This is it:

mv ~/miniconda3 ~/miniconda3.bak
R -e 'install.packages(c("deldir", "Seurat"))'

The installation completes and I can run library(Seurat) successfully without getting Killed: 9.

It seems that R and Anaconda (or miniconda) do not get along if Intel MKL is invited to the party. If we kick MKL out, then R and Anaconda can live happily ever after.

So, if you want to keep miniconda, then this should work (but you need to execute this in every conda environment 😭):

conda uninstall mkl

Major bummer: uninstalling mkl gets rid of numpy, scipy, matplotlib, biopython, deeptools, and pybigwig.

If anyone has ideas on how to get MKL to stop crashing R, that would be great! 🤞


Why did this happen?

I checked the crash logs again (in my previous post above) and noticed this:

Application Specific Information:
dyld: in dlopen()
/Users/kamil/miniconda3/lib/libmkl_intel_thread.dylib

This issue from the RStudio reticulate package has exactly the same error in the crash log.

@kevinushey says:

the application is crashing because the code signature in the version of Intel MKL being loaded is invalid.

(I don't understand what Kevin said.) Maybe R is checking the signature of the Intel MKL library and it doesn't match what R expects to see?

For posterity, here is the code signature for my Intel MKL file. I don't know how to fix it.

$ codesign -dv --verbose=4 /Users/kamil/miniconda3/lib/libmkl_intel_thread.dylib
Executable=/Users/kamil/miniconda3/lib/libmkl_intel_thread.dylib
Identifier=libmkl_intel_thread.dylib
Format=Mach-O thin (x86_64)
CodeDirectory v=20200 size=369017 flags=0x10000(runtime) hashes=11527+2 location=embedded
VersionPlatform=1
VersionMin=658432
VersionSDK=658432
Hash type=sha256 size=32
CandidateCDHash sha256=9fae015418c823a6a5bdd36af6cb8875bdb6b98f
CandidateCDHashFull sha256=9fae015418c823a6a5bdd36af6cb8875bdb6b98fbf4d3146fa647b2cf5b51acb
Hash choices=sha256
CMSDigest=9fae015418c823a6a5bdd36af6cb8875bdb6b98fbf4d3146fa647b2cf5b51acb
CMSDigestType=2
Page size=4096
CDHash=9fae015418c823a6a5bdd36af6cb8875bdb6b98f
Signature size=8643
Authority=Developer ID Application: Intel Corporation Apps (Z3L495V9L4)
Authority=Developer ID Certification Authority
Authority=Apple Root CA
Timestamp=Aug 8, 2019 at 8:01:09 AM
Info.plist=not bound
TeamIdentifier=Z3L495V9L4
Sealed Resources=none
Internal requirements count=2 size=176

@Projectnix
Copy link

Projectnix commented Jul 19, 2020

@slowkow @KatherineMueller I forgot to mention that after I ran that mac-rtools update and before I installed Seurat, I first did install.packages(c("deldir", "RcppArmadillo")). I allowed those to be compiled rather than a binary install and it worked, unlike before the mac-rtools fix. After those 2 installed by being compiled, I installed Seurat 3.2.0 from the source and it compiled fine. I think there's something tied to deldir in particular that prevents Seurat from being compiled properly unless deldir is the latest version (0.1-28).

@rhondabacher
Copy link

Aha! This finally worked for me! (the mac-rtools then deldir and RcppArmadillo and Seurat--all with 'no' to the "Do you want to install from sources the package which needs compilation?"

Thanks @Projectnix !

@KatherineMueller
Copy link

@Projectnix wow, that solved it, just as @rhondabacher describes! I'm confused by the fix since to my knowledge I had neither deldir nor RcppArmadillo installed prior, but I seem to be running without issue now. Thank you so much for sending in that fix!

@slowkow
Copy link

slowkow commented Jul 19, 2020

For anyone who is having issues with miniconda like me, this might help (thanks to Cami Williams):

conda install nomkl numpy scipy scikit-learn numexpr
conda remove mkl mkl-service

Now I can install and load Seurat without Killed: 9 caused by the weird MKL thing.

This is much better than disabling miniconda with mv ~/.miniconda{,.bak}. We can keep our packages, but just kick MKL out.

@carloelle
Copy link

carloelle commented Jul 21, 2020

I followed your suggestions (installed mac-rtools, RcppArmadillo, deldir) and I managed to install Seurat in RStudio.
Anyway I fail to load it:

library(Seurat) Error: package or namespace load failed for ‘Seurat’ in dyn.load(file, DLLpath = DLLpath, ...): unable to load shared object '/Library/Frameworks/R.framework/Versions/4.0/Resources/library/Rcpp/libs/Rcpp.so': dlopen(/Library/Frameworks/R.framework/Versions/4.0/Resources/library/Rcpp/libs/Rcpp.so, 6): Symbol not found: _EXTPTR_PTR Referenced from: /Library/Frameworks/R.framework/Versions/4.0/Resources/library/Rcpp/libs/Rcpp.so Expected in: /Library/Frameworks/R.framework/Resources/lib/libR.dylib in /Library/Frameworks/R.framework/Versions/4.0/Resources/library/Rcpp/libs/Rcpp.so Warning message: package ‘Seurat’ was built under R version 4.0.2

It gives the same error (Symbol not found: _EXTPTR_PTR) also when I try to load other libraries (such as RcppArmadillo). Anyone has ever had the same issue? How did you overcome it? Thanks!

sessionInfo() R version 4.0.0 (2020-04-24) Platform: x86_64-apple-darwin17.0 (64-bit) Running under: macOS Mojave 10.14.6


Nevermind, the error disappears as soon as I delete and reinstall R and RStudio

@mojaveazure
Copy link
Member

Hi all,

Sorry for the delay. Glad you managed to find a solution to not being able to install Seurat, and many thanks to @slowkow for diagnosing the issue!

For anyone else who has difficulty install Seurat on a system with conda installed, please see #3273 (comment)

@slowkow
Copy link

slowkow commented Jul 22, 2020

@kmuench Could I please ask if you were able to install Seurat? I wonder if your Crash Logs look the same as mine (mkl in the log) or if they're different... maybe I'm the only one with the MKL issue?

@mojaveazure I think there might be multiple different issues here that could result in similar error messages:

  • For me, MKL seems to be the cause for the installation issue.
  • For @Projectnix, @KatherineMueller, @rhondabacher, they might have had some other issue, and I don't know why installing deldir and RcppArmadillo fixes it.

I also don't understand why installations on Travis and GitHub Actions succeeded, but our own installations failed. 🤷‍♂️

@mojaveazure
Copy link
Member

@slowkow We do not use conda on any CI system or any of our own machines, instead opting to install R and other system dependencies from official sources (eg. CRAN, APT, etc). We've found conda to cause too many issues with R, Seurat, and reticulate (used previously for running UMAP, currently for leiden clustering). These issues range from not working with CRAN versions of Rcpp or Rcpp-related packages, removing and hiding the compiler from R, and prevent R/reticulate from finding Python modules. As such, we generally recommend not using conda, instead using alternatives such as:

  • virtual environments in Python/renv in R for environments,
  • pip/install.packages for obtaining Python/R packages
  • brew/a package manager for installing system packages and libraries

For the MKL issue: any and all MKL issues we've seen Seurat have been associated with conda. We have successfully run Seurat using MRO, which includes MKL

For the RcppArmadillo issues, I expect that hese users have conda on their system and removing it will fix their issues. If they do not have conda on their system, or removing it doesn't solve their issue, I will reopen and we can continue debugging

@kmuench
Copy link
Author

kmuench commented Jul 24, 2020

@slowkow Just returned to this - I don't have conda installed, and the (1)install.packages(c("deldir", "RcppArmadillo") (2) https://github.com/rmacoslib/r-macos-rtools/releases/tag/v4.0.0 (2) install.packages(Seurat) fix worked for me with no errors at all on second run. Thanks for your in-depth troubleshoot though!

@KatherineMueller
Copy link

@slowkow my case was the same as @kmuench, I'm not running through conda and the same above fix worked for me. I'm perplexed because I had neither package installed to begin with prior to the issues, but I have not had problems running Seurat since.

@slowkow
Copy link

slowkow commented Jul 24, 2020

@kmuench @KatherineMueller Interesting! Thanks for sharing.

@mojaveazure It seems that conda might not be the cause of this issue for many users... I can't explain it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

7 participants