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

fix: The internal R_igraph_restore_pointer() no longer leaks memory #813

Merged
merged 4 commits into from
Jun 5, 2023

Conversation

Antonov548
Copy link
Contributor

@Antonov548 Antonov548 commented May 23, 2023

Fixes #811

  • add missed igraph_vector_destroy in R_igraph_restore_pointer for edges vector

@Antonov548 Antonov548 changed the title fix: Memory leak fix: memory leak R_igraph_restore_pointer May 23, 2023
@Antonov548 Antonov548 requested a review from szhorvat May 23, 2023 16:40
@Antonov548
Copy link
Contributor Author

Antonov548 commented May 23, 2023

@szhorvat should IGRAPH_FINALLY is used in this case? (in this internal function for pointer restoring)

@szhorvat
Copy link
Member

szhorvat commented May 23, 2023

Can this function return an error code? If yes, then it should, and I'll show you how. Right now there is no check on the return value of igraph functions, and it would be nice to add them ...

I noticed your use of igraph_vector_set(). Never use this, as performance is bad. Use VECTOR(vec)[i] = .... Same goes for igraph_vector_get(). Just use the VECTOR macro.

IMO both of these fixes can go in a different PR.

@Antonov548
Copy link
Contributor Author

Antonov548 commented May 24, 2023

@krlmlr Regarding the plot test which is failing for oldred-1 and oldred-2. For some reason order vertices is different, but graph is same. I wondering if it could be same problem with options? I see the same test was skipped, and test which is failing running only for R with version >= 4.3.

plot


Old:

plot old

@szhorvat
Copy link
Member

Regarding the error checking, do I understand correctly that IGRAPH_R_CHECK is safe to use with this function? If so, here's what we should do:

  • Move entire function body to another function that returns an error code, int restore_pointer(SEXP graph) (of whatever name you like), and R_igraph_restore_pointer() should simply contain IGRAPH_R_CHECK(restore_pointer(graph));
  • Within restore_pointer(), each igraph function should be wrapped with IGRAPH_CHECK().
  • Whenever memory is allocated, use IGRAPH_FINALLY. When it's deallocated, or ownership is transferred, use IGRAPH_FINALLY_CLEAN().

@Antonov548
Copy link
Contributor Author

Regarding the error checking, do I understand correctly that IGRAPH_R_CHECK is safe to use with this function? If so, here's what we should do:

Thanks. It make sense for me.

I just brifly checked. Is it means that all function which is calling restore_pointer should return error code? So, just for example:

restore_pointer -> R_igraph_get_pointer -> R_igraph_get_n. So, R_igraph_get_n also should return error code? and etc.

@szhorvat
Copy link
Member

szhorvat commented May 24, 2023

So, something like this. I also standardized the notation, to match what we use in the C core. Let me know if you have questions.

int restore_pointer(SEXP graph, igraph_t *g) {
  igraph_integer_t no_of_nodes = REAL(VECTOR_ELT(graph, igraph_t_idx_n))[0];
  igraph_bool_t directed = LOGICAL(VECTOR_ELT(graph, igraph_t_idx_directed))[0];

  igraph_vector_t from;
  R_SEXP_to_vector(VECTOR_ELT(graph, igraph_t_idx_from), &from);

  igraph_vector_t to;
  R_SEXP_to_vector(VECTOR_ELT(graph, igraph_t_idx_to), &to);

  igraph_vector_t edges;
  igraph_integer_t no_of_edges=igraph_vector_size(&from);
  IGRAPH_VECTOR_INIT_FINALLY(&edges, no_of_edges*2);

  for (igraph_integer_t i = 0; i < no_of_edges; ++i) {
    VECTOR(edges)[2*i] = VECTOR(from)[i];
    VECTOR(edges)[2*i+1] = VECTOR(to)[i];
  }

  IGRAPH_CHECK(igraph_empty(g, no_of_nodes, directed));
  IGRAPH_FINALLY(igraph_destroy, g);
  IGRAPH_CHECK(igraph_add_edges(g, &edges, NULL));
  
  igraph_vector_destroy(&edges);
  IGRAPH_FINALLY_CLEAN(2); /* +1 for g */

  return IGRAPH_SUCCESS;
}

void R_igraph_restore_pointer(SEXP graph) {
  igraph_t g;
  IGRAPH_R_CHECK(restore_pointer(graph, &g));
  R_igraph_set_pointer(graph, &g);
}

@Antonov548
Copy link
Contributor Author

So, something like this. I also standardized the notation, to match what we use in the C core. Let me know if you have questions.

int restore_pointer(SEXP graph, igraph_t *g) {
  igraph_integer_t no_of_nodes = REAL(VECTOR_ELT(graph, igraph_t_idx_n))[0];
  igraph_bool_t directed = LOGICAL(VECTOR_ELT(graph, igraph_t_idx_directed))[0];

  igraph_vector_t from;
  R_SEXP_to_vector(VECTOR_ELT(graph, igraph_t_idx_from), &from);

  igraph_vector_t to;
  R_SEXP_to_vector(VECTOR_ELT(graph, igraph_t_idx_to), &to);

  igraph_vector_t edges;
  igraph_integer_t no_of_edges=igraph_vector_size(&from);
  IGRAPH_VECTOR_INIT_FINALLY(&edges, no_of_edges*2);

  for (igraph_integer_t i = 0; i < no_of_edges; ++i) {
    VECTOR(edges)[2*i] = VECTOR(from)[i];
    VECTOR(edges)[2*i+1] = VECTOR(to)[i];
  }

  IGRAPH_CHECK(igraph_empty(&g, n, directed));
  IGRAPH_FINALLY(igraph_destroy, &g);
  IGRAPH_CHECK(igraph_add_edges(&g, &edges, NULL));
  
  igraph_vector_destroy(&edges);
  IGRAPH_FINALLY_CLEAN(2); /* +1 for g */

  return IGRAPH_SUCCESS;
}

void R_igraph_restore_pointer(SEXP graph) {
  igraph_t g;
  IGRAPH_R_CHECK(restore_pointer(graph, &g));
  R_igraph_set_pointer(graph, &g);
}

Ah, okay I see. With IGRAPH_R_CHECK it's not necessary.

@szhorvat
Copy link
Member

szhorvat commented May 24, 2023

FYI LSan detects no leaks after this fix, as expected.

I also attempted to test the newly added error checking as follows. Advice from an R expert on how to do this better would be appreciated.

> g <- make_graph(c(1,2)) # create a graph with 2 vertices
> class(g) <- "foo" # temporarily change the class so we can modify the object; any better way to allow modification?
> g[[10]]$igraph <- NULL # erase pointer
> g[[3]] <- 2 # add invalid vertex ID to 'from' vector; note that this is zero-based
> class(g) <- "igraph" # restore class
> vcount(g) # trigger the restore_pointer() function
Error in vcount(g) : 
  At core/graph/type_indexededgelist.c:265 : cannot add edges, Invalid vertex id

Seems to work fine. Note that I did not test what happens without the modifications in this PR!

@krlmlr
Copy link
Contributor

krlmlr commented May 25, 2023

class(g) <- NULL would do the job too.

Regarding the noise in the checks, could this be a random seed issue? I'll take a look.

I'll add more tests here and merge later.

@szhorvat
Copy link
Member

Regarding the noise in the checks

Can you please clarify what you are referring to?

@Antonov548
Copy link
Contributor Author

Can you please clarify what you are referring to?

I think @krlmlr means failing plot tests in all pull requests which are failing with specific R version just due to the order of vertices.

@szhorvat
Copy link
Member

I'll add more tests here and merge later.

I'm just noting that the fixes made here aren't testable without LSan. Any tests for these can only fail after #802 is done.

The first commit fixes a memory leak.

The second commit adds better error handling, but at this moment the problems that appear when omitting this fix are also memory leaks. Without using IGRAPH_R_CHECK(), the error handler returns to the top level right away, so there's no crash.

@Antonov548
Copy link
Contributor Author

The second commit adds better error handling, but at this moment the problems that appear when omitting this fix are also memory leaks. Without using IGRAPH_R_CHECK(), the error handler returns to the top level right away, so there's no crash.

Sorry, I didn't understand. Are you saying that there is still problem with memory? Or you mean for proper testing this we need #802?

@szhorvat
Copy link
Member

Or you mean for proper testing this we need #802?

This.

@szhorvat
Copy link
Member

Regarding the noise in the checks, could this be a random seed issue? I'll take a look.

Please see the comments I made in the chatroom. Shouldn't the random seed be included directly before the plotting command?

I'll add more tests here and merge later.

The code in #813 (comment) might be a good test. It triggers a memory leak without the second commit in this PR. To detect the memory leak, we need #802, but the test can be added even before #802 is fixed.

@krlmlr krlmlr changed the title fix: memory leak R_igraph_restore_pointer fix: The internal R_igraph_restore_pointer() no longer leaks memory May 28, 2023
@krlmlr
Copy link
Contributor

krlmlr commented May 28, 2023

I tried to see the effects of this PR with the image built by https://github.com/krlmlr/igraph-san . From a clean working copy of this repo (in particular, no object files or libraries in src/), test.Rcontaining:

system("R CMD INSTALL .")

library(igraph)
g <- make_graph(c(1,2)) # create a graph with 2 vertices
class(g) <- "foo" # temporarily change the class so we can modify the object; any better way to allow modification?
g[[10]]$igraph <- NULL # erase pointer
g[[3]] <- 2 # add invalid vertex ID to 'from' vector; note that this is zero-based
class(g) <- "igraph" # restore class
vcount(g) # trigger the restore_pointer() function

and running:

docker run --rm -ti -v $(pwd):/igraph  ghcr.io/krlmlr/igraph-san:main RDcsan -q -e 'setwd("igrap
h"); source("test.R")'

I see no difference in the output when comparing the main branch and this branch:

Error in vcount(g) : negative length vectors are not allowed
Calls: source -> withVisible -> eval -> eval -> vcount -> .Call
Execution halted

What am I missing?

@szhorvat
Copy link
Member

Was leak detection enabled? Try setting this envvar, does it help?

export ASAN_OPTIONS=color=always:detect_leaks=1

(The colouring is just for readability.)

@szhorvat
Copy link
Member

Also note that leaks are only detected when the R process exits. You need to q().

@krlmlr
Copy link
Contributor

krlmlr commented May 28, 2023

Now running:

docker run --rm -ti -e ASAN_OPTIONS=color=always:detect_leaks=1 -v $(pwd):/igraph ghcr.io/krlmlr/igraph-san:main RDcsan -q -e 'setwd("igraph"); source("test.R")'

@krlmlr
Copy link
Contributor

krlmlr commented May 28, 2023

Not installing now in the Docker:

/usr/bin/ld: cannot find -lgfortran: No such file or directory

Updated test.R :

stopifnot(system("R CMD INSTALL .") == 0)

library(igraph)
g <- make_graph(c(1,2)) # create a graph with 2 vertices
class(g) <- "foo" # temporarily change the class so we can modify the object; any better way to allow modification?
g[[10]]$igraph <- NULL # erase pointer
g[[3]] <- 2 # add invalid vertex ID to 'from' vector; note that this is zero-based
class(g) <- "igraph" # restore class
vcount(g) # trigger the restore_pointer() function

@szhorvat
Copy link
Member

szhorvat commented May 28, 2023

How about RDsan instead of RDcsan?

EDIT: Maybe something's wrong with the image, others have the same issue too. wch/r-debug#27

@krlmlr
Copy link
Contributor

krlmlr commented May 29, 2023

Yeah, the igraph core should be built with the same flags.

@Antonov548: Can you please post the full output of RDsan CMD INSTALL and RDcsan CMD INSTALL for the Docker image?

@szhorvat: Can you please post the full output of R CMD INSTALL for your local install with sanitizers?

We could also build a Docker image from first principles, following the existing debugging instructions.

@Antonov548
Copy link
Contributor Author

Antonov548 commented May 29, 2023

Can you please post the full output of RDsan CMD INSTALL and RDcsan CMD INSTALL for the Docker image?

I think everyhing good with compile options.

Output for RDcsan (clang)
* installing to library ‘/usr/local/RDcsan/lib/R/site-library’
* installing *source* package ‘igraph’ ...
** using staged installation
checking for gcc... clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer accepts -g... yes
checking for clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer option to enable C11 features... none needed
checking whether the compiler supports GNU C++... yes
checking whether clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++11 accepts -g... yes
checking for clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++11 option to enable C++11 features... none needed
checking whether the compiler supports GNU Fortran... yes
checking whether gfortran accepts -g... yes
checking for expm1... yes
checking for fmin... yes
checking for finite... yes
checking for log2... yes
checking for log1p... yes
checking for rint... yes
checking for rintf... yes
checking for round... yes
checking for stpcpy... yes
checking for strcasecmp... yes
checking for _stricmp... no
checking for strdup... yes
checking for isfinite... no
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for sys/times.h... yes
checking for net/if.h... yes
checking for netinet/in.h... yes
checking for net/if_dl.h... no
checking for sys/sockio.h... no
checking for sys/un.h... yes
checking for sys/socket.h... yes
checking for sys/ioctl.h... yes
checking for sys/time.h... yes
checking for sys/file.h... yes
checking for struct sockaddr.sa_len... no
checking for xml2-config... /usr/bin/xml2-config
checking for xmlSAXUserParseFile in -lxml2... yes
checking for libxml/parser.h... yes
checking for __gmpz_add in -lgmp... no
checking how to run the C++ preprocessor... clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++11 -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for glp_read_mps in -lglpk... no
configure: creating ./config.status
config.status: creating src/Makevars.tmp
config.status: creating src/Makevars
config.status: src/Makevars is unchanged
config.status: creating src/config.h
config.status: src/config.h is unchanged

*** Compiler settings used:
    CC=clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer
    LD=
    CFLAGS=-g -O0 -Wall -pedantic
    CPPFLAGS=-I/usr/local/include
    CXX=clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++11
    CXXFLAGS=-g -O0 -Wall -pedantic
    LDFLAGS=-L/usr/local/lib
    LIBS=
** libs
using C compiler: ‘Ubuntu clang version 15.0.7’
using C++ compiler: ‘Ubuntu clang version 15.0.7’
make: Nothing to be done for 'all'.
installing to /usr/local/RDcsan/lib/R/site-library/00LOCK-rigraph/00new/igraph/libs
RDsan is failing (gcc)
* installing to library ‘/usr/local/RDsan/lib/R/site-library’
* installing *source* package ‘igraph’ ...
** using staged installation
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking whether the compiler supports GNU C++... yes
checking whether g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++11 accepts -g... yes
checking for g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++11 option to enable C++11 features... none needed
checking whether the compiler supports GNU Fortran... yes
checking whether gfortran accepts -g... yes
checking for expm1... yes
checking for fmin... yes
checking for finite... yes
checking for log2... yes
checking for log1p... yes
checking for rint... yes
checking for rintf... yes
checking for round... yes
checking for stpcpy... yes
checking for strcasecmp... yes
checking for _stricmp... no
checking for strdup... yes
checking for isfinite... no
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for sys/times.h... yes
checking for net/if.h... yes
checking for netinet/in.h... yes
checking for net/if_dl.h... no
checking for sys/sockio.h... no
checking for sys/un.h... yes
checking for sys/socket.h... yes
checking for sys/ioctl.h... yes
checking for sys/time.h... yes
checking for sys/file.h... yes
checking for struct sockaddr.sa_len... no
checking for xml2-config... /usr/bin/xml2-config
checking for xmlSAXUserParseFile in -lxml2... yes
checking for libxml/parser.h... yes
checking for __gmpz_add in -lgmp... no
checking how to run the C++ preprocessor... g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++11 -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for glp_read_mps in -lglpk... no
configure: creating ./config.status
config.status: creating src/Makevars.tmp
config.status: creating src/Makevars
config.status: src/Makevars is unchanged
config.status: creating src/config.h
config.status: src/config.h is unchanged

*** Compiler settings used:
    CC=gcc
    LD=
    CFLAGS=-fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address
    CPPFLAGS=-I/usr/local/include
    CXX=g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++11
    CXXFLAGS=-fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic
    LDFLAGS=-L/usr/local/lib
    LIBS=
** libs
using C compiler: ‘gcc (Ubuntu 12.1.0-2ubuntu1~22.04) 12.1.0’
using C++ compiler: ‘g++ (Ubuntu 12.1.0-2ubuntu1~22.04) 12.1.0’
make: Nothing to be done for 'all'.
installing to /usr/local/RDsan/lib/R/site-library/00LOCK-rigraph/00new/igraph/libs
** R
** demo
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** installing vignettes
** testing if installed package can be loaded from temporary location
==8354==Shadow memory range interleaves with an existing memory mapping. ASan cannot proceed correctly. ABORTING.
==8354==ASan shadow was supposed to be located in the [0x00007fff7000-0x10007fff7fff] range.
==8354==This might be related to ELF_ET_DYN_BASE change in Linux 4.12.
==8354==See https://github.com/google/sanitizers/issues/856 for possible workarounds.
==8354==Process memory map follows:
        0x00007fff7000-0x00008fff7000
        0x00008fff7000-0x02008fff7000
        0x02008fff7000-0x10007fff8000
        0x5646e74f6000-0x5646e74f7000   /usr/local/RDsan/lib/R/bin/exec/R
        0x5646e74f7000-0x5646e74f8000   /usr/local/RDsan/lib/R/bin/exec/R
        0x5646e74f8000-0x5646e74f9000   /usr/local/RDsan/lib/R/bin/exec/R
        0x5646e74f9000-0x5646e74fa000   /usr/local/RDsan/lib/R/bin/exec/R
        0x5646e74fa000-0x5646e74fb000   /usr/local/RDsan/lib/R/bin/exec/R
        0x600000000000-0x602000000000
        0x602000000000-0x602000030000
        0x602000030000-0x602e00000000
        0x602e00000000-0x602e00010000
        0x602e00010000-0x603000000000
        0x603000000000-0x603000020000
        0x603000020000-0x603e00000000
        0x603e00000000-0x603e00010000
        0x603e00010000-0x604000000000
        0x604000000000-0x604000010000
        0x604000010000-0x604e00000000
        0x604e00000000-0x604e00010000
        0x604e00010000-0x606000000000
        0x606000000000-0x606000020000
        0x606000020000-0x606e00000000
        0x606e00000000-0x606e00010000
        0x606e00010000-0x607000000000
        0x607000000000-0x607000010000
        0x607000010000-0x607e00000000
        0x607e00000000-0x607e00010000
        0x607e00010000-0x608000000000
        0x608000000000-0x608000010000
        0x608000010000-0x608e00000000
        0x608e00000000-0x608e00010000
        0x608e00010000-0x60b000000000
        0x60b000000000-0x60b000020000
        0x60b000020000-0x60be00000000
        0x60be00000000-0x60be00010000
        0x60be00010000-0x60c000000000
        0x60c000000000-0x60c000010000
        0x60c000010000-0x60ce00000000
        0x60ce00000000-0x60ce00010000
        0x60ce00010000-0x60d000000000
        0x60d000000000-0x60d000010000
        0x60d000010000-0x60de00000000
        0x60de00000000-0x60de00010000
        0x60de00010000-0x60e000000000
        0x60e000000000-0x60e000010000
        0x60e000010000-0x60ee00000000
        0x60ee00000000-0x60ee00010000
        0x60ee00010000-0x60f000000000
        0x60f000000000-0x60f000010000
        0x60f000010000-0x60fe00000000
        0x60fe00000000-0x60fe00010000
        0x60fe00010000-0x610000000000
        0x610000000000-0x610000030000
        0x610000030000-0x610e00000000
        0x610e00000000-0x610e00010000
        0x610e00010000-0x611000000000
        0x611000000000-0x6110000d0000
        0x6110000d0000-0x611e00000000
        0x611e00000000-0x611e00010000
        0x611e00010000-0x612000000000
        0x612000000000-0x612000150000
        0x612000150000-0x612e00000000
        0x612e00000000-0x612e00010000
        0x612e00010000-0x613000000000
        0x613000000000-0x613000070000
        0x613000070000-0x613e00000000
        0x613e00000000-0x613e00010000
        0x613e00010000-0x614000000000
        0x614000000000-0x6140003a0000
        0x6140003a0000-0x614e00000000
        0x614e00000000-0x614e00010000
        0x614e00010000-0x615000000000
        0x615000000000-0x615000070000
        0x615000070000-0x615e00000000
        0x615e00000000-0x615e00010000
        0x615e00010000-0x616000000000
        0x616000000000-0x6160000c0000
        0x6160000c0000-0x616e00000000
        0x616e00000000-0x616e00010000
        0x616e00010000-0x617000000000
        0x617000000000-0x617000070000
        0x617000070000-0x617e00000000
        0x617e00000000-0x617e00010000
        0x617e00010000-0x618000000000
        0x618000000000-0x618000060000
        0x618000060000-0x618e00000000
        0x618e00000000-0x618e00010000
        0x618e00010000-0x619000000000
        0x619000000000-0x619000300000
        0x619000300000-0x619e00000000
        0x619e00000000-0x619e00010000
        0x619e00010000-0x61a000000000
        0x61a000000000-0x61a0000a0000
        0x61a0000a0000-0x61ae00000000
        0x61ae00000000-0x61ae00010000
        0x61ae00010000-0x61b000000000
        0x61b000000000-0x61b0000a0000
        0x61b0000a0000-0x61be00000000
        0x61be00000000-0x61be00010000
        0x61be00010000-0x61c000000000
        0x61c000000000-0x61c0000c0000
        0x61c0000c0000-0x61ce00000000
        0x61ce00000000-0x61ce00010000
        0x61ce00010000-0x61d000000000
        0x61d000000000-0x61d000090000
        0x61d000090000-0x61de00000000
        0x61de00000000-0x61de00010000
        0x61de00010000-0x61e000000000
        0x61e000000000-0x61e000050000
        0x61e000050000-0x61ee00000000
        0x61ee00000000-0x61ee00010000
        0x61ee00010000-0x61f000000000
        0x61f000000000-0x61f0000a0000
        0x61f0000a0000-0x61fe00000000
        0x61fe00000000-0x61fe00010000
        0x61fe00010000-0x620000000000
        0x620000000000-0x620000080000
        0x620000080000-0x620e00000000
        0x620e00000000-0x620e00010000
        0x620e00010000-0x621000000000
        0x621000000000-0x6210002b0000
        0x6210002b0000-0x621e00000000
        0x621e00000000-0x621e00010000
        0x621e00010000-0x622000000000
        0x622000000000-0x6220000a0000
        0x6220000a0000-0x622e00000000
        0x622e00000000-0x622e00010000
        0x622e00010000-0x623000000000
        0x623000000000-0x6230000b0000
        0x6230000b0000-0x623e00000000
        0x623e00000000-0x623e00010000
        0x623e00010000-0x624000000000
        0x624000000000-0x624000a00000
        0x624000a00000-0x624e00000000
        0x624e00000000-0x624e00010000
        0x624e00010000-0x625000000000
        0x625000000000-0x625003640000
        0x625003640000-0x625e00000000
        0x625e00000000-0x625e00010000
        0x625e00010000-0x626000000000
        0x626000000000-0x626000090000
        0x626000090000-0x626e00000000
        0x626e00000000-0x626e00010000
        0x626e00010000-0x627000000000
        0x627000000000-0x6270000c0000
        0x6270000c0000-0x627e00000000
        0x627e00000000-0x627e00010000
        0x627e00010000-0x628000000000
        0x628000000000-0x628000040000
        0x628000040000-0x628e00000000
        0x628e00000000-0x628e00010000
        0x628e00010000-0x629000000000
        0x629000000000-0x629000230000
        0x629000230000-0x629e00000000
        0x629e00000000-0x629e00010000
        0x629e00010000-0x62a000000000
        0x62a000000000-0x62a000050000
        0x62a000050000-0x62ae00000000
        0x62ae00000000-0x62ae00010000
        0x62ae00010000-0x62b000000000
        0x62b000000000-0x62b0000b0000
        0x62b0000b0000-0x62be00000000
        0x62be00000000-0x62be00010000
        0x62be00010000-0x62c000000000
        0x62c000000000-0x62c000080000
        0x62c000080000-0x62ce00000000
        0x62ce00000000-0x62ce00010000
        0x62ce00010000-0x62d000000000
        0x62d000000000-0x62d000710000
        0x62d000710000-0x62de00000000
        0x62de00000000-0x62de00010000
        0x62de00010000-0x62e000000000
        0x62e000000000-0x62e000020000
        0x62e000020000-0x62ee00000000
        0x62ee00000000-0x62ee00010000
        0x62ee00010000-0x62f000000000
        0x62f000000000-0x62f000040000
        0x62f000040000-0x62fe00000000
        0x62fe00000000-0x62fe00010000
        0x62fe00010000-0x630000000000
        0x630000000000-0x630000060000
        0x630000060000-0x630e00000000
        0x630e00000000-0x630e00010000
        0x630e00010000-0x631000000000
        0x631000000000-0x631000090000
        0x631000090000-0x631e00000000
        0x631e00000000-0x631e00010000
        0x631e00010000-0x632000000000
        0x632000000000-0x632000060000
        0x632000060000-0x632e00000000
        0x632e00000000-0x632e00010000
        0x632e00010000-0x633000000000
        0x633000000000-0x633000070000
        0x633000070000-0x633e00000000
        0x633e00000000-0x633e00010000
        0x633e00010000-0x634000000000
        0x634000000000-0x634000020000
        0x634000020000-0x634e00000000
        0x634e00000000-0x634e00010000
        0x634e00010000-0x640000000000
        0x640000000000-0x640000002000
        0x7fac1541c000-0x7fac157a5000
        0x7fac157a5000-0x7fac157d4000   /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
        0x7fac157d4000-0x7fac15927000   /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
        0x7fac15927000-0x7fac1597b000   /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
        0x7fac1597b000-0x7fac1597c000   /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
        0x7fac1597c000-0x7fac15985000   /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
        0x7fac15985000-0x7fac15986000   /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
        0x7fac15986000-0x7fac15987000
        0x7fac15987000-0x7fac159ab000   /usr/lib/x86_64-linux-gnu/libasan.so.6.0.0
        0x7fac159ab000-0x7fac15a82000   /usr/lib/x86_64-linux-gnu/libasan.so.6.0.0
        0x7fac15a82000-0x7fac15ab4000   /usr/lib/x86_64-linux-gnu/libasan.so.6.0.0
        0x7fac15ab4000-0x7fac15ab5000   /usr/lib/x86_64-linux-gnu/libasan.so.6.0.0
        0x7fac15ab5000-0x7fac15ab9000   /usr/lib/x86_64-linux-gnu/libasan.so.6.0.0
        0x7fac15ab9000-0x7fac15abc000   /usr/lib/x86_64-linux-gnu/libasan.so.6.0.0
        0x7fac15abc000-0x7fac16370000
        0x7fac16370000-0x7fac169bc000   /usr/local/RDsan/lib/R/site-library/00LOCK-rigraph/00new/igraph/libs/igraph.so
        0x7fac169bc000-0x7fac171ad000   /usr/local/RDsan/lib/R/site-library/00LOCK-rigraph/00new/igraph/libs/igraph.so
        0x7fac171ad000-0x7fac173d4000   /usr/local/RDsan/lib/R/site-library/00LOCK-rigraph/00new/igraph/libs/igraph.so
        0x7fac173d4000-0x7fac173d5000   /usr/local/RDsan/lib/R/site-library/00LOCK-rigraph/00new/igraph/libs/igraph.so
        0x7fac173d5000-0x7fac173da000   /usr/local/RDsan/lib/R/site-library/00LOCK-rigraph/00new/igraph/libs/igraph.so
        0x7fac173da000-0x7fac17ac4000   /usr/local/RDsan/lib/R/site-library/00LOCK-rigraph/00new/igraph/libs/igraph.so
        0x7fac17ac4000-0x7fac17c73000
        0x7fac17c73000-0x7fac17c74000
        0x7fac17c74000-0x7fac1fc82000
        0x7fac1fc82000-0x7fac1fc86000   /usr/local/RDsan/lib/R/site-library/cli/libs/cli.so
        0x7fac1fc86000-0x7fac1fc99000   /usr/local/RDsan/lib/R/site-library/cli/libs/cli.so
        0x7fac1fc99000-0x7fac1fcae000   /usr/local/RDsan/lib/R/site-library/cli/libs/cli.so
        0x7fac1fcae000-0x7fac1fcaf000   /usr/local/RDsan/lib/R/site-library/cli/libs/cli.so
        0x7fac1fcaf000-0x7fac1fcb1000   /usr/local/RDsan/lib/R/site-library/cli/libs/cli.so
        0x7fac1fcb1000-0x7fac1fd68000
        0x7fac1fd68000-0x7fac1fd6f000   /usr/local/RDsan/lib/R/site-library/rlang/libs/rlang.so
        0x7fac1fd6f000-0x7fac1fd99000   /usr/local/RDsan/lib/R/site-library/rlang/libs/rlang.so
        0x7fac1fd99000-0x7fac1fdaa000   /usr/local/RDsan/lib/R/site-library/rlang/libs/rlang.so
        0x7fac1fdaa000-0x7fac1fdac000   /usr/local/RDsan/lib/R/site-library/rlang/libs/rlang.so
        0x7fac1fdac000-0x7fac1fdad000   /usr/local/RDsan/lib/R/site-library/rlang/libs/rlang.so
        0x7fac1fdad000-0x7fac1fe75000
        0x7fac1fe75000-0x7fac1fe82000   /usr/local/RDsan/lib/R/library/tools/libs/tools.so
        0x7fac1fe82000-0x7fac1fea5000   /usr/local/RDsan/lib/R/library/tools/libs/tools.so
        0x7fac1fea5000-0x7fac1feb0000   /usr/local/RDsan/lib/R/library/tools/libs/tools.so
        0x7fac1feb0000-0x7fac1feb1000   /usr/local/RDsan/lib/R/library/tools/libs/tools.so
        0x7fac1feb1000-0x7fac1feb2000   /usr/local/RDsan/lib/R/library/tools/libs/tools.so
        0x7fac1feb2000-0x7fac1feba000   /usr/local/RDsan/lib/R/library/tools/libs/tools.so
        0x7fac1feba000-0x7fac200f8000
        0x7fac200f8000-0x7fac200fb000   /usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
        0x7fac200fb000-0x7fac20127000   /usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
        0x7fac20127000-0x7fac2013e000   /usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
        0x7fac2013e000-0x7fac2013f000   /usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
        0x7fac2013f000-0x7fac20140000   /usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
        0x7fac20140000-0x7fac2015d000   /usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0
        0x7fac2015d000-0x7fac203e6000   /usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0
        0x7fac203e6000-0x7fac20418000   /usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0
        0x7fac20418000-0x7fac20419000   /usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0
        0x7fac20419000-0x7fac2041b000   /usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0
        0x7fac2041b000-0x7fac20420000   /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0
        0x7fac20420000-0x7fac204b7000   /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0
        0x7fac204b7000-0x7fac204be000   /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0
        0x7fac204be000-0x7fac204bf000   /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0
        0x7fac204bf000-0x7fac204c0000   /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0
        0x7fac204c0000-0x7fac204c1000   /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0
        0x7fac204c1000-0x7fac204e0000   /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
        0x7fac204e0000-0x7fac20b51000   /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
        0x7fac20b51000-0x7fac20bf4000   /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
        0x7fac20bf4000-0x7fac20bf8000   /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
        0x7fac20bf8000-0x7fac20bfa000   /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
        0x7fac20bfa000-0x7fac20c18000   /usr/local/RDsan/lib/R/library/stats/libs/stats.so
        0x7fac20c18000-0x7fac20d0e000   /usr/local/RDsan/lib/R/library/stats/libs/stats.so
        0x7fac20d0e000-0x7fac20d2b000   /usr/local/RDsan/lib/R/library/stats/libs/stats.so
        0x7fac20d2b000-0x7fac20d2c000   /usr/local/RDsan/lib/R/library/stats/libs/stats.so
        0x7fac20d2c000-0x7fac20d2e000   /usr/local/RDsan/lib/R/library/stats/libs/stats.so
        0x7fac20d2e000-0x7fac20d3f000   /usr/local/RDsan/lib/R/library/stats/libs/stats.so
        0x7fac20d3f000-0x7fac20eea000
        0x7fac20eea000-0x7fac20ef7000   /usr/local/RDsan/lib/R/library/graphics/libs/graphics.so
        0x7fac20ef7000-0x7fac20f78000   /usr/local/RDsan/lib/R/library/graphics/libs/graphics.so
        0x7fac20f78000-0x7fac20f85000   /usr/local/RDsan/lib/R/library/graphics/libs/graphics.so
        0x7fac20f85000-0x7fac20f86000   /usr/local/RDsan/lib/R/library/graphics/libs/graphics.so
        0x7fac20f86000-0x7fac20f8e000   /usr/local/RDsan/lib/R/library/graphics/libs/graphics.so
        0x7fac20f8e000-0x7fac20fe3000
        0x7fac20fe3000-0x7fac21016000   /usr/local/RDsan/lib/R/library/grDevices/libs/grDevices.so
        0x7fac21016000-0x7fac21077000   /usr/local/RDsan/lib/R/library/grDevices/libs/grDevices.so
        0x7fac21077000-0x7fac210a5000   /usr/local/RDsan/lib/R/library/grDevices/libs/grDevices.so
        0x7fac210a5000-0x7fac210a6000   /usr/local/RDsan/lib/R/library/grDevices/libs/grDevices.so
        0x7fac210a6000-0x7fac210a7000   /usr/local/RDsan/lib/R/library/grDevices/libs/grDevices.so
        0x7fac210a7000-0x7fac210cd000   /usr/local/RDsan/lib/R/library/grDevices/libs/grDevices.so
        0x7fac210cd000-0x7fac21132000
        0x7fac21132000-0x7fac21138000   /usr/local/RDsan/lib/R/library/utils/libs/utils.so
        0x7fac21138000-0x7fac21147000   /usr/local/RDsan/lib/R/library/utils/libs/utils.so
        0x7fac21147000-0x7fac2114b000   /usr/local/RDsan/lib/R/library/utils/libs/utils.so
        0x7fac2114b000-0x7fac2114c000   /usr/local/RDsan/lib/R/library/utils/libs/utils.so
        0x7fac2114c000-0x7fac2114f000   /usr/local/RDsan/lib/R/library/utils/libs/utils.so
        0x7fac2114f000-0x7fac21251000
        0x7fac21251000-0x7fac21255000   /usr/local/RDsan/lib/R/library/parallel/libs/parallel.so
        0x7fac21255000-0x7fac2125e000   /usr/local/RDsan/lib/R/library/parallel/libs/parallel.so
        0x7fac2125e000-0x7fac21260000   /usr/local/RDsan/lib/R/library/parallel/libs/parallel.so
        0x7fac21260000-0x7fac21261000   /usr/local/RDsan/lib/R/library/parallel/libs/parallel.so
        0x7fac21261000-0x7fac21262000   /usr/local/RDsan/lib/R/library/parallel/libs/parallel.so
        0x7fac21262000-0x7fac21264000   /usr/local/RDsan/lib/R/library/parallel/libs/parallel.so
        0x7fac21264000-0x7fac218d4000
        0x7fac218d4000-0x7fac218da000   /usr/local/RDsan/lib/R/library/methods/libs/methods.so
        0x7fac218da000-0x7fac218e1000   /usr/local/RDsan/lib/R/library/methods/libs/methods.so
        0x7fac218e1000-0x7fac218e5000   /usr/local/RDsan/lib/R/library/methods/libs/methods.so
        0x7fac218e5000-0x7fac218e6000   /usr/local/RDsan/lib/R/library/methods/libs/methods.so
        0x7fac218e6000-0x7fac218e9000   /usr/local/RDsan/lib/R/library/methods/libs/methods.so
        0x7fac218e9000-0x7fac21d17000
        0x7fac21d17000-0x7fac22000000   /usr/lib/locale/locale-archive
        0x7fac22000000-0x7fac22020000
        0x7fac22020000-0x7fac22800000
        0x7fac22800000-0x7fac22900000
        0x7fac22900000-0x7fac22902000   /usr/local/RDsan/lib/R/site-library/magrittr/libs/magrittr.so
        0x7fac22902000-0x7fac22904000   /usr/local/RDsan/lib/R/site-library/magrittr/libs/magrittr.so
        0x7fac22904000-0x7fac22905000   /usr/local/RDsan/lib/R/site-library/magrittr/libs/magrittr.so
        0x7fac22905000-0x7fac22906000   /usr/local/RDsan/lib/R/site-library/magrittr/libs/magrittr.so
        0x7fac22906000-0x7fac22907000   /usr/local/RDsan/lib/R/site-library/magrittr/libs/magrittr.so
        0x7fac22907000-0x7fac22d01000
        0x7fac22d01000-0x7fac22d06000
        0x7fac22d06000-0x7fac22d0d000   /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
        0x7fac22d0d000-0x7fac22d0e000   /usr/local/RDsan/lib/R/library/translations/en/LC_MESSAGES/R.mo
        0x7fac22d0e000-0x7fac234f4000
        0x7fac234f4000-0x7fac234f5000   /usr/lib/x86_64-linux-gnu/libicudata.so.70.1
        0x7fac234f5000-0x7fac234f6000   /usr/lib/x86_64-linux-gnu/libicudata.so.70.1
        0x7fac234f6000-0x7fac25110000   /usr/lib/x86_64-linux-gnu/libicudata.so.70.1
        0x7fac25110000-0x7fac25111000   /usr/lib/x86_64-linux-gnu/libicudata.so.70.1
        0x7fac25111000-0x7fac25112000   /usr/lib/x86_64-linux-gnu/libicudata.so.70.1
        0x7fac25112000-0x7fac25120000   /usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
        0x7fac25120000-0x7fac25131000   /usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
        0x7fac25131000-0x7fac2513f000   /usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
        0x7fac2513f000-0x7fac25143000   /usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
        0x7fac25143000-0x7fac25144000   /usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
        0x7fac25144000-0x7fac25146000
        0x7fac25146000-0x7fac251e0000   /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
        0x7fac251e0000-0x7fac252f0000   /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
        0x7fac252f0000-0x7fac2535f000   /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
        0x7fac2535f000-0x7fac2536a000   /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
        0x7fac2536a000-0x7fac2536d000   /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
        0x7fac2536d000-0x7fac25370000
        0x7fac25370000-0x7fac25457000   /usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
        0x7fac25457000-0x7fac255fa000   /usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
        0x7fac255fa000-0x7fac2568c000   /usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
        0x7fac2568c000-0x7fac2569d000   /usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
        0x7fac2569d000-0x7fac2569e000   /usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
        0x7fac2569e000-0x7fac2569f000
        0x7fac2569f000-0x7fac25705000   /usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
        0x7fac25705000-0x7fac257f8000   /usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
        0x7fac257f8000-0x7fac25884000   /usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
        0x7fac25884000-0x7fac25897000   /usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
        0x7fac25897000-0x7fac25898000   /usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
        0x7fac25898000-0x7fac2589a000
        0x7fac2589a000-0x7fac2589c000   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
        0x7fac2589c000-0x7fac258ad000   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
        0x7fac258ad000-0x7fac258b3000   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
        0x7fac258b3000-0x7fac258b4000   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
        0x7fac258b4000-0x7fac258b5000   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
        0x7fac258b5000-0x7fac258b6000   /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
        0x7fac258b6000-0x7fac258b8000   /usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
        0x7fac258b8000-0x7fac258c5000   /usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
        0x7fac258c5000-0x7fac258c7000   /usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
        0x7fac258c7000-0x7fac258c8000   /usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
        0x7fac258c8000-0x7fac258c9000   /usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
        0x7fac258c9000-0x7fac258cb000
        0x7fac258cb000-0x7fac258ce000   /usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
        0x7fac258ce000-0x7fac258e9000   /usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
        0x7fac258e9000-0x7fac258f4000   /usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
        0x7fac258f4000-0x7fac258f5000   /usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
        0x7fac258f5000-0x7fac258f6000   /usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
        0x7fac258f6000-0x7fac258f8000   /usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
        0x7fac258f8000-0x7fac25963000   /usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
        0x7fac25963000-0x7fac2598b000   /usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
        0x7fac2598b000-0x7fac2598c000   /usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
        0x7fac2598c000-0x7fac2598d000   /usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
        0x7fac2598d000-0x7fac259a1000   /usr/lib/x86_64-linux-gnu/libreadline.so.8.1
        0x7fac259a1000-0x7fac259cd000   /usr/lib/x86_64-linux-gnu/libreadline.so.8.1
        0x7fac259cd000-0x7fac259d7000   /usr/lib/x86_64-linux-gnu/libreadline.so.8.1
        0x7fac259d7000-0x7fac259d8000   /usr/lib/x86_64-linux-gnu/libreadline.so.8.1
        0x7fac259d8000-0x7fac259da000   /usr/lib/x86_64-linux-gnu/libreadline.so.8.1
        0x7fac259da000-0x7fac259e0000   /usr/lib/x86_64-linux-gnu/libreadline.so.8.1
        0x7fac259e0000-0x7fac259e1000
        0x7fac259e1000-0x7fac259e4000   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
        0x7fac259e4000-0x7fac259fb000   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
        0x7fac259fb000-0x7fac259ff000   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
        0x7fac259ff000-0x7fac25a00000   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
        0x7fac25a00000-0x7fac25a01000   /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
        0x7fac25a01000-0x7fac25a0f000   /usr/lib/x86_64-linux-gnu/libm.so.6
        0x7fac25a0f000-0x7fac25a8b000   /usr/lib/x86_64-linux-gnu/libm.so.6
        0x7fac25a8b000-0x7fac25ae6000   /usr/lib/x86_64-linux-gnu/libm.so.6
        0x7fac25ae6000-0x7fac25ae7000   /usr/lib/x86_64-linux-gnu/libm.so.6
        0x7fac25ae7000-0x7fac25ae8000   /usr/lib/x86_64-linux-gnu/libm.so.6
        0x7fac25ae8000-0x7fac25b10000   /usr/lib/x86_64-linux-gnu/libc.so.6
        0x7fac25b10000-0x7fac25ca5000   /usr/lib/x86_64-linux-gnu/libc.so.6
        0x7fac25ca5000-0x7fac25cfd000   /usr/lib/x86_64-linux-gnu/libc.so.6
        0x7fac25cfd000-0x7fac25d01000   /usr/lib/x86_64-linux-gnu/libc.so.6
        0x7fac25d01000-0x7fac25d03000   /usr/lib/x86_64-linux-gnu/libc.so.6
        0x7fac25d03000-0x7fac25d12000
        0x7fac25d12000-0x7fac25d19000   /usr/lib/x86_64-linux-gnu/libubsan.so.1.0.0
        0x7fac25d19000-0x7fac25d59000   /usr/lib/x86_64-linux-gnu/libubsan.so.1.0.0
        0x7fac25d59000-0x7fac25d70000   /usr/lib/x86_64-linux-gnu/libubsan.so.1.0.0
        0x7fac25d70000-0x7fac25d72000   /usr/lib/x86_64-linux-gnu/libubsan.so.1.0.0
        0x7fac25d72000-0x7fac25d75000   /usr/lib/x86_64-linux-gnu/libubsan.so.1.0.0
        0x7fac25d75000-0x7fac26347000
        0x7fac26347000-0x7fac26348000   /usr/local/RDsan/lib/R/lib/libRblas.so
        0x7fac26348000-0x7fac26386000   /usr/local/RDsan/lib/R/lib/libRblas.so
        0x7fac26386000-0x7fac26388000   /usr/local/RDsan/lib/R/lib/libRblas.so
        0x7fac26388000-0x7fac26389000   /usr/local/RDsan/lib/R/lib/libRblas.so
        0x7fac26389000-0x7fac2638a000   /usr/local/RDsan/lib/R/lib/libRblas.so
        0x7fac2638a000-0x7fac264cd000   /usr/local/RDsan/lib/R/lib/libR.so
        0x7fac264cd000-0x7fac269a5000   /usr/local/RDsan/lib/R/lib/libR.so
        0x7fac269a5000-0x7fac26adb000   /usr/local/RDsan/lib/R/lib/libR.so
        0x7fac26adb000-0x7fac26af8000   /usr/local/RDsan/lib/R/lib/libR.so
        0x7fac26af8000-0x7fac26bbf000   /usr/local/RDsan/lib/R/lib/libR.so
        0x7fac26bbf000-0x7fac26cce000
        0x7fac26cce000-0x7fac26cf2000   /usr/lib/x86_64-linux-gnu/libasan.so.8.0.0
        0x7fac26cf2000-0x7fac26dd9000   /usr/lib/x86_64-linux-gnu/libasan.so.8.0.0
        0x7fac26dd9000-0x7fac26e0c000   /usr/lib/x86_64-linux-gnu/libasan.so.8.0.0
        0x7fac26e0c000-0x7fac26e0d000   /usr/lib/x86_64-linux-gnu/libasan.so.8.0.0
        0x7fac26e0d000-0x7fac26e11000   /usr/lib/x86_64-linux-gnu/libasan.so.8.0.0
        0x7fac26e11000-0x7fac26e14000   /usr/lib/x86_64-linux-gnu/libasan.so.8.0.0
        0x7fac26e14000-0x7fac2737a000
        0x7fac2737a000-0x7fac2737c000   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
        0x7fac2737c000-0x7fac273a6000   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
        0x7fac273a6000-0x7fac273b1000   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
        0x7fac273b1000-0x7fac273b2000
        0x7fac273b2000-0x7fac273b4000   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
        0x7fac273b4000-0x7fac273b6000   /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
        0x7ffdaad3d000-0x7ffdaae2f000   [stack]
        0x7ffdaafcb000-0x7ffdaafcf000   [vvar]
        0x7ffdaafcf000-0x7ffdaafd1000   [vdso]
==8354==End of process memory map.
ERROR: loading failed
* removing ‘/usr/local/RDsan/lib/R/site-library/igraph’
* restoring previous ‘/usr/local/RDsan/lib/R/site-library/igraph’

@krlmlr
Copy link
Contributor

krlmlr commented May 29, 2023

Thanks. Could you please also post full output after git clean -fdx src .

@Antonov548
Copy link
Contributor Author

@szhorvat I see in the wiki there is instuction how to run test suite for Python. https://github.com/igraph/igraph/wiki/Using-sanitizers-to-find-bugs#rigraph. But how do you run test suite for R with sanitaizer?

@Antonov548
Copy link
Contributor Author

For RDcsan which is compiling without issues I also don't see any memory leaks messages.

@Antonov548
Copy link
Contributor Author

Antonov548 commented May 29, 2023

Thanks. Could you please also post full output after git clean -fdx src .

It's quite large, but here it is
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking whether the compiler supports GNU C++... yes
checking whether g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++11 accepts -g... yes
checking for g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++11 option to enable C++11 features... none needed
checking whether the compiler supports GNU Fortran... yes
checking whether gfortran accepts -g... yes
checking for expm1... yes
checking for fmin... yes
checking for finite... yes
checking for log2... yes
checking for log1p... yes
checking for rint... yes
checking for rintf... yes
checking for round... yes
checking for stpcpy... yes
checking for strcasecmp... yes
checking for _stricmp... no
checking for strdup... yes
checking for isfinite... no
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for sys/times.h... yes
checking for net/if.h... yes
checking for netinet/in.h... yes
checking for net/if_dl.h... no
checking for sys/sockio.h... no
checking for sys/un.h... yes
checking for sys/socket.h... yes
checking for sys/ioctl.h... yes
checking for sys/time.h... yes
checking for sys/file.h... yes
checking for struct sockaddr.sa_len... no
checking for xml2-config... /usr/bin/xml2-config
checking for xmlSAXUserParseFile in -lxml2... yes
checking for libxml/parser.h... yes
checking for __gmpz_add in -lgmp... no
checking how to run the C++ preprocessor... g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++11 -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for glp_read_mps in -lglpk... no
configure: creating ./config.status
config.status: creating src/Makevars.tmp
config.status: creating src/Makevars
config.status: creating src/config.h

*** Compiler settings used:
    CC=gcc
    LD=
    CFLAGS=-fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address
    CPPFLAGS=-I/usr/local/include
    CXX=g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++11
    CXXFLAGS=-fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic
    LDFLAGS=-L/usr/local/lib
    LIBS=
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/centrality/betweenness.c -o core/centrality/betweenness.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/centrality/centrality_other.c -o core/centrality/centrality_other.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/centrality/centralization.c -o core/centrality/centralization.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/centrality/closeness.c -o core/centrality/closeness.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/centrality/coreness.c -o core/centrality/coreness.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/centrality/prpack.cpp -o core/centrality/prpack.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/centrality/prpack/prpack_base_graph.cpp -o core/centrality/prpack/prpack_base_graph.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/centrality/prpack/prpack_igraph_graph.cpp -o core/centrality/prpack/prpack_igraph_graph.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/centrality/prpack/prpack_preprocessed_ge_graph.cpp -o core/centrality/prpack/prpack_preprocessed_ge_graph.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/centrality/prpack/prpack_preprocessed_gs_graph.cpp -o core/centrality/prpack/prpack_preprocessed_gs_graph.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/centrality/prpack/prpack_preprocessed_scc_graph.cpp -o core/centrality/prpack/prpack_preprocessed_scc_graph.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/centrality/prpack/prpack_preprocessed_schur_graph.cpp -o core/centrality/prpack/prpack_preprocessed_schur_graph.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/centrality/prpack/prpack_result.cpp -o core/centrality/prpack/prpack_result.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/centrality/prpack/prpack_solver.cpp -o core/centrality/prpack/prpack_solver.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/centrality/prpack/prpack_utils.cpp -o core/centrality/prpack/prpack_utils.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/cliques/cliquer/cliquer.c -o core/cliques/cliquer/cliquer.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/cliques/cliquer/cliquer_graph.c -o core/cliques/cliquer/cliquer_graph.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/cliques/cliquer/reorder.c -o core/cliques/cliquer/reorder.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/cliques/cliquer_wrapper.c -o core/cliques/cliquer_wrapper.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/cliques/cliques.c -o core/cliques/cliques.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/cliques/glet.c -o core/cliques/glet.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/cliques/maximal_cliques.c -o core/cliques/maximal_cliques.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/community/community_misc.c -o core/community/community_misc.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/community/edge_betweenness.c -o core/community/edge_betweenness.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/community/fast_modularity.c -o core/community/fast_modularity.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/community/fluid.c -o core/community/fluid.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/community/infomap/infomap.cc -o core/community/infomap/infomap.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/community/infomap/infomap_FlowGraph.cc -o core/community/infomap/infomap_FlowGraph.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/community/infomap/infomap_Greedy.cc -o core/community/infomap/infomap_Greedy.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/community/infomap/infomap_Node.cc -o core/community/infomap/infomap_Node.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/community/label_propagation.c -o core/community/label_propagation.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/community/leading_eigenvector.c -o core/community/leading_eigenvector.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/community/leiden.c -o core/community/leiden.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/community/louvain.c -o core/community/louvain.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/community/modularity.c -o core/community/modularity.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/community/optimal_modularity.c -o core/community/optimal_modularity.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/community/spinglass/NetDataTypes.cpp -o core/community/spinglass/NetDataTypes.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/community/spinglass/NetRoutines.cpp -o core/community/spinglass/NetRoutines.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/community/spinglass/clustertool.cpp -o core/community/spinglass/clustertool.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/community/spinglass/pottsmodel_2.cpp -o core/community/spinglass/pottsmodel_2.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/community/walktrap/walktrap.cpp -o core/community/walktrap/walktrap.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/community/walktrap/walktrap_communities.cpp -o core/community/walktrap/walktrap_communities.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/community/walktrap/walktrap_graph.cpp -o core/community/walktrap/walktrap_graph.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/community/walktrap/walktrap_heap.cpp -o core/community/walktrap/walktrap_heap.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/connectivity/cohesive_blocks.c -o core/connectivity/cohesive_blocks.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/connectivity/components.c -o core/connectivity/components.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/connectivity/separators.c -o core/connectivity/separators.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/constructors/adjacency.c -o core/constructors/adjacency.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/constructors/atlas.c -o core/constructors/atlas.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/constructors/basic_constructors.c -o core/constructors/basic_constructors.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/constructors/de_bruijn.c -o core/constructors/de_bruijn.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/constructors/famous.c -o core/constructors/famous.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/constructors/full.c -o core/constructors/full.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/constructors/kautz.c -o core/constructors/kautz.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/constructors/lcf.c -o core/constructors/lcf.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/constructors/linegraph.c -o core/constructors/linegraph.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/constructors/prufer.c -o core/constructors/prufer.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/constructors/regular.c -o core/constructors/regular.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/array.c -o core/core/array.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/buckets.c -o core/core/buckets.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/cutheap.c -o core/core/cutheap.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/dqueue.c -o core/core/dqueue.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/error.c -o core/core/error.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/estack.c -o core/core/estack.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/fixed_vectorlist.c -o core/core/fixed_vectorlist.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/grid.c -o core/core/grid.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/heap.c -o core/core/heap.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/indheap.c -o core/core/indheap.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/interruption.c -o core/core/interruption.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/marked_queue.c -o core/core/marked_queue.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/matrix.c -o core/core/matrix.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/memory.c -o core/core/memory.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/printing.c -o core/core/printing.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/progress.c -o core/core/progress.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/psumtree.c -o core/core/psumtree.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/set.c -o core/core/set.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/sparsemat.c -o core/core/sparsemat.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/spmatrix.c -o core/core/spmatrix.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/stack.c -o core/core/stack.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/statusbar.c -o core/core/statusbar.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/strvector.c -o core/core/strvector.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/trie.c -o core/core/trie.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/vector.c -o core/core/vector.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/core/vector_ptr.c -o core/core/vector_ptr.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/flow/flow.c -o core/flow/flow.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/flow/st-cuts.c -o core/flow/st-cuts.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/barabasi.c -o core/games/barabasi.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/callaway_traits.c -o core/games/callaway_traits.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/citations.c -o core/games/citations.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/correlated.c -o core/games/correlated.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/degree_sequence.c -o core/games/degree_sequence.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/games/degree_sequence_vl/gengraph_box_list.cpp -o core/games/degree_sequence_vl/gengraph_box_list.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/games/degree_sequence_vl/gengraph_degree_sequence.cpp -o core/games/degree_sequence_vl/gengraph_degree_sequence.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/games/degree_sequence_vl/gengraph_graph_molloy_hash.cpp -o core/games/degree_sequence_vl/gengraph_graph_molloy_hash.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/games/degree_sequence_vl/gengraph_graph_molloy_optimized.cpp -o core/games/degree_sequence_vl/gengraph_graph_molloy_optimized.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/games/degree_sequence_vl/gengraph_mr-connected.cpp -o core/games/degree_sequence_vl/gengraph_mr-connected.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/games/degree_sequence_vl/gengraph_powerlaw.cpp -o core/games/degree_sequence_vl/gengraph_powerlaw.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/games/degree_sequence_vl/gengraph_random.cpp -o core/games/degree_sequence_vl/gengraph_random.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/dotproduct.c -o core/games/dotproduct.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/erdos_renyi.c -o core/games/erdos_renyi.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/establishment.c -o core/games/establishment.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/forestfire.c -o core/games/forestfire.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/grg.c -o core/games/grg.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/growing_random.c -o core/games/growing_random.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/islands.c -o core/games/islands.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/k_regular.c -o core/games/k_regular.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/preference.c -o core/games/preference.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/recent_degree.c -o core/games/recent_degree.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/sbm.c -o core/games/sbm.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/static_fitness.c -o core/games/static_fitness.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/tree.c -o core/games/tree.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/games/watts_strogatz.c -o core/games/watts_strogatz.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/graph/adjlist.c -o core/graph/adjlist.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/graph/attributes.c -o core/graph/attributes.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/graph/basic_query.c -o core/graph/basic_query.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/graph/cattributes.c -o core/graph/cattributes.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/graph/iterators.c -o core/graph/iterators.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/graph/type_indexededgelist.c -o core/graph/type_indexededgelist.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/graph/visitors.c -o core/graph/visitors.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/hrg/hrg.cc -o core/hrg/hrg.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/hrg/hrg_types.cc -o core/hrg/hrg_types.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/internal/glpk_support.c -o core/internal/glpk_support.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/internal/hacks.c -o core/internal/hacks.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/internal/lsap.c -o core/internal/lsap.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/internal/qsort.c -o core/internal/qsort.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/internal/qsort_r.c -o core/internal/qsort_r.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/internal/zeroin.c -o core/internal/zeroin.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/dimacs.c -o core/io/dimacs.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/dl-lexer.c -o core/io/dl-lexer.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/dl-parser.c -o core/io/dl-parser.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/dl.c -o core/io/dl.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/dot.c -o core/io/dot.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/edgelist.c -o core/io/edgelist.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/gml-lexer.c -o core/io/gml-lexer.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/gml-parser.c -o core/io/gml-parser.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/gml-tree.c -o core/io/gml-tree.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/gml.c -o core/io/gml.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/graphdb.c -o core/io/graphdb.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/graphml.c -o core/io/graphml.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/leda.c -o core/io/leda.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/lgl-lexer.c -o core/io/lgl-lexer.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/lgl-parser.c -o core/io/lgl-parser.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/lgl.c -o core/io/lgl.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/ncol-lexer.c -o core/io/ncol-lexer.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/ncol-parser.c -o core/io/ncol-parser.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/ncol.c -o core/io/ncol.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/pajek-lexer.c -o core/io/pajek-lexer.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/pajek-parser.c -o core/io/pajek-parser.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/io/pajek.c -o core/io/pajek.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/isomorphism/bliss.cc -o core/isomorphism/bliss.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/isomorphism/bliss/defs.cc -o core/isomorphism/bliss/defs.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/isomorphism/bliss/graph.cc -o core/isomorphism/bliss/graph.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/isomorphism/bliss/heap.cc -o core/isomorphism/bliss/heap.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/isomorphism/bliss/orbit.cc -o core/isomorphism/bliss/orbit.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/isomorphism/bliss/partition.cc -o core/isomorphism/bliss/partition.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/isomorphism/bliss/uintseqhash.cc -o core/isomorphism/bliss/uintseqhash.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/isomorphism/bliss/utils.cc -o core/isomorphism/bliss/utils.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/isomorphism/isoclasses.c -o core/isomorphism/isoclasses.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/isomorphism/isomorphism_misc.c -o core/isomorphism/isomorphism_misc.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/isomorphism/lad.c -o core/isomorphism/lad.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/isomorphism/queries.c -o core/isomorphism/queries.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/isomorphism/vf2.c -o core/isomorphism/vf2.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/circular.c -o core/layout/circular.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/davidson_harel.c -o core/layout/davidson_harel.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/layout/drl/DensityGrid.cpp -o core/layout/drl/DensityGrid.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/layout/drl/DensityGrid_3d.cpp -o core/layout/drl/DensityGrid_3d.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/layout/drl/drl_graph.cpp -o core/layout/drl/drl_graph.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/layout/drl/drl_graph_3d.cpp -o core/layout/drl/drl_graph_3d.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/layout/drl/drl_layout.cpp -o core/layout/drl/drl_layout.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/layout/drl/drl_layout_3d.cpp -o core/layout/drl/drl_layout_3d.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/layout/drl/drl_parse.cpp -o core/layout/drl/drl_parse.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/fruchterman_reingold.c -o core/layout/fruchterman_reingold.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/gem.c -o core/layout/gem.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/graphopt.c -o core/layout/graphopt.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/kamada_kawai.c -o core/layout/kamada_kawai.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/large_graph.c -o core/layout/large_graph.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/layout_bipartite.c -o core/layout/layout_bipartite.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/layout_grid.c -o core/layout/layout_grid.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/layout_random.c -o core/layout/layout_random.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/mds.c -o core/layout/mds.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/merge_dla.c -o core/layout/merge_dla.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/merge_grid.c -o core/layout/merge_grid.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/reingold_tilford.c -o core/layout/reingold_tilford.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/layout/sugiyama.c -o core/layout/sugiyama.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/linalg/arpack.c -o core/linalg/arpack.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/linalg/blas.c -o core/linalg/blas.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/linalg/eigen.c -o core/linalg/eigen.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/linalg/lapack.c -o core/linalg/lapack.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/math/bfgs.c -o core/math/bfgs.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/math/complex.c -o core/math/complex.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/math/utils.c -o core/math/utils.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/bipartite.c -o core/misc/bipartite.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/chordality.c -o core/misc/chordality.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/cocitation.c -o core/misc/cocitation.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/coloring.c -o core/misc/coloring.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/conversion.c -o core/misc/conversion.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c core/misc/degree_sequence.cpp -o core/misc/degree_sequence.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/embedding.c -o core/misc/embedding.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/feedback_arc_set.c -o core/misc/feedback_arc_set.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/graphicality.c -o core/misc/graphicality.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/matching.c -o core/misc/matching.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/microscopic_update.c -o core/misc/microscopic_update.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/mixing.c -o core/misc/mixing.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/motifs.c -o core/misc/motifs.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/other.c -o core/misc/other.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/scan.c -o core/misc/scan.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/sir.c -o core/misc/sir.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/misc/spanning_trees.c -o core/misc/spanning_trees.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/add_edge.c -o core/operators/add_edge.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/complementer.c -o core/operators/complementer.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/compose.c -o core/operators/compose.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/connect_neighborhood.c -o core/operators/connect_neighborhood.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/contract.c -o core/operators/contract.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/difference.c -o core/operators/difference.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/disjoint_union.c -o core/operators/disjoint_union.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/intersection.c -o core/operators/intersection.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/misc_internal.c -o core/operators/misc_internal.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/permute.c -o core/operators/permute.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/reverse.c -o core/operators/reverse.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/rewire.c -o core/operators/rewire.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/rewire_edges.c -o core/operators/rewire_edges.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/simplify.c -o core/operators/simplify.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/subgraph.c -o core/operators/subgraph.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/operators/union.c -o core/operators/union.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/paths/all_shortest_paths.c -o core/paths/all_shortest_paths.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/paths/bellman_ford.c -o core/paths/bellman_ford.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/paths/dijkstra.c -o core/paths/dijkstra.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/paths/distances.c -o core/paths/distances.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/paths/eulerian.c -o core/paths/eulerian.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/paths/histogram.c -o core/paths/histogram.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/paths/johnson.c -o core/paths/johnson.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/paths/random_walk.c -o core/paths/random_walk.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/paths/shortest_paths.c -o core/paths/shortest_paths.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/paths/simple_paths.c -o core/paths/simple_paths.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/paths/unweighted.c -o core/paths/unweighted.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/properties/basic_properties.c -o core/properties/basic_properties.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/properties/constraint.c -o core/properties/constraint.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/properties/convergence_degree.c -o core/properties/convergence_degree.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/properties/dag.c -o core/properties/dag.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/properties/degrees.c -o core/properties/degrees.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/properties/girth.c -o core/properties/girth.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/properties/loops.c -o core/properties/loops.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/properties/multiplicity.c -o core/properties/multiplicity.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/properties/neighborhood.c -o core/properties/neighborhood.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/properties/spectral.c -o core/properties/spectral.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/properties/trees.c -o core/properties/trees.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/properties/triangles.c -o core/properties/triangles.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/random/random.c -o core/random/random.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/scg/scg.c -o core/scg/scg.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/scg/scg_approximate_methods.c -o core/scg/scg_approximate_methods.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/scg/scg_exact_scg.c -o core/scg/scg_exact_scg.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/scg/scg_kmeans.c -o core/scg/scg_kmeans.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/scg/scg_optimal_method.c -o core/scg/scg_optimal_method.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/scg/scg_utils.c -o core/scg/scg_utils.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c core/version.c -o core/version.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_add.c -o vendor/cs/cs_add.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_amd.c -o vendor/cs/cs_amd.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_chol.c -o vendor/cs/cs_chol.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_cholsol.c -o vendor/cs/cs_cholsol.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_compress.c -o vendor/cs/cs_compress.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_counts.c -o vendor/cs/cs_counts.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_cumsum.c -o vendor/cs/cs_cumsum.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_dfs.c -o vendor/cs/cs_dfs.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_dmperm.c -o vendor/cs/cs_dmperm.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_droptol.c -o vendor/cs/cs_droptol.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_dropzeros.c -o vendor/cs/cs_dropzeros.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_dupl.c -o vendor/cs/cs_dupl.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_entry.c -o vendor/cs/cs_entry.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_ereach.c -o vendor/cs/cs_ereach.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_etree.c -o vendor/cs/cs_etree.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_fkeep.c -o vendor/cs/cs_fkeep.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_gaxpy.c -o vendor/cs/cs_gaxpy.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_happly.c -o vendor/cs/cs_happly.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_house.c -o vendor/cs/cs_house.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_ipvec.c -o vendor/cs/cs_ipvec.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_leaf.c -o vendor/cs/cs_leaf.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_load.c -o vendor/cs/cs_load.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_lsolve.c -o vendor/cs/cs_lsolve.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_ltsolve.c -o vendor/cs/cs_ltsolve.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_lu.c -o vendor/cs/cs_lu.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_lusol.c -o vendor/cs/cs_lusol.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_malloc.c -o vendor/cs/cs_malloc.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_maxtrans.c -o vendor/cs/cs_maxtrans.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_multiply.c -o vendor/cs/cs_multiply.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_norm.c -o vendor/cs/cs_norm.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_permute.c -o vendor/cs/cs_permute.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_pinv.c -o vendor/cs/cs_pinv.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_post.c -o vendor/cs/cs_post.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_print.c -o vendor/cs/cs_print.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_pvec.c -o vendor/cs/cs_pvec.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_qr.c -o vendor/cs/cs_qr.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_qrsol.c -o vendor/cs/cs_qrsol.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_randperm.c -o vendor/cs/cs_randperm.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_reach.c -o vendor/cs/cs_reach.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_scatter.c -o vendor/cs/cs_scatter.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_scc.c -o vendor/cs/cs_scc.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_schol.c -o vendor/cs/cs_schol.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_spsolve.c -o vendor/cs/cs_spsolve.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_sqr.c -o vendor/cs/cs_sqr.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_symperm.c -o vendor/cs/cs_symperm.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_tdfs.c -o vendor/cs/cs_tdfs.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_transpose.c -o vendor/cs/cs_transpose.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_updown.c -o vendor/cs/cs_updown.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_usolve.c -o vendor/cs/cs_usolve.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_util.c -o vendor/cs/cs_util.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/cs/cs_utsolve.c -o vendor/cs/cs_utsolve.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/mini-gmp/mini-gmp.c -o vendor/mini-gmp/mini-gmp.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/plfit/gss.c -o vendor/plfit/gss.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/plfit/hzeta.c -o vendor/plfit/hzeta.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/plfit/kolmogorov.c -o vendor/plfit/kolmogorov.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/plfit/lbfgs.c -o vendor/plfit/lbfgs.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/plfit/mt.c -o vendor/plfit/mt.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/plfit/options.c -o vendor/plfit/options.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/plfit/platform.c -o vendor/plfit/platform.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/plfit/plfit.c -o vendor/plfit/plfit.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/plfit/plfit_error.c -o vendor/plfit/plfit_error.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/plfit/rbinom.c -o vendor/plfit/rbinom.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/plfit/sampling.c -o vendor/plfit/sampling.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dgetv0.f -o vendor/arpack/dgetv0.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dlaqrb.f -o vendor/arpack/dlaqrb.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dmout.f -o vendor/arpack/dmout.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dnaitr.f -o vendor/arpack/dnaitr.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dnapps.f -o vendor/arpack/dnapps.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dnaup2.f -o vendor/arpack/dnaup2.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dnaupd.f -o vendor/arpack/dnaupd.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dnconv.f -o vendor/arpack/dnconv.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dneigh.f -o vendor/arpack/dneigh.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dneupd.f -o vendor/arpack/dneupd.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dngets.f -o vendor/arpack/dngets.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsaitr.f -o vendor/arpack/dsaitr.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsapps.f -o vendor/arpack/dsapps.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsaup2.f -o vendor/arpack/dsaup2.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsaupd.f -o vendor/arpack/dsaupd.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsconv.f -o vendor/arpack/dsconv.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dseigt.f -o vendor/arpack/dseigt.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsesrt.f -o vendor/arpack/dsesrt.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dseupd.f -o vendor/arpack/dseupd.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsgets.f -o vendor/arpack/dsgets.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsortc.f -o vendor/arpack/dsortc.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsortr.f -o vendor/arpack/dsortr.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dstatn.f -o vendor/arpack/dstatn.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dstats.f -o vendor/arpack/dstats.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dstqrb.f -o vendor/arpack/dstqrb.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dvout.f -o vendor/arpack/dvout.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/ivout.f -o vendor/arpack/ivout.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/second.f -o vendor/arpack/second.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/wrap.f -o vendor/arpack/wrap.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c vendor/simpleraytracer/Color.cpp -o vendor/simpleraytracer/Color.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c vendor/simpleraytracer/Light.cpp -o vendor/simpleraytracer/Light.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c vendor/simpleraytracer/Point.cpp -o vendor/simpleraytracer/Point.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c vendor/simpleraytracer/RIgraphRay.cpp -o vendor/simpleraytracer/RIgraphRay.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c vendor/simpleraytracer/Ray.cpp -o vendor/simpleraytracer/Ray.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c vendor/simpleraytracer/RayTracer.cpp -o vendor/simpleraytracer/RayTracer.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c vendor/simpleraytracer/RayVector.cpp -o vendor/simpleraytracer/RayVector.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c vendor/simpleraytracer/Shape.cpp -o vendor/simpleraytracer/Shape.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c vendor/simpleraytracer/Sphere.cpp -o vendor/simpleraytracer/Sphere.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c vendor/simpleraytracer/Triangle.cpp -o vendor/simpleraytracer/Triangle.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c vendor/simpleraytracer/unit_limiter.cpp -o vendor/simpleraytracer/unit_limiter.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/uuid/R.c -o vendor/uuid/R.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/uuid/clear.c -o vendor/uuid/clear.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/uuid/compare.c -o vendor/uuid/compare.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/uuid/copy.c -o vendor/uuid/copy.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/uuid/gen_uuid.c -o vendor/uuid/gen_uuid.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/uuid/isnull.c -o vendor/uuid/isnull.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/uuid/pack.c -o vendor/uuid/pack.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/uuid/parse.c -o vendor/uuid/parse.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/uuid/unpack.c -o vendor/uuid/unpack.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c vendor/uuid/unparse.c -o vendor/uuid/unparse.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c rinterface.c -o rinterface.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c rinterface_extra.c -o rinterface_extra.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c rrandom.c -o rrandom.o
gcc -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -pedantic -fsanitize=address  -c lazyeval.c -o lazyeval.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c init.cpp -o init.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c cpp11.cpp -o cpp11.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -I"/usr/local/RDsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDsan/lib/R/site-library/cpp11/include' -I/usr/local/include -DSWITCH_TO_REFCNT  -fvisibility=hidden -fpic  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -O0 -Wall -Wall -pedantic  -c cpprinterface.cpp -o cpprinterface.o
g++ -fsanitize=address,undefined,bounds-strict -fno-omit-frame-pointer -std=gnu++17 -shared -L/usr/local/RDsan/lib/R/lib -L/usr/local/lib -o igraph.so core/centrality/betweenness.o core/centrality/centrality_other.o core/centrality/centralization.o core/centrality/closeness.o core/centrality/coreness.o core/centrality/prpack.o core/centrality/prpack/prpack_base_graph.o core/centrality/prpack/prpack_igraph_graph.o core/centrality/prpack/prpack_preprocessed_ge_graph.o core/centrality/prpack/prpack_preprocessed_gs_graph.o core/centrality/prpack/prpack_preprocessed_scc_graph.o core/centrality/prpack/prpack_preprocessed_schur_graph.o core/centrality/prpack/prpack_result.o core/centrality/prpack/prpack_solver.o core/centrality/prpack/prpack_utils.o core/cliques/cliquer/cliquer.o core/cliques/cliquer/cliquer_graph.o core/cliques/cliquer/reorder.o core/cliques/cliquer_wrapper.o core/cliques/cliques.o core/cliques/glet.o core/cliques/maximal_cliques.o core/community/community_misc.o core/community/edge_betweenness.o core/community/fast_modularity.o core/community/fluid.o core/community/infomap/infomap.o core/community/infomap/infomap_FlowGraph.o core/community/infomap/infomap_Greedy.o core/community/infomap/infomap_Node.o core/community/label_propagation.o core/community/leading_eigenvector.o core/community/leiden.o core/community/louvain.o core/community/modularity.o core/community/optimal_modularity.o core/community/spinglass/NetDataTypes.o core/community/spinglass/NetRoutines.o core/community/spinglass/clustertool.o core/community/spinglass/pottsmodel_2.o core/community/walktrap/walktrap.o core/community/walktrap/walktrap_communities.o core/community/walktrap/walktrap_graph.o core/community/walktrap/walktrap_heap.o core/connectivity/cohesive_blocks.o core/connectivity/components.o core/connectivity/separators.o core/constructors/adjacency.o core/constructors/atlas.o core/constructors/basic_constructors.o core/constructors/de_bruijn.o core/constructors/famous.o core/constructors/full.o core/constructors/kautz.o core/constructors/lcf.o core/constructors/linegraph.o core/constructors/prufer.o core/constructors/regular.o core/core/array.o core/core/buckets.o core/core/cutheap.o core/core/dqueue.o core/core/error.o core/core/estack.o core/core/fixed_vectorlist.o core/core/grid.o core/core/heap.o core/core/indheap.o core/core/interruption.o core/core/marked_queue.o core/core/matrix.o core/core/memory.o core/core/printing.o core/core/progress.o core/core/psumtree.o core/core/set.o core/core/sparsemat.o core/core/spmatrix.o core/core/stack.o core/core/statusbar.o core/core/strvector.o core/core/trie.o core/core/vector.o core/core/vector_ptr.o core/flow/flow.o core/flow/st-cuts.o core/games/barabasi.o core/games/callaway_traits.o core/games/citations.o core/games/correlated.o core/games/degree_sequence.o core/games/degree_sequence_vl/gengraph_box_list.o core/games/degree_sequence_vl/gengraph_degree_sequence.o core/games/degree_sequence_vl/gengraph_graph_molloy_hash.o core/games/degree_sequence_vl/gengraph_graph_molloy_optimized.o core/games/degree_sequence_vl/gengraph_mr-connected.o core/games/degree_sequence_vl/gengraph_powerlaw.o core/games/degree_sequence_vl/gengraph_random.o core/games/dotproduct.o core/games/erdos_renyi.o core/games/establishment.o core/games/forestfire.o core/games/grg.o core/games/growing_random.o core/games/islands.o core/games/k_regular.o core/games/preference.o core/games/recent_degree.o core/games/sbm.o core/games/static_fitness.o core/games/tree.o core/games/watts_strogatz.o core/graph/adjlist.o core/graph/attributes.o core/graph/basic_query.o core/graph/cattributes.o core/graph/iterators.o core/graph/type_indexededgelist.o core/graph/visitors.o core/hrg/hrg.o core/hrg/hrg_types.o core/internal/glpk_support.o core/internal/hacks.o core/internal/lsap.o core/internal/qsort.o core/internal/qsort_r.o core/internal/zeroin.o core/io/dimacs.o core/io/dl-lexer.o core/io/dl-parser.o core/io/dl.o core/io/dot.o core/io/edgelist.o core/io/gml-lexer.o core/io/gml-parser.o core/io/gml-tree.o core/io/gml.o core/io/graphdb.o core/io/graphml.o core/io/leda.o core/io/lgl-lexer.o core/io/lgl-parser.o core/io/lgl.o core/io/ncol-lexer.o core/io/ncol-parser.o core/io/ncol.o core/io/pajek-lexer.o core/io/pajek-parser.o core/io/pajek.o core/isomorphism/bliss.o core/isomorphism/bliss/defs.o core/isomorphism/bliss/graph.o core/isomorphism/bliss/heap.o core/isomorphism/bliss/orbit.o core/isomorphism/bliss/partition.o core/isomorphism/bliss/uintseqhash.o core/isomorphism/bliss/utils.o core/isomorphism/isoclasses.o core/isomorphism/isomorphism_misc.o core/isomorphism/lad.o core/isomorphism/queries.o core/isomorphism/vf2.o core/layout/circular.o core/layout/davidson_harel.o core/layout/drl/DensityGrid.o core/layout/drl/DensityGrid_3d.o core/layout/drl/drl_graph.o core/layout/drl/drl_graph_3d.o core/layout/drl/drl_layout.o core/layout/drl/drl_layout_3d.o core/layout/drl/drl_parse.o core/layout/fruchterman_reingold.o core/layout/gem.o core/layout/graphopt.o core/layout/kamada_kawai.o core/layout/large_graph.o core/layout/layout_bipartite.o core/layout/layout_grid.o core/layout/layout_random.o core/layout/mds.o core/layout/merge_dla.o core/layout/merge_grid.o core/layout/reingold_tilford.o core/layout/sugiyama.o core/linalg/arpack.o core/linalg/blas.o core/linalg/eigen.o core/linalg/lapack.o core/math/bfgs.o core/math/complex.o core/math/utils.o core/misc/bipartite.o core/misc/chordality.o core/misc/cocitation.o core/misc/coloring.o core/misc/conversion.o core/misc/degree_sequence.o core/misc/embedding.o core/misc/feedback_arc_set.o core/misc/graphicality.o core/misc/matching.o core/misc/microscopic_update.o core/misc/mixing.o core/misc/motifs.o core/misc/other.o core/misc/scan.o core/misc/sir.o core/misc/spanning_trees.o core/operators/add_edge.o core/operators/complementer.o core/operators/compose.o core/operators/connect_neighborhood.o core/operators/contract.o core/operators/difference.o core/operators/disjoint_union.o core/operators/intersection.o core/operators/misc_internal.o core/operators/permute.o core/operators/reverse.o core/operators/rewire.o core/operators/rewire_edges.o core/operators/simplify.o core/operators/subgraph.o core/operators/union.o core/paths/all_shortest_paths.o core/paths/bellman_ford.o core/paths/dijkstra.o core/paths/distances.o core/paths/eulerian.o core/paths/histogram.o core/paths/johnson.o core/paths/random_walk.o core/paths/shortest_paths.o core/paths/simple_paths.o core/paths/unweighted.o core/properties/basic_properties.o core/properties/constraint.o core/properties/convergence_degree.o core/properties/dag.o core/properties/degrees.o core/properties/girth.o core/properties/loops.o core/properties/multiplicity.o core/properties/neighborhood.o core/properties/spectral.o core/properties/trees.o core/properties/triangles.o core/random/random.o core/scg/scg.o core/scg/scg_approximate_methods.o core/scg/scg_exact_scg.o core/scg/scg_kmeans.o core/scg/scg_optimal_method.o core/scg/scg_utils.o core/version.o vendor/cs/cs_add.o vendor/cs/cs_amd.o vendor/cs/cs_chol.o vendor/cs/cs_cholsol.o vendor/cs/cs_compress.o vendor/cs/cs_counts.o vendor/cs/cs_cumsum.o vendor/cs/cs_dfs.o vendor/cs/cs_dmperm.o vendor/cs/cs_droptol.o vendor/cs/cs_dropzeros.o vendor/cs/cs_dupl.o vendor/cs/cs_entry.o vendor/cs/cs_ereach.o vendor/cs/cs_etree.o vendor/cs/cs_fkeep.o vendor/cs/cs_gaxpy.o vendor/cs/cs_happly.o vendor/cs/cs_house.o vendor/cs/cs_ipvec.o vendor/cs/cs_leaf.o vendor/cs/cs_load.o vendor/cs/cs_lsolve.o vendor/cs/cs_ltsolve.o vendor/cs/cs_lu.o vendor/cs/cs_lusol.o vendor/cs/cs_malloc.o vendor/cs/cs_maxtrans.o vendor/cs/cs_multiply.o vendor/cs/cs_norm.o vendor/cs/cs_permute.o vendor/cs/cs_pinv.o vendor/cs/cs_post.o vendor/cs/cs_print.o vendor/cs/cs_pvec.o vendor/cs/cs_qr.o vendor/cs/cs_qrsol.o vendor/cs/cs_randperm.o vendor/cs/cs_reach.o vendor/cs/cs_scatter.o vendor/cs/cs_scc.o vendor/cs/cs_schol.o vendor/cs/cs_spsolve.o vendor/cs/cs_sqr.o vendor/cs/cs_symperm.o vendor/cs/cs_tdfs.o vendor/cs/cs_transpose.o vendor/cs/cs_updown.o vendor/cs/cs_usolve.o vendor/cs/cs_util.o vendor/cs/cs_utsolve.o vendor/mini-gmp/mini-gmp.o vendor/plfit/gss.o vendor/plfit/hzeta.o vendor/plfit/kolmogorov.o vendor/plfit/lbfgs.o vendor/plfit/mt.o vendor/plfit/options.o vendor/plfit/platform.o vendor/plfit/plfit.o vendor/plfit/plfit_error.o vendor/plfit/rbinom.o vendor/plfit/sampling.o vendor/arpack/dgetv0.o vendor/arpack/dlaqrb.o vendor/arpack/dmout.o vendor/arpack/dnaitr.o vendor/arpack/dnapps.o vendor/arpack/dnaup2.o vendor/arpack/dnaupd.o vendor/arpack/dnconv.o vendor/arpack/dneigh.o vendor/arpack/dneupd.o vendor/arpack/dngets.o vendor/arpack/dsaitr.o vendor/arpack/dsapps.o vendor/arpack/dsaup2.o vendor/arpack/dsaupd.o vendor/arpack/dsconv.o vendor/arpack/dseigt.o vendor/arpack/dsesrt.o vendor/arpack/dseupd.o vendor/arpack/dsgets.o vendor/arpack/dsortc.o vendor/arpack/dsortr.o vendor/arpack/dstatn.o vendor/arpack/dstats.o vendor/arpack/dstqrb.o vendor/arpack/dvout.o vendor/arpack/ivout.o vendor/arpack/second.o vendor/arpack/wrap.o vendor/simpleraytracer/Color.o vendor/simpleraytracer/Light.o vendor/simpleraytracer/Point.o vendor/simpleraytracer/RIgraphRay.o vendor/simpleraytracer/Ray.o vendor/simpleraytracer/RayTracer.o vendor/simpleraytracer/RayVector.o vendor/simpleraytracer/Shape.o vendor/simpleraytracer/Sphere.o vendor/simpleraytracer/Triangle.o vendor/simpleraytracer/unit_limiter.o vendor/uuid/R.o vendor/uuid/clear.o vendor/uuid/compare.o vendor/uuid/copy.o vendor/uuid/gen_uuid.o vendor/uuid/isnull.o vendor/uuid/pack.o vendor/uuid/parse.o vendor/uuid/unpack.o vendor/uuid/unparse.o rinterface.o rinterface_extra.o rrandom.o lazyeval.o init.o cpp11.o cpprinterface.o -lxml2 -llapack -L/usr/local/RDsan/lib/R/lib -lRblas -L/usr/lib/gcc/x86_64-linux-gnu/11 -lgfortran -lm -lquadmath -L/usr/local/RDsan/lib/R/lib -lR
==18721==Shadow memory range interleaves with an existing memory mapping. ASan cannot proceed correctly. ABORTING.
==18721==ASan shadow was supposed to be located in the [0x00007fff7000-0x10007fff7fff] range.
==18721==This might be related to ELF_ET_DYN_BASE change in Linux 4.12.
==18721==See https://github.com/google/sanitizers/issues/856 for possible workarounds.
==18721==Process memory map follows:
	0x00007fff7000-0x00008fff7000	
	0x00008fff7000-0x02008fff7000	
	0x02008fff7000-0x10007fff8000	
	0x55e81de80000-0x55e81de81000	/usr/local/RDsan/lib/R/bin/exec/R
	0x55e81de81000-0x55e81de82000	/usr/local/RDsan/lib/R/bin/exec/R
	0x55e81de82000-0x55e81de83000	/usr/local/RDsan/lib/R/bin/exec/R
	0x55e81de83000-0x55e81de84000	/usr/local/RDsan/lib/R/bin/exec/R
	0x55e81de84000-0x55e81de85000	/usr/local/RDsan/lib/R/bin/exec/R
	0x600000000000-0x602000000000	
	0x602000000000-0x602000030000	
	0x602000030000-0x602e00000000	
	0x602e00000000-0x602e00010000	
	0x602e00010000-0x603000000000	
	0x603000000000-0x603000020000	
	0x603000020000-0x603e00000000	
	0x603e00000000-0x603e00010000	
	0x603e00010000-0x604000000000	
	0x604000000000-0x604000010000	
	0x604000010000-0x604e00000000	
	0x604e00000000-0x604e00010000	
	0x604e00010000-0x606000000000	
	0x606000000000-0x606000020000	
	0x606000020000-0x606e00000000	
	0x606e00000000-0x606e00010000	
	0x606e00010000-0x607000000000	
	0x607000000000-0x607000010000	
	0x607000010000-0x607e00000000	
	0x607e00000000-0x607e00010000	
	0x607e00010000-0x608000000000	
	0x608000000000-0x608000010000	
	0x608000010000-0x608e00000000	
	0x608e00000000-0x608e00010000	
	0x608e00010000-0x60b000000000	
	0x60b000000000-0x60b000020000	
	0x60b000020000-0x60be00000000	
	0x60be00000000-0x60be00010000	
	0x60be00010000-0x60c000000000	
	0x60c000000000-0x60c000010000	
	0x60c000010000-0x60ce00000000	
	0x60ce00000000-0x60ce00010000	
	0x60ce00010000-0x60d000000000	
	0x60d000000000-0x60d000010000	
	0x60d000010000-0x60de00000000	
	0x60de00000000-0x60de00010000	
	0x60de00010000-0x60e000000000	
	0x60e000000000-0x60e000010000	
	0x60e000010000-0x60ee00000000	
	0x60ee00000000-0x60ee00010000	
	0x60ee00010000-0x60f000000000	
	0x60f000000000-0x60f000010000	
	0x60f000010000-0x60fe00000000	
	0x60fe00000000-0x60fe00010000	
	0x60fe00010000-0x610000000000	
	0x610000000000-0x610000030000	
	0x610000030000-0x610e00000000	
	0x610e00000000-0x610e00010000	
	0x610e00010000-0x611000000000	
	0x611000000000-0x6110000d0000	
	0x6110000d0000-0x611e00000000	
	0x611e00000000-0x611e00010000	
	0x611e00010000-0x612000000000	
	0x612000000000-0x612000150000	
	0x612000150000-0x612e00000000	
	0x612e00000000-0x612e00010000	
	0x612e00010000-0x613000000000	
	0x613000000000-0x613000070000	
	0x613000070000-0x613e00000000	
	0x613e00000000-0x613e00010000	
	0x613e00010000-0x614000000000	
	0x614000000000-0x6140003a0000	
	0x6140003a0000-0x614e00000000	
	0x614e00000000-0x614e00010000	
	0x614e00010000-0x615000000000	
	0x615000000000-0x615000070000	
	0x615000070000-0x615e00000000	
	0x615e00000000-0x615e00010000	
	0x615e00010000-0x616000000000	
	0x616000000000-0x6160000c0000	
	0x6160000c0000-0x616e00000000	
	0x616e00000000-0x616e00010000	
	0x616e00010000-0x617000000000	
	0x617000000000-0x617000070000	
	0x617000070000-0x617e00000000	
	0x617e00000000-0x617e00010000	
	0x617e00010000-0x618000000000	
	0x618000000000-0x618000060000	
	0x618000060000-0x618e00000000	
	0x618e00000000-0x618e00010000	
	0x618e00010000-0x619000000000	
	0x619000000000-0x619000300000	
	0x619000300000-0x619e00000000	
	0x619e00000000-0x619e00010000	
	0x619e00010000-0x61a000000000	
	0x61a000000000-0x61a0000a0000	
	0x61a0000a0000-0x61ae00000000	
	0x61ae00000000-0x61ae00010000	
	0x61ae00010000-0x61b000000000	
	0x61b000000000-0x61b0000a0000	
	0x61b0000a0000-0x61be00000000	
	0x61be00000000-0x61be00010000	
	0x61be00010000-0x61c000000000	
	0x61c000000000-0x61c0000c0000	
	0x61c0000c0000-0x61ce00000000	
	0x61ce00000000-0x61ce00010000	
	0x61ce00010000-0x61d000000000	
	0x61d000000000-0x61d000090000	
	0x61d000090000-0x61de00000000	
	0x61de00000000-0x61de00010000	
	0x61de00010000-0x61e000000000	
	0x61e000000000-0x61e000050000	
	0x61e000050000-0x61ee00000000	
	0x61ee00000000-0x61ee00010000	
	0x61ee00010000-0x61f000000000	
	0x61f000000000-0x61f0000a0000	
	0x61f0000a0000-0x61fe00000000	
	0x61fe00000000-0x61fe00010000	
	0x61fe00010000-0x620000000000	
	0x620000000000-0x620000080000	
	0x620000080000-0x620e00000000	
	0x620e00000000-0x620e00010000	
	0x620e00010000-0x621000000000	
	0x621000000000-0x6210002b0000	
	0x6210002b0000-0x621e00000000	
	0x621e00000000-0x621e00010000	
	0x621e00010000-0x622000000000	
	0x622000000000-0x6220000a0000	
	0x6220000a0000-0x622e00000000	
	0x622e00000000-0x622e00010000	
	0x622e00010000-0x623000000000	
	0x623000000000-0x6230000b0000	
	0x6230000b0000-0x623e00000000	
	0x623e00000000-0x623e00010000	
	0x623e00010000-0x624000000000	
	0x624000000000-0x624000a00000	
	0x624000a00000-0x624e00000000	
	0x624e00000000-0x624e00010000	
	0x624e00010000-0x625000000000	
	0x625000000000-0x625003640000	
	0x625003640000-0x625e00000000	
	0x625e00000000-0x625e00010000	
	0x625e00010000-0x626000000000	
	0x626000000000-0x626000090000	
	0x626000090000-0x626e00000000	
	0x626e00000000-0x626e00010000	
	0x626e00010000-0x627000000000	
	0x627000000000-0x6270000c0000	
	0x6270000c0000-0x627e00000000	
	0x627e00000000-0x627e00010000	
	0x627e00010000-0x628000000000	
	0x628000000000-0x628000040000	
	0x628000040000-0x628e00000000	
	0x628e00000000-0x628e00010000	
	0x628e00010000-0x629000000000	
	0x629000000000-0x629000230000	
	0x629000230000-0x629e00000000	
	0x629e00000000-0x629e00010000	
	0x629e00010000-0x62a000000000	
	0x62a000000000-0x62a000050000	
	0x62a000050000-0x62ae00000000	
	0x62ae00000000-0x62ae00010000	
	0x62ae00010000-0x62b000000000	
	0x62b000000000-0x62b0000b0000	
	0x62b0000b0000-0x62be00000000	
	0x62be00000000-0x62be00010000	
	0x62be00010000-0x62c000000000	
	0x62c000000000-0x62c000080000	
	0x62c000080000-0x62ce00000000	
	0x62ce00000000-0x62ce00010000	
	0x62ce00010000-0x62d000000000	
	0x62d000000000-0x62d000710000	
	0x62d000710000-0x62de00000000	
	0x62de00000000-0x62de00010000	
	0x62de00010000-0x62e000000000	
	0x62e000000000-0x62e000020000	
	0x62e000020000-0x62ee00000000	
	0x62ee00000000-0x62ee00010000	
	0x62ee00010000-0x62f000000000	
	0x62f000000000-0x62f000040000	
	0x62f000040000-0x62fe00000000	
	0x62fe00000000-0x62fe00010000	
	0x62fe00010000-0x630000000000	
	0x630000000000-0x630000060000	
	0x630000060000-0x630e00000000	
	0x630e00000000-0x630e00010000	
	0x630e00010000-0x631000000000	
	0x631000000000-0x631000090000	
	0x631000090000-0x631e00000000	
	0x631e00000000-0x631e00010000	
	0x631e00010000-0x632000000000	
	0x632000000000-0x632000060000	
	0x632000060000-0x632e00000000	
	0x632e00000000-0x632e00010000	
	0x632e00010000-0x633000000000	
	0x633000000000-0x633000070000	
	0x633000070000-0x633e00000000	
	0x633e00000000-0x633e00010000	
	0x633e00010000-0x634000000000	
	0x634000000000-0x634000020000	
	0x634000020000-0x634e00000000	
	0x634e00000000-0x634e00010000	
	0x634e00010000-0x640000000000	
	0x640000000000-0x640000002000	
	0x7fc891659000-0x7fc8919db000	
	0x7fc8919db000-0x7fc891a0a000	/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
	0x7fc891a0a000-0x7fc891b5d000	/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
	0x7fc891b5d000-0x7fc891bb1000	/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
	0x7fc891bb1000-0x7fc891bb2000	/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
	0x7fc891bb2000-0x7fc891bbb000	/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
	0x7fc891bbb000-0x7fc891bbc000	/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
	0x7fc891bbc000-0x7fc891bbd000	
	0x7fc891bbd000-0x7fc891be1000	/usr/lib/x86_64-linux-gnu/libasan.so.6.0.0
	0x7fc891be1000-0x7fc891cb8000	/usr/lib/x86_64-linux-gnu/libasan.so.6.0.0
	0x7fc891cb8000-0x7fc891cea000	/usr/lib/x86_64-linux-gnu/libasan.so.6.0.0
	0x7fc891cea000-0x7fc891ceb000	/usr/lib/x86_64-linux-gnu/libasan.so.6.0.0
	0x7fc891ceb000-0x7fc891cef000	/usr/lib/x86_64-linux-gnu/libasan.so.6.0.0
	0x7fc891cef000-0x7fc891cf2000	/usr/lib/x86_64-linux-gnu/libasan.so.6.0.0
	0x7fc891cf2000-0x7fc8925a6000	
	0x7fc8925a6000-0x7fc892bf2000	/usr/local/RDsan/lib/R/site-library/00LOCK-rigraph/00new/igraph/libs/igraph.so
	0x7fc892bf2000-0x7fc8933e3000	/usr/local/RDsan/lib/R/site-library/00LOCK-rigraph/00new/igraph/libs/igraph.so
	0x7fc8933e3000-0x7fc89360a000	/usr/local/RDsan/lib/R/site-library/00LOCK-rigraph/00new/igraph/libs/igraph.so
	0x7fc89360a000-0x7fc89360b000	/usr/local/RDsan/lib/R/site-library/00LOCK-rigraph/00new/igraph/libs/igraph.so
	0x7fc89360b000-0x7fc893610000	/usr/local/RDsan/lib/R/site-library/00LOCK-rigraph/00new/igraph/libs/igraph.so
	0x7fc893610000-0x7fc893cfa000	/usr/local/RDsan/lib/R/site-library/00LOCK-rigraph/00new/igraph/libs/igraph.so
	0x7fc893cfa000-0x7fc893ea9000	
	0x7fc893ea9000-0x7fc893eaa000	
	0x7fc893eaa000-0x7fc89beb8000	
	0x7fc89beb8000-0x7fc89bebc000	/usr/local/RDsan/lib/R/site-library/cli/libs/cli.so
	0x7fc89bebc000-0x7fc89becf000	/usr/local/RDsan/lib/R/site-library/cli/libs/cli.so
	0x7fc89becf000-0x7fc89bee4000	/usr/local/RDsan/lib/R/site-library/cli/libs/cli.so
	0x7fc89bee4000-0x7fc89bee5000	/usr/local/RDsan/lib/R/site-library/cli/libs/cli.so
	0x7fc89bee5000-0x7fc89bee7000	/usr/local/RDsan/lib/R/site-library/cli/libs/cli.so
	0x7fc89bee7000-0x7fc89bf9e000	
	0x7fc89bf9e000-0x7fc89bfa5000	/usr/local/RDsan/lib/R/site-library/rlang/libs/rlang.so
	0x7fc89bfa5000-0x7fc89bfcf000	/usr/local/RDsan/lib/R/site-library/rlang/libs/rlang.so
	0x7fc89bfcf000-0x7fc89bfe0000	/usr/local/RDsan/lib/R/site-library/rlang/libs/rlang.so
	0x7fc89bfe0000-0x7fc89bfe2000	/usr/local/RDsan/lib/R/site-library/rlang/libs/rlang.so
	0x7fc89bfe2000-0x7fc89bfe3000	/usr/local/RDsan/lib/R/site-library/rlang/libs/rlang.so
	0x7fc89bfe3000-0x7fc89c0ab000	
	0x7fc89c0ab000-0x7fc89c0b8000	/usr/local/RDsan/lib/R/library/tools/libs/tools.so
	0x7fc89c0b8000-0x7fc89c0db000	/usr/local/RDsan/lib/R/library/tools/libs/tools.so
	0x7fc89c0db000-0x7fc89c0e6000	/usr/local/RDsan/lib/R/library/tools/libs/tools.so
	0x7fc89c0e6000-0x7fc89c0e7000	/usr/local/RDsan/lib/R/library/tools/libs/tools.so
	0x7fc89c0e7000-0x7fc89c0e8000	/usr/local/RDsan/lib/R/library/tools/libs/tools.so
	0x7fc89c0e8000-0x7fc89c0f0000	/usr/local/RDsan/lib/R/library/tools/libs/tools.so
	0x7fc89c0f0000-0x7fc89c32e000	
	0x7fc89c32e000-0x7fc89c331000	/usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
	0x7fc89c331000-0x7fc89c35d000	/usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
	0x7fc89c35d000-0x7fc89c374000	/usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
	0x7fc89c374000-0x7fc89c375000	/usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
	0x7fc89c375000-0x7fc89c376000	/usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
	0x7fc89c376000-0x7fc89c393000	/usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0
	0x7fc89c393000-0x7fc89c61c000	/usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0
	0x7fc89c61c000-0x7fc89c64e000	/usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0
	0x7fc89c64e000-0x7fc89c64f000	/usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0
	0x7fc89c64f000-0x7fc89c651000	/usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0
	0x7fc89c651000-0x7fc89c656000	/usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0
	0x7fc89c656000-0x7fc89c6ed000	/usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0
	0x7fc89c6ed000-0x7fc89c6f4000	/usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0
	0x7fc89c6f4000-0x7fc89c6f5000	/usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0
	0x7fc89c6f5000-0x7fc89c6f6000	/usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0
	0x7fc89c6f6000-0x7fc89c6f7000	/usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0
	0x7fc89c6f7000-0x7fc89c716000	/usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
	0x7fc89c716000-0x7fc89cd87000	/usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
	0x7fc89cd87000-0x7fc89ce2a000	/usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
	0x7fc89ce2a000-0x7fc89ce2e000	/usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
	0x7fc89ce2e000-0x7fc89ce30000	/usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
	0x7fc89ce30000-0x7fc89ce4e000	/usr/local/RDsan/lib/R/library/stats/libs/stats.so
	0x7fc89ce4e000-0x7fc89cf44000	/usr/local/RDsan/lib/R/library/stats/libs/stats.so
	0x7fc89cf44000-0x7fc89cf61000	/usr/local/RDsan/lib/R/library/stats/libs/stats.so
	0x7fc89cf61000-0x7fc89cf62000	/usr/local/RDsan/lib/R/library/stats/libs/stats.so
	0x7fc89cf62000-0x7fc89cf64000	/usr/local/RDsan/lib/R/library/stats/libs/stats.so
	0x7fc89cf64000-0x7fc89cf75000	/usr/local/RDsan/lib/R/library/stats/libs/stats.so
	0x7fc89cf75000-0x7fc89d120000	
	0x7fc89d120000-0x7fc89d12d000	/usr/local/RDsan/lib/R/library/graphics/libs/graphics.so
	0x7fc89d12d000-0x7fc89d1ae000	/usr/local/RDsan/lib/R/library/graphics/libs/graphics.so
	0x7fc89d1ae000-0x7fc89d1bb000	/usr/local/RDsan/lib/R/library/graphics/libs/graphics.so
	0x7fc89d1bb000-0x7fc89d1bc000	/usr/local/RDsan/lib/R/library/graphics/libs/graphics.so
	0x7fc89d1bc000-0x7fc89d1c4000	/usr/local/RDsan/lib/R/library/graphics/libs/graphics.so
	0x7fc89d1c4000-0x7fc89d219000	
	0x7fc89d219000-0x7fc89d24c000	/usr/local/RDsan/lib/R/library/grDevices/libs/grDevices.so
	0x7fc89d24c000-0x7fc89d2ad000	/usr/local/RDsan/lib/R/library/grDevices/libs/grDevices.so
	0x7fc89d2ad000-0x7fc89d2db000	/usr/local/RDsan/lib/R/library/grDevices/libs/grDevices.so
	0x7fc89d2db000-0x7fc89d2dc000	/usr/local/RDsan/lib/R/library/grDevices/libs/grDevices.so
	0x7fc89d2dc000-0x7fc89d2dd000	/usr/local/RDsan/lib/R/library/grDevices/libs/grDevices.so
	0x7fc89d2dd000-0x7fc89d303000	/usr/local/RDsan/lib/R/library/grDevices/libs/grDevices.so
	0x7fc89d303000-0x7fc89d368000	
	0x7fc89d368000-0x7fc89d36e000	/usr/local/RDsan/lib/R/library/utils/libs/utils.so
	0x7fc89d36e000-0x7fc89d37d000	/usr/local/RDsan/lib/R/library/utils/libs/utils.so
	0x7fc89d37d000-0x7fc89d381000	/usr/local/RDsan/lib/R/library/utils/libs/utils.so
	0x7fc89d381000-0x7fc89d382000	/usr/local/RDsan/lib/R/library/utils/libs/utils.so
	0x7fc89d382000-0x7fc89d385000	/usr/local/RDsan/lib/R/library/utils/libs/utils.so
	0x7fc89d385000-0x7fc89d487000	
	0x7fc89d487000-0x7fc89d48b000	/usr/local/RDsan/lib/R/library/parallel/libs/parallel.so
	0x7fc89d48b000-0x7fc89d494000	/usr/local/RDsan/lib/R/library/parallel/libs/parallel.so
	0x7fc89d494000-0x7fc89d496000	/usr/local/RDsan/lib/R/library/parallel/libs/parallel.so
	0x7fc89d496000-0x7fc89d497000	/usr/local/RDsan/lib/R/library/parallel/libs/parallel.so
	0x7fc89d497000-0x7fc89d498000	/usr/local/RDsan/lib/R/library/parallel/libs/parallel.so
	0x7fc89d498000-0x7fc89d49a000	/usr/local/RDsan/lib/R/library/parallel/libs/parallel.so
	0x7fc89d49a000-0x7fc89df17000	
	0x7fc89df17000-0x7fc89e200000	/usr/lib/locale/locale-archive
	0x7fc89e200000-0x7fc89e220000	
	0x7fc89e220000-0x7fc89ea00000	
	0x7fc89ea00000-0x7fc89eb02000	
	0x7fc89eb02000-0x7fc89eb14000	
	0x7fc89eb14000-0x7fc89eb1a000	/usr/local/RDsan/lib/R/library/methods/libs/methods.so
	0x7fc89eb1a000-0x7fc89eb21000	/usr/local/RDsan/lib/R/library/methods/libs/methods.so
	0x7fc89eb21000-0x7fc89eb25000	/usr/local/RDsan/lib/R/library/methods/libs/methods.so
	0x7fc89eb25000-0x7fc89eb26000	/usr/local/RDsan/lib/R/library/methods/libs/methods.so
	0x7fc89eb26000-0x7fc89eb29000	/usr/local/RDsan/lib/R/library/methods/libs/methods.so
	0x7fc89eb29000-0x7fc89ed01000	
	0x7fc89ed01000-0x7fc89ed03000	
	0x7fc89ed03000-0x7fc89ed05000	/usr/local/RDsan/lib/R/site-library/magrittr/libs/magrittr.so
	0x7fc89ed05000-0x7fc89ed07000	/usr/local/RDsan/lib/R/site-library/magrittr/libs/magrittr.so
	0x7fc89ed07000-0x7fc89ed08000	/usr/local/RDsan/lib/R/site-library/magrittr/libs/magrittr.so
	0x7fc89ed08000-0x7fc89ed09000	/usr/local/RDsan/lib/R/site-library/magrittr/libs/magrittr.so
	0x7fc89ed09000-0x7fc89ed0a000	/usr/local/RDsan/lib/R/site-library/magrittr/libs/magrittr.so
	0x7fc89ed0a000-0x7fc89f301000	
	0x7fc89f301000-0x7fc89f329000	
	0x7fc89f329000-0x7fc89f330000	/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
	0x7fc89f330000-0x7fc89f331000	/usr/local/RDsan/lib/R/library/translations/en/LC_MESSAGES/R.mo
	0x7fc89f331000-0x7fc89f731000	
	0x7fc89f731000-0x7fc89f732000	/usr/lib/x86_64-linux-gnu/libicudata.so.70.1
	0x7fc89f732000-0x7fc89f733000	/usr/lib/x86_64-linux-gnu/libicudata.so.70.1
	0x7fc89f733000-0x7fc8a134d000	/usr/lib/x86_64-linux-gnu/libicudata.so.70.1
	0x7fc8a134d000-0x7fc8a134e000	/usr/lib/x86_64-linux-gnu/libicudata.so.70.1
	0x7fc8a134e000-0x7fc8a134f000	/usr/lib/x86_64-linux-gnu/libicudata.so.70.1
	0x7fc8a134f000-0x7fc8a135d000	/usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
	0x7fc8a135d000-0x7fc8a136e000	/usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
	0x7fc8a136e000-0x7fc8a137c000	/usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
	0x7fc8a137c000-0x7fc8a1380000	/usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
	0x7fc8a1380000-0x7fc8a1381000	/usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
	0x7fc8a1381000-0x7fc8a1383000	
	0x7fc8a1383000-0x7fc8a141d000	/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
	0x7fc8a141d000-0x7fc8a152d000	/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
	0x7fc8a152d000-0x7fc8a159c000	/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
	0x7fc8a159c000-0x7fc8a15a7000	/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
	0x7fc8a15a7000-0x7fc8a15aa000	/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
	0x7fc8a15aa000-0x7fc8a15ad000	
	0x7fc8a15ad000-0x7fc8a1694000	/usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
	0x7fc8a1694000-0x7fc8a1837000	/usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
	0x7fc8a1837000-0x7fc8a18c9000	/usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
	0x7fc8a18c9000-0x7fc8a18da000	/usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
	0x7fc8a18da000-0x7fc8a18db000	/usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
	0x7fc8a18db000-0x7fc8a18dc000	
	0x7fc8a18dc000-0x7fc8a1942000	/usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
	0x7fc8a1942000-0x7fc8a1a35000	/usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
	0x7fc8a1a35000-0x7fc8a1ac1000	/usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
	0x7fc8a1ac1000-0x7fc8a1ad4000	/usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
	0x7fc8a1ad4000-0x7fc8a1ad5000	/usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
	0x7fc8a1ad5000-0x7fc8a1ad7000	
	0x7fc8a1ad7000-0x7fc8a1ad9000	/usr/lib/x86_64-linux-gnu/libz.so.1.2.11
	0x7fc8a1ad9000-0x7fc8a1aea000	/usr/lib/x86_64-linux-gnu/libz.so.1.2.11
	0x7fc8a1aea000-0x7fc8a1af0000	/usr/lib/x86_64-linux-gnu/libz.so.1.2.11
	0x7fc8a1af0000-0x7fc8a1af1000	/usr/lib/x86_64-linux-gnu/libz.so.1.2.11
	0x7fc8a1af1000-0x7fc8a1af2000	/usr/lib/x86_64-linux-gnu/libz.so.1.2.11
	0x7fc8a1af2000-0x7fc8a1af3000	/usr/lib/x86_64-linux-gnu/libz.so.1.2.11
	0x7fc8a1af3000-0x7fc8a1af5000	/usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
	0x7fc8a1af5000-0x7fc8a1b02000	/usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
	0x7fc8a1b02000-0x7fc8a1b04000	/usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
	0x7fc8a1b04000-0x7fc8a1b05000	/usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
	0x7fc8a1b05000-0x7fc8a1b06000	/usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
	0x7fc8a1b06000-0x7fc8a1b08000	
	0x7fc8a1b08000-0x7fc8a1b0b000	/usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
	0x7fc8a1b0b000-0x7fc8a1b26000	/usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
	0x7fc8a1b26000-0x7fc8a1b31000	/usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
	0x7fc8a1b31000-0x7fc8a1b32000	/usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
	0x7fc8a1b32000-0x7fc8a1b33000	/usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
	0x7fc8a1b33000-0x7fc8a1b35000	/usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
	0x7fc8a1b35000-0x7fc8a1ba0000	/usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
	0x7fc8a1ba0000-0x7fc8a1bc8000	/usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
	0x7fc8a1bc8000-0x7fc8a1bc9000	/usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
	0x7fc8a1bc9000-0x7fc8a1bca000	/usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
	0x7fc8a1bca000-0x7fc8a1bde000	/usr/lib/x86_64-linux-gnu/libreadline.so.8.1
	0x7fc8a1bde000-0x7fc8a1c0a000	/usr/lib/x86_64-linux-gnu/libreadline.so.8.1
	0x7fc8a1c0a000-0x7fc8a1c14000	/usr/lib/x86_64-linux-gnu/libreadline.so.8.1
	0x7fc8a1c14000-0x7fc8a1c15000	/usr/lib/x86_64-linux-gnu/libreadline.so.8.1
	0x7fc8a1c15000-0x7fc8a1c17000	/usr/lib/x86_64-linux-gnu/libreadline.so.8.1
	0x7fc8a1c17000-0x7fc8a1c1d000	/usr/lib/x86_64-linux-gnu/libreadline.so.8.1
	0x7fc8a1c1d000-0x7fc8a1c1e000	
	0x7fc8a1c1e000-0x7fc8a1c21000	/usr/lib/x86_64-linux-gnu/libgcc_s.so.1
	0x7fc8a1c21000-0x7fc8a1c38000	/usr/lib/x86_64-linux-gnu/libgcc_s.so.1
	0x7fc8a1c38000-0x7fc8a1c3c000	/usr/lib/x86_64-linux-gnu/libgcc_s.so.1
	0x7fc8a1c3c000-0x7fc8a1c3d000	/usr/lib/x86_64-linux-gnu/libgcc_s.so.1
	0x7fc8a1c3d000-0x7fc8a1c3e000	/usr/lib/x86_64-linux-gnu/libgcc_s.so.1
	0x7fc8a1c3e000-0x7fc8a1c4c000	/usr/lib/x86_64-linux-gnu/libm.so.6
	0x7fc8a1c4c000-0x7fc8a1cc8000	/usr/lib/x86_64-linux-gnu/libm.so.6
	0x7fc8a1cc8000-0x7fc8a1d23000	/usr/lib/x86_64-linux-gnu/libm.so.6
	0x7fc8a1d23000-0x7fc8a1d24000	/usr/lib/x86_64-linux-gnu/libm.so.6
	0x7fc8a1d24000-0x7fc8a1d25000	/usr/lib/x86_64-linux-gnu/libm.so.6
	0x7fc8a1d25000-0x7fc8a1d4d000	/usr/lib/x86_64-linux-gnu/libc.so.6
	0x7fc8a1d4d000-0x7fc8a1ee2000	/usr/lib/x86_64-linux-gnu/libc.so.6
	0x7fc8a1ee2000-0x7fc8a1f3a000	/usr/lib/x86_64-linux-gnu/libc.so.6
	0x7fc8a1f3a000-0x7fc8a1f3e000	/usr/lib/x86_64-linux-gnu/libc.so.6
	0x7fc8a1f3e000-0x7fc8a1f40000	/usr/lib/x86_64-linux-gnu/libc.so.6
	0x7fc8a1f40000-0x7fc8a1f4f000	
	0x7fc8a1f4f000-0x7fc8a1f56000	/usr/lib/x86_64-linux-gnu/libubsan.so.1.0.0
	0x7fc8a1f56000-0x7fc8a1f96000	/usr/lib/x86_64-linux-gnu/libubsan.so.1.0.0
	0x7fc8a1f96000-0x7fc8a1fad000	/usr/lib/x86_64-linux-gnu/libubsan.so.1.0.0
	0x7fc8a1fad000-0x7fc8a1faf000	/usr/lib/x86_64-linux-gnu/libubsan.so.1.0.0
	0x7fc8a1faf000-0x7fc8a1fb2000	/usr/lib/x86_64-linux-gnu/libubsan.so.1.0.0
	0x7fc8a1fb2000-0x7fc8a2584000	
	0x7fc8a2584000-0x7fc8a2585000	/usr/local/RDsan/lib/R/lib/libRblas.so
	0x7fc8a2585000-0x7fc8a25c3000	/usr/local/RDsan/lib/R/lib/libRblas.so
	0x7fc8a25c3000-0x7fc8a25c5000	/usr/local/RDsan/lib/R/lib/libRblas.so
	0x7fc8a25c5000-0x7fc8a25c6000	/usr/local/RDsan/lib/R/lib/libRblas.so
	0x7fc8a25c6000-0x7fc8a25c7000	/usr/local/RDsan/lib/R/lib/libRblas.so
	0x7fc8a25c7000-0x7fc8a270a000	/usr/local/RDsan/lib/R/lib/libR.so
	0x7fc8a270a000-0x7fc8a2be2000	/usr/local/RDsan/lib/R/lib/libR.so
	0x7fc8a2be2000-0x7fc8a2d18000	/usr/local/RDsan/lib/R/lib/libR.so
	0x7fc8a2d18000-0x7fc8a2d35000	/usr/local/RDsan/lib/R/lib/libR.so
	0x7fc8a2d35000-0x7fc8a2dfc000	/usr/local/RDsan/lib/R/lib/libR.so
	0x7fc8a2dfc000-0x7fc8a2f0b000	
	0x7fc8a2f0b000-0x7fc8a2f2f000	/usr/lib/x86_64-linux-gnu/libasan.so.8.0.0
	0x7fc8a2f2f000-0x7fc8a3016000	/usr/lib/x86_64-linux-gnu/libasan.so.8.0.0
	0x7fc8a3016000-0x7fc8a3049000	/usr/lib/x86_64-linux-gnu/libasan.so.8.0.0
	0x7fc8a3049000-0x7fc8a304a000	/usr/lib/x86_64-linux-gnu/libasan.so.8.0.0
	0x7fc8a304a000-0x7fc8a304e000	/usr/lib/x86_64-linux-gnu/libasan.so.8.0.0
	0x7fc8a304e000-0x7fc8a3051000	/usr/lib/x86_64-linux-gnu/libasan.so.8.0.0
	0x7fc8a3051000-0x7fc8a35b7000	
	0x7fc8a35b7000-0x7fc8a35b9000	/usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
	0x7fc8a35b9000-0x7fc8a35e3000	/usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
	0x7fc8a35e3000-0x7fc8a35ee000	/usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
	0x7fc8a35ee000-0x7fc8a35ef000	
	0x7fc8a35ef000-0x7fc8a35f1000	/usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
	0x7fc8a35f1000-0x7fc8a35f3000	/usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
	0x7ffd19403000-0x7ffd194f6000	[stack]
	0x7ffd19539000-0x7ffd1953d000	[vvar]
	0x7ffd1953d000-0x7ffd1953f000	[vdso]
==18721==End of process memory map.

@krlmlr
Copy link
Contributor

krlmlr commented May 29, 2023

Thanks, great. RDcsan too, please.

@szhorvat: We can compare that with your output to see where our compilation instructions differ.

@Antonov548
Copy link
Contributor Author

Antonov548 commented May 29, 2023

Thanks, great. RDcsan too, please.

For gcc it's also pointing to this issue: google/sanitizers#856

Here is for RDcsan
checking for gcc... clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer accepts -g... yes
checking for clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer option to enable C11 features... none needed
checking whether the compiler supports GNU C++... yes
checking whether clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++11 accepts -g... yes
checking for clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++11 option to enable C++11 features... none needed
checking whether the compiler supports GNU Fortran... yes
checking whether gfortran accepts -g... yes
checking for expm1... yes
checking for fmin... yes
checking for finite... yes
checking for log2... yes
checking for log1p... yes
checking for rint... yes
checking for rintf... yes
checking for round... yes
checking for stpcpy... yes
checking for strcasecmp... yes
checking for _stricmp... no
checking for strdup... yes
checking for isfinite... no
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for sys/times.h... yes
checking for net/if.h... yes
checking for netinet/in.h... yes
checking for net/if_dl.h... no
checking for sys/sockio.h... no
checking for sys/un.h... yes
checking for sys/socket.h... yes
checking for sys/ioctl.h... yes
checking for sys/time.h... yes
checking for sys/file.h... yes
checking for struct sockaddr.sa_len... no
checking for xml2-config... /usr/bin/xml2-config
checking for xmlSAXUserParseFile in -lxml2... yes
checking for libxml/parser.h... yes
checking for __gmpz_add in -lgmp... no
checking how to run the C++ preprocessor... clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++11 -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for glp_read_mps in -lglpk... no
configure: creating ./config.status
config.status: creating src/Makevars.tmp
config.status: creating src/Makevars
config.status: creating src/config.h

*** Compiler settings used:
    CC=clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer
    LD=
    CFLAGS=-g -O0 -Wall -pedantic
    CPPFLAGS=-I/usr/local/include
    CXX=clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++11
    CXXFLAGS=-g -O0 -Wall -pedantic
    LDFLAGS=-L/usr/local/lib
    LIBS=
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/betweenness.c -o core/centrality/betweenness.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/centrality_other.c -o core/centrality/centrality_other.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/centralization.c -o core/centrality/centralization.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/closeness.c -o core/centrality/closeness.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/coreness.c -o core/centrality/coreness.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/prpack.cpp -o core/centrality/prpack.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/prpack/prpack_base_graph.cpp -o core/centrality/prpack/prpack_base_graph.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/prpack/prpack_igraph_graph.cpp -o core/centrality/prpack/prpack_igraph_graph.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/prpack/prpack_preprocessed_ge_graph.cpp -o core/centrality/prpack/prpack_preprocessed_ge_graph.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/prpack/prpack_preprocessed_gs_graph.cpp -o core/centrality/prpack/prpack_preprocessed_gs_graph.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/prpack/prpack_preprocessed_scc_graph.cpp -o core/centrality/prpack/prpack_preprocessed_scc_graph.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/prpack/prpack_preprocessed_schur_graph.cpp -o core/centrality/prpack/prpack_preprocessed_schur_graph.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/prpack/prpack_result.cpp -o core/centrality/prpack/prpack_result.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/prpack/prpack_solver.cpp -o core/centrality/prpack/prpack_solver.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/centrality/prpack/prpack_utils.cpp -o core/centrality/prpack/prpack_utils.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/cliques/cliquer/cliquer.c -o core/cliques/cliquer/cliquer.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/cliques/cliquer/cliquer_graph.c -o core/cliques/cliquer/cliquer_graph.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/cliques/cliquer/reorder.c -o core/cliques/cliquer/reorder.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/cliques/cliquer_wrapper.c -o core/cliques/cliquer_wrapper.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/cliques/cliques.c -o core/cliques/cliques.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/cliques/glet.c -o core/cliques/glet.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/cliques/maximal_cliques.c -o core/cliques/maximal_cliques.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/community_misc.c -o core/community/community_misc.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/edge_betweenness.c -o core/community/edge_betweenness.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/fast_modularity.c -o core/community/fast_modularity.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/fluid.c -o core/community/fluid.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/infomap/infomap.cc -o core/community/infomap/infomap.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/infomap/infomap_FlowGraph.cc -o core/community/infomap/infomap_FlowGraph.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/infomap/infomap_Greedy.cc -o core/community/infomap/infomap_Greedy.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/infomap/infomap_Node.cc -o core/community/infomap/infomap_Node.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/label_propagation.c -o core/community/label_propagation.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/leading_eigenvector.c -o core/community/leading_eigenvector.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/leiden.c -o core/community/leiden.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/louvain.c -o core/community/louvain.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/modularity.c -o core/community/modularity.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/optimal_modularity.c -o core/community/optimal_modularity.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/spinglass/NetDataTypes.cpp -o core/community/spinglass/NetDataTypes.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/spinglass/NetRoutines.cpp -o core/community/spinglass/NetRoutines.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/spinglass/clustertool.cpp -o core/community/spinglass/clustertool.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/spinglass/pottsmodel_2.cpp -o core/community/spinglass/pottsmodel_2.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/walktrap/walktrap.cpp -o core/community/walktrap/walktrap.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/walktrap/walktrap_communities.cpp -o core/community/walktrap/walktrap_communities.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/walktrap/walktrap_graph.cpp -o core/community/walktrap/walktrap_graph.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/community/walktrap/walktrap_heap.cpp -o core/community/walktrap/walktrap_heap.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/connectivity/cohesive_blocks.c -o core/connectivity/cohesive_blocks.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/connectivity/components.c -o core/connectivity/components.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/connectivity/separators.c -o core/connectivity/separators.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/constructors/adjacency.c -o core/constructors/adjacency.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/constructors/atlas.c -o core/constructors/atlas.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/constructors/basic_constructors.c -o core/constructors/basic_constructors.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/constructors/de_bruijn.c -o core/constructors/de_bruijn.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/constructors/famous.c -o core/constructors/famous.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/constructors/full.c -o core/constructors/full.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/constructors/kautz.c -o core/constructors/kautz.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/constructors/lcf.c -o core/constructors/lcf.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/constructors/linegraph.c -o core/constructors/linegraph.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/constructors/prufer.c -o core/constructors/prufer.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/constructors/regular.c -o core/constructors/regular.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/array.c -o core/core/array.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/buckets.c -o core/core/buckets.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/cutheap.c -o core/core/cutheap.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/dqueue.c -o core/core/dqueue.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/error.c -o core/core/error.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/estack.c -o core/core/estack.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/fixed_vectorlist.c -o core/core/fixed_vectorlist.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/grid.c -o core/core/grid.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/heap.c -o core/core/heap.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/indheap.c -o core/core/indheap.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/interruption.c -o core/core/interruption.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/marked_queue.c -o core/core/marked_queue.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/matrix.c -o core/core/matrix.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/memory.c -o core/core/memory.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/printing.c -o core/core/printing.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/progress.c -o core/core/progress.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/psumtree.c -o core/core/psumtree.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/set.c -o core/core/set.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/sparsemat.c -o core/core/sparsemat.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/spmatrix.c -o core/core/spmatrix.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/stack.c -o core/core/stack.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/statusbar.c -o core/core/statusbar.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/strvector.c -o core/core/strvector.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/trie.c -o core/core/trie.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/vector.c -o core/core/vector.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/core/vector_ptr.c -o core/core/vector_ptr.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/flow/flow.c -o core/flow/flow.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/flow/st-cuts.c -o core/flow/st-cuts.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/barabasi.c -o core/games/barabasi.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/callaway_traits.c -o core/games/callaway_traits.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/citations.c -o core/games/citations.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/correlated.c -o core/games/correlated.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/degree_sequence.c -o core/games/degree_sequence.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/degree_sequence_vl/gengraph_box_list.cpp -o core/games/degree_sequence_vl/gengraph_box_list.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/degree_sequence_vl/gengraph_degree_sequence.cpp -o core/games/degree_sequence_vl/gengraph_degree_sequence.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/degree_sequence_vl/gengraph_graph_molloy_hash.cpp -o core/games/degree_sequence_vl/gengraph_graph_molloy_hash.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/degree_sequence_vl/gengraph_graph_molloy_optimized.cpp -o core/games/degree_sequence_vl/gengraph_graph_molloy_optimized.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/degree_sequence_vl/gengraph_mr-connected.cpp -o core/games/degree_sequence_vl/gengraph_mr-connected.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/degree_sequence_vl/gengraph_powerlaw.cpp -o core/games/degree_sequence_vl/gengraph_powerlaw.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/degree_sequence_vl/gengraph_random.cpp -o core/games/degree_sequence_vl/gengraph_random.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/dotproduct.c -o core/games/dotproduct.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/erdos_renyi.c -o core/games/erdos_renyi.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/establishment.c -o core/games/establishment.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/forestfire.c -o core/games/forestfire.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/grg.c -o core/games/grg.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/growing_random.c -o core/games/growing_random.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/islands.c -o core/games/islands.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/k_regular.c -o core/games/k_regular.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/preference.c -o core/games/preference.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/recent_degree.c -o core/games/recent_degree.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/sbm.c -o core/games/sbm.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/static_fitness.c -o core/games/static_fitness.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/tree.c -o core/games/tree.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/games/watts_strogatz.c -o core/games/watts_strogatz.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/graph/adjlist.c -o core/graph/adjlist.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/graph/attributes.c -o core/graph/attributes.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/graph/basic_query.c -o core/graph/basic_query.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/graph/cattributes.c -o core/graph/cattributes.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/graph/iterators.c -o core/graph/iterators.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/graph/type_indexededgelist.c -o core/graph/type_indexededgelist.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/graph/visitors.c -o core/graph/visitors.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/hrg/hrg.cc -o core/hrg/hrg.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/hrg/hrg_types.cc -o core/hrg/hrg_types.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/internal/glpk_support.c -o core/internal/glpk_support.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/internal/hacks.c -o core/internal/hacks.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/internal/lsap.c -o core/internal/lsap.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/internal/qsort.c -o core/internal/qsort.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/internal/qsort_r.c -o core/internal/qsort_r.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/internal/zeroin.c -o core/internal/zeroin.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/dimacs.c -o core/io/dimacs.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/dl-lexer.c -o core/io/dl-lexer.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/dl-parser.c -o core/io/dl-parser.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/dl.c -o core/io/dl.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/dot.c -o core/io/dot.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/edgelist.c -o core/io/edgelist.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/gml-lexer.c -o core/io/gml-lexer.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/gml-parser.c -o core/io/gml-parser.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/gml-tree.c -o core/io/gml-tree.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/gml.c -o core/io/gml.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/graphdb.c -o core/io/graphdb.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/graphml.c -o core/io/graphml.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/leda.c -o core/io/leda.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/lgl-lexer.c -o core/io/lgl-lexer.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/lgl-parser.c -o core/io/lgl-parser.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/lgl.c -o core/io/lgl.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/ncol-lexer.c -o core/io/ncol-lexer.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/ncol-parser.c -o core/io/ncol-parser.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/ncol.c -o core/io/ncol.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/pajek-lexer.c -o core/io/pajek-lexer.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/pajek-parser.c -o core/io/pajek-parser.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/io/pajek.c -o core/io/pajek.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/isomorphism/bliss.cc -o core/isomorphism/bliss.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/isomorphism/bliss/defs.cc -o core/isomorphism/bliss/defs.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/isomorphism/bliss/graph.cc -o core/isomorphism/bliss/graph.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/isomorphism/bliss/heap.cc -o core/isomorphism/bliss/heap.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/isomorphism/bliss/orbit.cc -o core/isomorphism/bliss/orbit.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/isomorphism/bliss/partition.cc -o core/isomorphism/bliss/partition.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/isomorphism/bliss/uintseqhash.cc -o core/isomorphism/bliss/uintseqhash.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/isomorphism/bliss/utils.cc -o core/isomorphism/bliss/utils.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/isomorphism/isoclasses.c -o core/isomorphism/isoclasses.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/isomorphism/isomorphism_misc.c -o core/isomorphism/isomorphism_misc.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/isomorphism/lad.c -o core/isomorphism/lad.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/isomorphism/queries.c -o core/isomorphism/queries.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/isomorphism/vf2.c -o core/isomorphism/vf2.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/circular.c -o core/layout/circular.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/davidson_harel.c -o core/layout/davidson_harel.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/drl/DensityGrid.cpp -o core/layout/drl/DensityGrid.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/drl/DensityGrid_3d.cpp -o core/layout/drl/DensityGrid_3d.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/drl/drl_graph.cpp -o core/layout/drl/drl_graph.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/drl/drl_graph_3d.cpp -o core/layout/drl/drl_graph_3d.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/drl/drl_layout.cpp -o core/layout/drl/drl_layout.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/drl/drl_layout_3d.cpp -o core/layout/drl/drl_layout_3d.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/drl/drl_parse.cpp -o core/layout/drl/drl_parse.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/fruchterman_reingold.c -o core/layout/fruchterman_reingold.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/gem.c -o core/layout/gem.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/graphopt.c -o core/layout/graphopt.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/kamada_kawai.c -o core/layout/kamada_kawai.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/large_graph.c -o core/layout/large_graph.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/layout_bipartite.c -o core/layout/layout_bipartite.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/layout_grid.c -o core/layout/layout_grid.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/layout_random.c -o core/layout/layout_random.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/mds.c -o core/layout/mds.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/merge_dla.c -o core/layout/merge_dla.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/merge_grid.c -o core/layout/merge_grid.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/reingold_tilford.c -o core/layout/reingold_tilford.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/layout/sugiyama.c -o core/layout/sugiyama.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/linalg/arpack.c -o core/linalg/arpack.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/linalg/blas.c -o core/linalg/blas.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/linalg/eigen.c -o core/linalg/eigen.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/linalg/lapack.c -o core/linalg/lapack.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/math/bfgs.c -o core/math/bfgs.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/math/complex.c -o core/math/complex.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/math/utils.c -o core/math/utils.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/bipartite.c -o core/misc/bipartite.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/chordality.c -o core/misc/chordality.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/cocitation.c -o core/misc/cocitation.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/coloring.c -o core/misc/coloring.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/conversion.c -o core/misc/conversion.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/degree_sequence.cpp -o core/misc/degree_sequence.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/embedding.c -o core/misc/embedding.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/feedback_arc_set.c -o core/misc/feedback_arc_set.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/graphicality.c -o core/misc/graphicality.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/matching.c -o core/misc/matching.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/microscopic_update.c -o core/misc/microscopic_update.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/mixing.c -o core/misc/mixing.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/motifs.c -o core/misc/motifs.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/other.c -o core/misc/other.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/scan.c -o core/misc/scan.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/sir.c -o core/misc/sir.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/misc/spanning_trees.c -o core/misc/spanning_trees.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/add_edge.c -o core/operators/add_edge.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/complementer.c -o core/operators/complementer.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/compose.c -o core/operators/compose.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/connect_neighborhood.c -o core/operators/connect_neighborhood.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/contract.c -o core/operators/contract.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/difference.c -o core/operators/difference.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/disjoint_union.c -o core/operators/disjoint_union.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/intersection.c -o core/operators/intersection.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/misc_internal.c -o core/operators/misc_internal.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/permute.c -o core/operators/permute.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/reverse.c -o core/operators/reverse.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/rewire.c -o core/operators/rewire.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/rewire_edges.c -o core/operators/rewire_edges.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/simplify.c -o core/operators/simplify.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/subgraph.c -o core/operators/subgraph.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/operators/union.c -o core/operators/union.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/paths/all_shortest_paths.c -o core/paths/all_shortest_paths.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/paths/bellman_ford.c -o core/paths/bellman_ford.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/paths/dijkstra.c -o core/paths/dijkstra.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/paths/distances.c -o core/paths/distances.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/paths/eulerian.c -o core/paths/eulerian.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/paths/histogram.c -o core/paths/histogram.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/paths/johnson.c -o core/paths/johnson.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/paths/random_walk.c -o core/paths/random_walk.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/paths/shortest_paths.c -o core/paths/shortest_paths.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/paths/simple_paths.c -o core/paths/simple_paths.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/paths/unweighted.c -o core/paths/unweighted.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/properties/basic_properties.c -o core/properties/basic_properties.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/properties/constraint.c -o core/properties/constraint.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/properties/convergence_degree.c -o core/properties/convergence_degree.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/properties/dag.c -o core/properties/dag.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/properties/degrees.c -o core/properties/degrees.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/properties/girth.c -o core/properties/girth.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/properties/loops.c -o core/properties/loops.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/properties/multiplicity.c -o core/properties/multiplicity.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/properties/neighborhood.c -o core/properties/neighborhood.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/properties/spectral.c -o core/properties/spectral.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/properties/trees.c -o core/properties/trees.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/properties/triangles.c -o core/properties/triangles.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/random/random.c -o core/random/random.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/scg/scg.c -o core/scg/scg.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/scg/scg_approximate_methods.c -o core/scg/scg_approximate_methods.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/scg/scg_exact_scg.c -o core/scg/scg_exact_scg.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/scg/scg_kmeans.c -o core/scg/scg_kmeans.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/scg/scg_optimal_method.c -o core/scg/scg_optimal_method.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/scg/scg_utils.c -o core/scg/scg_utils.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c core/version.c -o core/version.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_add.c -o vendor/cs/cs_add.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_amd.c -o vendor/cs/cs_amd.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_chol.c -o vendor/cs/cs_chol.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_cholsol.c -o vendor/cs/cs_cholsol.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_compress.c -o vendor/cs/cs_compress.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_counts.c -o vendor/cs/cs_counts.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_cumsum.c -o vendor/cs/cs_cumsum.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_dfs.c -o vendor/cs/cs_dfs.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_dmperm.c -o vendor/cs/cs_dmperm.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_droptol.c -o vendor/cs/cs_droptol.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_dropzeros.c -o vendor/cs/cs_dropzeros.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_dupl.c -o vendor/cs/cs_dupl.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_entry.c -o vendor/cs/cs_entry.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_ereach.c -o vendor/cs/cs_ereach.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_etree.c -o vendor/cs/cs_etree.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_fkeep.c -o vendor/cs/cs_fkeep.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_gaxpy.c -o vendor/cs/cs_gaxpy.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_happly.c -o vendor/cs/cs_happly.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_house.c -o vendor/cs/cs_house.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_ipvec.c -o vendor/cs/cs_ipvec.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_leaf.c -o vendor/cs/cs_leaf.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_load.c -o vendor/cs/cs_load.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_lsolve.c -o vendor/cs/cs_lsolve.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_ltsolve.c -o vendor/cs/cs_ltsolve.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_lu.c -o vendor/cs/cs_lu.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_lusol.c -o vendor/cs/cs_lusol.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_malloc.c -o vendor/cs/cs_malloc.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_maxtrans.c -o vendor/cs/cs_maxtrans.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_multiply.c -o vendor/cs/cs_multiply.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_norm.c -o vendor/cs/cs_norm.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_permute.c -o vendor/cs/cs_permute.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_pinv.c -o vendor/cs/cs_pinv.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_post.c -o vendor/cs/cs_post.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_print.c -o vendor/cs/cs_print.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_pvec.c -o vendor/cs/cs_pvec.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_qr.c -o vendor/cs/cs_qr.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_qrsol.c -o vendor/cs/cs_qrsol.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_randperm.c -o vendor/cs/cs_randperm.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_reach.c -o vendor/cs/cs_reach.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_scatter.c -o vendor/cs/cs_scatter.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_scc.c -o vendor/cs/cs_scc.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_schol.c -o vendor/cs/cs_schol.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_spsolve.c -o vendor/cs/cs_spsolve.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_sqr.c -o vendor/cs/cs_sqr.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_symperm.c -o vendor/cs/cs_symperm.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_tdfs.c -o vendor/cs/cs_tdfs.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_transpose.c -o vendor/cs/cs_transpose.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_updown.c -o vendor/cs/cs_updown.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_usolve.c -o vendor/cs/cs_usolve.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_util.c -o vendor/cs/cs_util.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/cs/cs_utsolve.c -o vendor/cs/cs_utsolve.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/mini-gmp/mini-gmp.c -o vendor/mini-gmp/mini-gmp.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/plfit/gss.c -o vendor/plfit/gss.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/plfit/hzeta.c -o vendor/plfit/hzeta.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/plfit/kolmogorov.c -o vendor/plfit/kolmogorov.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/plfit/lbfgs.c -o vendor/plfit/lbfgs.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/plfit/mt.c -o vendor/plfit/mt.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/plfit/options.c -o vendor/plfit/options.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/plfit/platform.c -o vendor/plfit/platform.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/plfit/plfit.c -o vendor/plfit/plfit.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/plfit/plfit_error.c -o vendor/plfit/plfit_error.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/plfit/rbinom.c -o vendor/plfit/rbinom.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/plfit/sampling.c -o vendor/plfit/sampling.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dgetv0.f -o vendor/arpack/dgetv0.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dlaqrb.f -o vendor/arpack/dlaqrb.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dmout.f -o vendor/arpack/dmout.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dnaitr.f -o vendor/arpack/dnaitr.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dnapps.f -o vendor/arpack/dnapps.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dnaup2.f -o vendor/arpack/dnaup2.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dnaupd.f -o vendor/arpack/dnaupd.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dnconv.f -o vendor/arpack/dnconv.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dneigh.f -o vendor/arpack/dneigh.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dneupd.f -o vendor/arpack/dneupd.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dngets.f -o vendor/arpack/dngets.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsaitr.f -o vendor/arpack/dsaitr.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsapps.f -o vendor/arpack/dsapps.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsaup2.f -o vendor/arpack/dsaup2.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsaupd.f -o vendor/arpack/dsaupd.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsconv.f -o vendor/arpack/dsconv.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dseigt.f -o vendor/arpack/dseigt.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsesrt.f -o vendor/arpack/dsesrt.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dseupd.f -o vendor/arpack/dseupd.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsgets.f -o vendor/arpack/dsgets.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsortc.f -o vendor/arpack/dsortc.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dsortr.f -o vendor/arpack/dsortr.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dstatn.f -o vendor/arpack/dstatn.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dstats.f -o vendor/arpack/dstats.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dstqrb.f -o vendor/arpack/dstqrb.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/dvout.f -o vendor/arpack/dvout.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/ivout.f -o vendor/arpack/ivout.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/second.f -o vendor/arpack/second.o
gfortran -fvisibility=hidden -fpic  -g -O0  -c vendor/arpack/wrap.f -o vendor/arpack/wrap.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/simpleraytracer/Color.cpp -o vendor/simpleraytracer/Color.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/simpleraytracer/Light.cpp -o vendor/simpleraytracer/Light.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/simpleraytracer/Point.cpp -o vendor/simpleraytracer/Point.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/simpleraytracer/RIgraphRay.cpp -o vendor/simpleraytracer/RIgraphRay.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/simpleraytracer/Ray.cpp -o vendor/simpleraytracer/Ray.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/simpleraytracer/RayTracer.cpp -o vendor/simpleraytracer/RayTracer.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/simpleraytracer/RayVector.cpp -o vendor/simpleraytracer/RayVector.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/simpleraytracer/Shape.cpp -o vendor/simpleraytracer/Shape.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/simpleraytracer/Sphere.cpp -o vendor/simpleraytracer/Sphere.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/simpleraytracer/Triangle.cpp -o vendor/simpleraytracer/Triangle.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/simpleraytracer/unit_limiter.cpp -o vendor/simpleraytracer/unit_limiter.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/uuid/R.c -o vendor/uuid/R.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/uuid/clear.c -o vendor/uuid/clear.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/uuid/compare.c -o vendor/uuid/compare.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/uuid/copy.c -o vendor/uuid/copy.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/uuid/gen_uuid.c -o vendor/uuid/gen_uuid.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/uuid/isnull.c -o vendor/uuid/isnull.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/uuid/pack.c -o vendor/uuid/pack.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/uuid/parse.c -o vendor/uuid/parse.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/uuid/unpack.c -o vendor/uuid/unpack.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c vendor/uuid/unparse.c -o vendor/uuid/unparse.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c rinterface.c -o rinterface.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c rinterface_extra.c -o rinterface_extra.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c rrandom.c -o rrandom.o
clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c lazyeval.c -o lazyeval.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c init.cpp -o init.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c cpp11.cpp -o cpp11.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -I"/usr/local/RDcsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/usr/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/usr/local/RDcsan/lib/R/site-library/cpp11/include' -I/usr/local/include   -fvisibility=hidden -fpic  -g -O0 -Wall -pedantic  -c cpprinterface.cpp -o cpprinterface.o
clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti -std=gnu++17 -shared -L/usr/local/RDcsan/lib/R/lib -L/usr/local/lib -o igraph.so core/centrality/betweenness.o core/centrality/centrality_other.o core/centrality/centralization.o core/centrality/closeness.o core/centrality/coreness.o core/centrality/prpack.o core/centrality/prpack/prpack_base_graph.o core/centrality/prpack/prpack_igraph_graph.o core/centrality/prpack/prpack_preprocessed_ge_graph.o core/centrality/prpack/prpack_preprocessed_gs_graph.o core/centrality/prpack/prpack_preprocessed_scc_graph.o core/centrality/prpack/prpack_preprocessed_schur_graph.o core/centrality/prpack/prpack_result.o core/centrality/prpack/prpack_solver.o core/centrality/prpack/prpack_utils.o core/cliques/cliquer/cliquer.o core/cliques/cliquer/cliquer_graph.o core/cliques/cliquer/reorder.o core/cliques/cliquer_wrapper.o core/cliques/cliques.o core/cliques/glet.o core/cliques/maximal_cliques.o core/community/community_misc.o core/community/edge_betweenness.o core/community/fast_modularity.o core/community/fluid.o core/community/infomap/infomap.o core/community/infomap/infomap_FlowGraph.o core/community/infomap/infomap_Greedy.o core/community/infomap/infomap_Node.o core/community/label_propagation.o core/community/leading_eigenvector.o core/community/leiden.o core/community/louvain.o core/community/modularity.o core/community/optimal_modularity.o core/community/spinglass/NetDataTypes.o core/community/spinglass/NetRoutines.o core/community/spinglass/clustertool.o core/community/spinglass/pottsmodel_2.o core/community/walktrap/walktrap.o core/community/walktrap/walktrap_communities.o core/community/walktrap/walktrap_graph.o core/community/walktrap/walktrap_heap.o core/connectivity/cohesive_blocks.o core/connectivity/components.o core/connectivity/separators.o core/constructors/adjacency.o core/constructors/atlas.o core/constructors/basic_constructors.o core/constructors/de_bruijn.o core/constructors/famous.o core/constructors/full.o core/constructors/kautz.o core/constructors/lcf.o core/constructors/linegraph.o core/constructors/prufer.o core/constructors/regular.o core/core/array.o core/core/buckets.o core/core/cutheap.o core/core/dqueue.o core/core/error.o core/core/estack.o core/core/fixed_vectorlist.o core/core/grid.o core/core/heap.o core/core/indheap.o core/core/interruption.o core/core/marked_queue.o core/core/matrix.o core/core/memory.o core/core/printing.o core/core/progress.o core/core/psumtree.o core/core/set.o core/core/sparsemat.o core/core/spmatrix.o core/core/stack.o core/core/statusbar.o core/core/strvector.o core/core/trie.o core/core/vector.o core/core/vector_ptr.o core/flow/flow.o core/flow/st-cuts.o core/games/barabasi.o core/games/callaway_traits.o core/games/citations.o core/games/correlated.o core/games/degree_sequence.o core/games/degree_sequence_vl/gengraph_box_list.o core/games/degree_sequence_vl/gengraph_degree_sequence.o core/games/degree_sequence_vl/gengraph_graph_molloy_hash.o core/games/degree_sequence_vl/gengraph_graph_molloy_optimized.o core/games/degree_sequence_vl/gengraph_mr-connected.o core/games/degree_sequence_vl/gengraph_powerlaw.o core/games/degree_sequence_vl/gengraph_random.o core/games/dotproduct.o core/games/erdos_renyi.o core/games/establishment.o core/games/forestfire.o core/games/grg.o core/games/growing_random.o core/games/islands.o core/games/k_regular.o core/games/preference.o core/games/recent_degree.o core/games/sbm.o core/games/static_fitness.o core/games/tree.o core/games/watts_strogatz.o core/graph/adjlist.o core/graph/attributes.o core/graph/basic_query.o core/graph/cattributes.o core/graph/iterators.o core/graph/type_indexededgelist.o core/graph/visitors.o core/hrg/hrg.o core/hrg/hrg_types.o core/internal/glpk_support.o core/internal/hacks.o core/internal/lsap.o core/internal/qsort.o core/internal/qsort_r.o core/internal/zeroin.o core/io/dimacs.o core/io/dl-lexer.o core/io/dl-parser.o core/io/dl.o core/io/dot.o core/io/edgelist.o core/io/gml-lexer.o core/io/gml-parser.o core/io/gml-tree.o core/io/gml.o core/io/graphdb.o core/io/graphml.o core/io/leda.o core/io/lgl-lexer.o core/io/lgl-parser.o core/io/lgl.o core/io/ncol-lexer.o core/io/ncol-parser.o core/io/ncol.o core/io/pajek-lexer.o core/io/pajek-parser.o core/io/pajek.o core/isomorphism/bliss.o core/isomorphism/bliss/defs.o core/isomorphism/bliss/graph.o core/isomorphism/bliss/heap.o core/isomorphism/bliss/orbit.o core/isomorphism/bliss/partition.o core/isomorphism/bliss/uintseqhash.o core/isomorphism/bliss/utils.o core/isomorphism/isoclasses.o core/isomorphism/isomorphism_misc.o core/isomorphism/lad.o core/isomorphism/queries.o core/isomorphism/vf2.o core/layout/circular.o core/layout/davidson_harel.o core/layout/drl/DensityGrid.o core/layout/drl/DensityGrid_3d.o core/layout/drl/drl_graph.o core/layout/drl/drl_graph_3d.o core/layout/drl/drl_layout.o core/layout/drl/drl_layout_3d.o core/layout/drl/drl_parse.o core/layout/fruchterman_reingold.o core/layout/gem.o core/layout/graphopt.o core/layout/kamada_kawai.o core/layout/large_graph.o core/layout/layout_bipartite.o core/layout/layout_grid.o core/layout/layout_random.o core/layout/mds.o core/layout/merge_dla.o core/layout/merge_grid.o core/layout/reingold_tilford.o core/layout/sugiyama.o core/linalg/arpack.o core/linalg/blas.o core/linalg/eigen.o core/linalg/lapack.o core/math/bfgs.o core/math/complex.o core/math/utils.o core/misc/bipartite.o core/misc/chordality.o core/misc/cocitation.o core/misc/coloring.o core/misc/conversion.o core/misc/degree_sequence.o core/misc/embedding.o core/misc/feedback_arc_set.o core/misc/graphicality.o core/misc/matching.o core/misc/microscopic_update.o core/misc/mixing.o core/misc/motifs.o core/misc/other.o core/misc/scan.o core/misc/sir.o core/misc/spanning_trees.o core/operators/add_edge.o core/operators/complementer.o core/operators/compose.o core/operators/connect_neighborhood.o core/operators/contract.o core/operators/difference.o core/operators/disjoint_union.o core/operators/intersection.o core/operators/misc_internal.o core/operators/permute.o core/operators/reverse.o core/operators/rewire.o core/operators/rewire_edges.o core/operators/simplify.o core/operators/subgraph.o core/operators/union.o core/paths/all_shortest_paths.o core/paths/bellman_ford.o core/paths/dijkstra.o core/paths/distances.o core/paths/eulerian.o core/paths/histogram.o core/paths/johnson.o core/paths/random_walk.o core/paths/shortest_paths.o core/paths/simple_paths.o core/paths/unweighted.o core/properties/basic_properties.o core/properties/constraint.o core/properties/convergence_degree.o core/properties/dag.o core/properties/degrees.o core/properties/girth.o core/properties/loops.o core/properties/multiplicity.o core/properties/neighborhood.o core/properties/spectral.o core/properties/trees.o core/properties/triangles.o core/random/random.o core/scg/scg.o core/scg/scg_approximate_methods.o core/scg/scg_exact_scg.o core/scg/scg_kmeans.o core/scg/scg_optimal_method.o core/scg/scg_utils.o core/version.o vendor/cs/cs_add.o vendor/cs/cs_amd.o vendor/cs/cs_chol.o vendor/cs/cs_cholsol.o vendor/cs/cs_compress.o vendor/cs/cs_counts.o vendor/cs/cs_cumsum.o vendor/cs/cs_dfs.o vendor/cs/cs_dmperm.o vendor/cs/cs_droptol.o vendor/cs/cs_dropzeros.o vendor/cs/cs_dupl.o vendor/cs/cs_entry.o vendor/cs/cs_ereach.o vendor/cs/cs_etree.o vendor/cs/cs_fkeep.o vendor/cs/cs_gaxpy.o vendor/cs/cs_happly.o vendor/cs/cs_house.o vendor/cs/cs_ipvec.o vendor/cs/cs_leaf.o vendor/cs/cs_load.o vendor/cs/cs_lsolve.o vendor/cs/cs_ltsolve.o vendor/cs/cs_lu.o vendor/cs/cs_lusol.o vendor/cs/cs_malloc.o vendor/cs/cs_maxtrans.o vendor/cs/cs_multiply.o vendor/cs/cs_norm.o vendor/cs/cs_permute.o vendor/cs/cs_pinv.o vendor/cs/cs_post.o vendor/cs/cs_print.o vendor/cs/cs_pvec.o vendor/cs/cs_qr.o vendor/cs/cs_qrsol.o vendor/cs/cs_randperm.o vendor/cs/cs_reach.o vendor/cs/cs_scatter.o vendor/cs/cs_scc.o vendor/cs/cs_schol.o vendor/cs/cs_spsolve.o vendor/cs/cs_sqr.o vendor/cs/cs_symperm.o vendor/cs/cs_tdfs.o vendor/cs/cs_transpose.o vendor/cs/cs_updown.o vendor/cs/cs_usolve.o vendor/cs/cs_util.o vendor/cs/cs_utsolve.o vendor/mini-gmp/mini-gmp.o vendor/plfit/gss.o vendor/plfit/hzeta.o vendor/plfit/kolmogorov.o vendor/plfit/lbfgs.o vendor/plfit/mt.o vendor/plfit/options.o vendor/plfit/platform.o vendor/plfit/plfit.o vendor/plfit/plfit_error.o vendor/plfit/rbinom.o vendor/plfit/sampling.o vendor/arpack/dgetv0.o vendor/arpack/dlaqrb.o vendor/arpack/dmout.o vendor/arpack/dnaitr.o vendor/arpack/dnapps.o vendor/arpack/dnaup2.o vendor/arpack/dnaupd.o vendor/arpack/dnconv.o vendor/arpack/dneigh.o vendor/arpack/dneupd.o vendor/arpack/dngets.o vendor/arpack/dsaitr.o vendor/arpack/dsapps.o vendor/arpack/dsaup2.o vendor/arpack/dsaupd.o vendor/arpack/dsconv.o vendor/arpack/dseigt.o vendor/arpack/dsesrt.o vendor/arpack/dseupd.o vendor/arpack/dsgets.o vendor/arpack/dsortc.o vendor/arpack/dsortr.o vendor/arpack/dstatn.o vendor/arpack/dstats.o vendor/arpack/dstqrb.o vendor/arpack/dvout.o vendor/arpack/ivout.o vendor/arpack/second.o vendor/arpack/wrap.o vendor/simpleraytracer/Color.o vendor/simpleraytracer/Light.o vendor/simpleraytracer/Point.o vendor/simpleraytracer/RIgraphRay.o vendor/simpleraytracer/Ray.o vendor/simpleraytracer/RayTracer.o vendor/simpleraytracer/RayVector.o vendor/simpleraytracer/Shape.o vendor/simpleraytracer/Sphere.o vendor/simpleraytracer/Triangle.o vendor/simpleraytracer/unit_limiter.o vendor/uuid/R.o vendor/uuid/clear.o vendor/uuid/compare.o vendor/uuid/copy.o vendor/uuid/gen_uuid.o vendor/uuid/isnull.o vendor/uuid/pack.o vendor/uuid/parse.o vendor/uuid/unpack.o vendor/uuid/unparse.o rinterface.o rinterface_extra.o rrandom.o lazyeval.o init.o cpp11.o cpprinterface.o -lxml2 -llapack -L/usr/local/RDcsan/lib/R/lib -lRblas -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/x86_64-linux-gnu -lgfortran -lm -lquadmath -L/usr/local/RDcsan/lib/R/lib -lR

@Antonov548
Copy link
Contributor Author

Antonov548 commented May 29, 2023

@krlmlr
I wondering we also need to setup proper linking for ASAN with LD_PRELOAD flag: https://github.com/igraph/igraph/wiki/Using-sanitizers-to-find-bugs#troubleshooting
kuzudb/kuzu#1165 (comment)

@krlmlr
Copy link
Contributor

krlmlr commented May 29, 2023

I'm not too familiar with these topics. All I know that we'd want to set up a reproducible workflow for this. The best way I know is Docker.

@Antonov548
Copy link
Contributor Author

I'm not too familiar with these topics. All I know that we'd want to set up a reproducible workflow for this. The best way I know is Docker.

Okay, I will try to figure out with this linking flags while waiting comment from Szabolcs

@szhorvat
Copy link
Member

szhorvat commented May 29, 2023

I wrote up instructions to build with sanitizers in the wiki (or rather, how I did it): https://github.com/igraph/rigraph/wiki/Testing-with-sanitizers Feel free to edit/improve this.

@Antonov548 See the edit I made to your post on how to hide very long code blocks.

@szhorvat
Copy link
Member

@szhorvat: Can you please post the full output of R CMD INSTALL for your local install with sanitizers?

I'll do this once all builds finish. It takes a long time.

Note that you don't want to install the package! If you do so, ASan won't be able to generate proper line number references. Just run make, then load the package from the development directory.

@szhorvat
Copy link
Member

szhorvat commented May 29, 2023

The output from building igraph with make, starting in a clean directory:

igraph build output
$ make
if ! [ -f src/config.h ]; then ./configure; fi
checking for gcc... ccache clang-mp-16 -fsanitize=address
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether ccache clang-mp-16 -fsanitize=address accepts -g... yes
checking for ccache clang-mp-16 -fsanitize=address option to enable C11 features... none needed
checking whether the compiler supports GNU C++... yes
checking whether ccache clang++-mp-16 -fsanitize=address -std=gnu++11 accepts -g... yes
checking for ccache clang++-mp-16 -fsanitize=address -std=gnu++11 option to enable C++11 features... none needed
checking whether the compiler supports GNU Fortran... yes
checking whether ccache gfortran-mp-12 accepts -g... yes
checking for expm1... yes
checking for fmin... yes
checking for finite... yes
checking for log2... yes
checking for log1p... yes
checking for rint... yes
checking for rintf... yes
checking for round... yes
checking for stpcpy... yes
checking for strcasecmp... yes
checking for _stricmp... no
checking for strdup... yes
checking for isfinite... no
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for sys/times.h... yes
checking for net/if.h... yes
checking for netinet/in.h... yes
checking for net/if_dl.h... yes
checking for sys/sockio.h... yes
checking for sys/un.h... yes
checking for sys/socket.h... yes
checking for sys/ioctl.h... yes
checking for sys/time.h... yes
checking for sys/file.h... yes
checking for struct sockaddr.sa_len... yes
checking for xml2-config... /opt/local/bin/xml2-config
checking for xmlSAXUserParseFile in -lxml2... yes
checking for libxml/parser.h... yes
checking for __gmpz_add in -lgmp... yes
checking for gmp.h... yes
checking how to run the C++ preprocessor... ccache clang++-mp-16 -fsanitize=address -std=gnu++11 -E
checking for grep that handles long lines and -e... /opt/local/bin/ggrep
checking for egrep... /opt/local/bin/ggrep -E
checking for glp_read_mps in -lglpk... yes
checking for glpk.h... yes
configure: creating ./config.status
config.status: creating src/Makevars.tmp
config.status: creating src/Makevars
config.status: creating src/config.h

*** Compiler settings used:
    CC=ccache clang-mp-16 -fsanitize=address
    LD=
    CFLAGS=-g -fno-omit-frame-pointer -Og
    CPPFLAGS=-I/opt/local/include
    CXX=ccache clang++-mp-16 -fsanitize=address -std=gnu++11
    CXXFLAGS=-g -fno-omit-frame-pointer -Og
    LDFLAGS=-L/opt/local/lib
    LIBS=
R CMD INSTALL -l "/tmp" --no-configure --no-byte-compile .
* installing *source* package ‘igraph’ ...
** using staged installation
** libs
using C compiler: ‘clang version 16.0.4’
using C++ compiler: ‘clang version 16.0.4’
using SDK: ‘’
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/betweenness.c -o core/centrality/betweenness.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/centrality_other.c -o core/centrality/centrality_other.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/centralization.c -o core/centrality/centralization.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/closeness.c -o core/centrality/closeness.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/coreness.c -o core/centrality/coreness.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/prpack.cpp -o core/centrality/prpack.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/prpack/prpack_base_graph.cpp -o core/centrality/prpack/prpack_base_graph.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/prpack/prpack_igraph_graph.cpp -o core/centrality/prpack/prpack_igraph_graph.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/prpack/prpack_preprocessed_ge_graph.cpp -o core/centrality/prpack/prpack_preprocessed_ge_graph.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/prpack/prpack_preprocessed_gs_graph.cpp -o core/centrality/prpack/prpack_preprocessed_gs_graph.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/prpack/prpack_preprocessed_scc_graph.cpp -o core/centrality/prpack/prpack_preprocessed_scc_graph.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/prpack/prpack_preprocessed_schur_graph.cpp -o core/centrality/prpack/prpack_preprocessed_schur_graph.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/prpack/prpack_result.cpp -o core/centrality/prpack/prpack_result.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/prpack/prpack_solver.cpp -o core/centrality/prpack/prpack_solver.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/centrality/prpack/prpack_utils.cpp -o core/centrality/prpack/prpack_utils.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/cliques/cliquer/cliquer.c -o core/cliques/cliquer/cliquer.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/cliques/cliquer/cliquer_graph.c -o core/cliques/cliquer/cliquer_graph.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/cliques/cliquer/reorder.c -o core/cliques/cliquer/reorder.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/cliques/cliquer_wrapper.c -o core/cliques/cliquer_wrapper.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/cliques/cliques.c -o core/cliques/cliques.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/cliques/glet.c -o core/cliques/glet.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/cliques/maximal_cliques.c -o core/cliques/maximal_cliques.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/community_misc.c -o core/community/community_misc.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/edge_betweenness.c -o core/community/edge_betweenness.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/fast_modularity.c -o core/community/fast_modularity.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/fluid.c -o core/community/fluid.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/infomap/infomap.cc -o core/community/infomap/infomap.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/infomap/infomap_FlowGraph.cc -o core/community/infomap/infomap_FlowGraph.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/infomap/infomap_Greedy.cc -o core/community/infomap/infomap_Greedy.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/infomap/infomap_Node.cc -o core/community/infomap/infomap_Node.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/label_propagation.c -o core/community/label_propagation.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/leading_eigenvector.c -o core/community/leading_eigenvector.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/leiden.c -o core/community/leiden.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/louvain.c -o core/community/louvain.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/modularity.c -o core/community/modularity.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/optimal_modularity.c -o core/community/optimal_modularity.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/spinglass/NetDataTypes.cpp -o core/community/spinglass/NetDataTypes.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/spinglass/NetRoutines.cpp -o core/community/spinglass/NetRoutines.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/spinglass/clustertool.cpp -o core/community/spinglass/clustertool.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/spinglass/pottsmodel_2.cpp -o core/community/spinglass/pottsmodel_2.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/walktrap/walktrap.cpp -o core/community/walktrap/walktrap.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/walktrap/walktrap_communities.cpp -o core/community/walktrap/walktrap_communities.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/walktrap/walktrap_graph.cpp -o core/community/walktrap/walktrap_graph.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/community/walktrap/walktrap_heap.cpp -o core/community/walktrap/walktrap_heap.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/connectivity/cohesive_blocks.c -o core/connectivity/cohesive_blocks.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/connectivity/components.c -o core/connectivity/components.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/connectivity/separators.c -o core/connectivity/separators.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/constructors/adjacency.c -o core/constructors/adjacency.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/constructors/atlas.c -o core/constructors/atlas.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/constructors/basic_constructors.c -o core/constructors/basic_constructors.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/constructors/de_bruijn.c -o core/constructors/de_bruijn.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/constructors/famous.c -o core/constructors/famous.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/constructors/full.c -o core/constructors/full.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/constructors/kautz.c -o core/constructors/kautz.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/constructors/lcf.c -o core/constructors/lcf.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/constructors/linegraph.c -o core/constructors/linegraph.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/constructors/prufer.c -o core/constructors/prufer.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/constructors/regular.c -o core/constructors/regular.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/array.c -o core/core/array.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/buckets.c -o core/core/buckets.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/cutheap.c -o core/core/cutheap.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/dqueue.c -o core/core/dqueue.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/error.c -o core/core/error.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/estack.c -o core/core/estack.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/fixed_vectorlist.c -o core/core/fixed_vectorlist.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/grid.c -o core/core/grid.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/heap.c -o core/core/heap.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/indheap.c -o core/core/indheap.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/interruption.c -o core/core/interruption.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/marked_queue.c -o core/core/marked_queue.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/matrix.c -o core/core/matrix.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/memory.c -o core/core/memory.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/printing.c -o core/core/printing.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/progress.c -o core/core/progress.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/psumtree.c -o core/core/psumtree.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/set.c -o core/core/set.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/sparsemat.c -o core/core/sparsemat.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/spmatrix.c -o core/core/spmatrix.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/stack.c -o core/core/stack.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/statusbar.c -o core/core/statusbar.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/strvector.c -o core/core/strvector.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/trie.c -o core/core/trie.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/vector.c -o core/core/vector.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/core/vector_ptr.c -o core/core/vector_ptr.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/flow/flow.c -o core/flow/flow.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/flow/st-cuts.c -o core/flow/st-cuts.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/barabasi.c -o core/games/barabasi.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/callaway_traits.c -o core/games/callaway_traits.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/citations.c -o core/games/citations.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/correlated.c -o core/games/correlated.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/degree_sequence.c -o core/games/degree_sequence.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/degree_sequence_vl/gengraph_box_list.cpp -o core/games/degree_sequence_vl/gengraph_box_list.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/degree_sequence_vl/gengraph_degree_sequence.cpp -o core/games/degree_sequence_vl/gengraph_degree_sequence.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/degree_sequence_vl/gengraph_graph_molloy_hash.cpp -o core/games/degree_sequence_vl/gengraph_graph_molloy_hash.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/degree_sequence_vl/gengraph_graph_molloy_optimized.cpp -o core/games/degree_sequence_vl/gengraph_graph_molloy_optimized.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/degree_sequence_vl/gengraph_mr-connected.cpp -o core/games/degree_sequence_vl/gengraph_mr-connected.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/degree_sequence_vl/gengraph_powerlaw.cpp -o core/games/degree_sequence_vl/gengraph_powerlaw.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/degree_sequence_vl/gengraph_random.cpp -o core/games/degree_sequence_vl/gengraph_random.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/dotproduct.c -o core/games/dotproduct.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/erdos_renyi.c -o core/games/erdos_renyi.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/establishment.c -o core/games/establishment.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/forestfire.c -o core/games/forestfire.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/grg.c -o core/games/grg.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/growing_random.c -o core/games/growing_random.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/islands.c -o core/games/islands.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/k_regular.c -o core/games/k_regular.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/preference.c -o core/games/preference.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/recent_degree.c -o core/games/recent_degree.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/sbm.c -o core/games/sbm.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/static_fitness.c -o core/games/static_fitness.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/tree.c -o core/games/tree.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/games/watts_strogatz.c -o core/games/watts_strogatz.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/graph/adjlist.c -o core/graph/adjlist.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/graph/attributes.c -o core/graph/attributes.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/graph/basic_query.c -o core/graph/basic_query.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/graph/cattributes.c -o core/graph/cattributes.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/graph/iterators.c -o core/graph/iterators.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/graph/type_indexededgelist.c -o core/graph/type_indexededgelist.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/graph/visitors.c -o core/graph/visitors.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/hrg/hrg.cc -o core/hrg/hrg.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/hrg/hrg_types.cc -o core/hrg/hrg_types.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/internal/glpk_support.c -o core/internal/glpk_support.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/internal/hacks.c -o core/internal/hacks.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/internal/lsap.c -o core/internal/lsap.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/internal/qsort.c -o core/internal/qsort.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/internal/qsort_r.c -o core/internal/qsort_r.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/internal/zeroin.c -o core/internal/zeroin.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/dimacs.c -o core/io/dimacs.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/dl-lexer.c -o core/io/dl-lexer.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/dl-parser.c -o core/io/dl-parser.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/dl.c -o core/io/dl.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/dot.c -o core/io/dot.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/edgelist.c -o core/io/edgelist.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/gml-lexer.c -o core/io/gml-lexer.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/gml-parser.c -o core/io/gml-parser.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/gml-tree.c -o core/io/gml-tree.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/gml.c -o core/io/gml.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/graphdb.c -o core/io/graphdb.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/graphml.c -o core/io/graphml.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/leda.c -o core/io/leda.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/lgl-lexer.c -o core/io/lgl-lexer.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/lgl-parser.c -o core/io/lgl-parser.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/lgl.c -o core/io/lgl.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/ncol-lexer.c -o core/io/ncol-lexer.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/ncol-parser.c -o core/io/ncol-parser.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/ncol.c -o core/io/ncol.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/pajek-lexer.c -o core/io/pajek-lexer.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/pajek-parser.c -o core/io/pajek-parser.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/io/pajek.c -o core/io/pajek.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/isomorphism/bliss.cc -o core/isomorphism/bliss.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/isomorphism/bliss/defs.cc -o core/isomorphism/bliss/defs.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/isomorphism/bliss/graph.cc -o core/isomorphism/bliss/graph.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/isomorphism/bliss/heap.cc -o core/isomorphism/bliss/heap.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/isomorphism/bliss/orbit.cc -o core/isomorphism/bliss/orbit.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/isomorphism/bliss/partition.cc -o core/isomorphism/bliss/partition.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/isomorphism/bliss/uintseqhash.cc -o core/isomorphism/bliss/uintseqhash.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/isomorphism/bliss/utils.cc -o core/isomorphism/bliss/utils.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/isomorphism/isoclasses.c -o core/isomorphism/isoclasses.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/isomorphism/isomorphism_misc.c -o core/isomorphism/isomorphism_misc.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/isomorphism/lad.c -o core/isomorphism/lad.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/isomorphism/queries.c -o core/isomorphism/queries.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/isomorphism/vf2.c -o core/isomorphism/vf2.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/circular.c -o core/layout/circular.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/davidson_harel.c -o core/layout/davidson_harel.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/drl/DensityGrid.cpp -o core/layout/drl/DensityGrid.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/drl/DensityGrid_3d.cpp -o core/layout/drl/DensityGrid_3d.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/drl/drl_graph.cpp -o core/layout/drl/drl_graph.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/drl/drl_graph_3d.cpp -o core/layout/drl/drl_graph_3d.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/drl/drl_layout.cpp -o core/layout/drl/drl_layout.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/drl/drl_layout_3d.cpp -o core/layout/drl/drl_layout_3d.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/drl/drl_parse.cpp -o core/layout/drl/drl_parse.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/fruchterman_reingold.c -o core/layout/fruchterman_reingold.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/gem.c -o core/layout/gem.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/graphopt.c -o core/layout/graphopt.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/kamada_kawai.c -o core/layout/kamada_kawai.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/large_graph.c -o core/layout/large_graph.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/layout_bipartite.c -o core/layout/layout_bipartite.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/layout_grid.c -o core/layout/layout_grid.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/layout_random.c -o core/layout/layout_random.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/mds.c -o core/layout/mds.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/merge_dla.c -o core/layout/merge_dla.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/merge_grid.c -o core/layout/merge_grid.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/reingold_tilford.c -o core/layout/reingold_tilford.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/layout/sugiyama.c -o core/layout/sugiyama.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/linalg/arpack.c -o core/linalg/arpack.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/linalg/blas.c -o core/linalg/blas.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/linalg/eigen.c -o core/linalg/eigen.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/linalg/lapack.c -o core/linalg/lapack.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/math/bfgs.c -o core/math/bfgs.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/math/complex.c -o core/math/complex.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/math/utils.c -o core/math/utils.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/bipartite.c -o core/misc/bipartite.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/chordality.c -o core/misc/chordality.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/cocitation.c -o core/misc/cocitation.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/coloring.c -o core/misc/coloring.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/conversion.c -o core/misc/conversion.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/degree_sequence.cpp -o core/misc/degree_sequence.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/embedding.c -o core/misc/embedding.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/feedback_arc_set.c -o core/misc/feedback_arc_set.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/graphicality.c -o core/misc/graphicality.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/matching.c -o core/misc/matching.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/microscopic_update.c -o core/misc/microscopic_update.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/mixing.c -o core/misc/mixing.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/motifs.c -o core/misc/motifs.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/other.c -o core/misc/other.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/scan.c -o core/misc/scan.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/sir.c -o core/misc/sir.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/misc/spanning_trees.c -o core/misc/spanning_trees.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/add_edge.c -o core/operators/add_edge.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/complementer.c -o core/operators/complementer.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/compose.c -o core/operators/compose.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/connect_neighborhood.c -o core/operators/connect_neighborhood.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/contract.c -o core/operators/contract.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/difference.c -o core/operators/difference.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/disjoint_union.c -o core/operators/disjoint_union.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/intersection.c -o core/operators/intersection.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/misc_internal.c -o core/operators/misc_internal.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/permute.c -o core/operators/permute.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/reverse.c -o core/operators/reverse.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/rewire.c -o core/operators/rewire.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/rewire_edges.c -o core/operators/rewire_edges.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/simplify.c -o core/operators/simplify.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/subgraph.c -o core/operators/subgraph.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/operators/union.c -o core/operators/union.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/paths/all_shortest_paths.c -o core/paths/all_shortest_paths.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/paths/bellman_ford.c -o core/paths/bellman_ford.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/paths/dijkstra.c -o core/paths/dijkstra.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/paths/distances.c -o core/paths/distances.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/paths/eulerian.c -o core/paths/eulerian.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/paths/histogram.c -o core/paths/histogram.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/paths/johnson.c -o core/paths/johnson.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/paths/random_walk.c -o core/paths/random_walk.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/paths/shortest_paths.c -o core/paths/shortest_paths.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/paths/simple_paths.c -o core/paths/simple_paths.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/paths/unweighted.c -o core/paths/unweighted.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/properties/basic_properties.c -o core/properties/basic_properties.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/properties/constraint.c -o core/properties/constraint.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/properties/convergence_degree.c -o core/properties/convergence_degree.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/properties/dag.c -o core/properties/dag.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/properties/degrees.c -o core/properties/degrees.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/properties/girth.c -o core/properties/girth.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/properties/loops.c -o core/properties/loops.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/properties/multiplicity.c -o core/properties/multiplicity.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/properties/neighborhood.c -o core/properties/neighborhood.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/properties/spectral.c -o core/properties/spectral.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/properties/trees.c -o core/properties/trees.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/properties/triangles.c -o core/properties/triangles.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/random/random.c -o core/random/random.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/scg/scg.c -o core/scg/scg.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/scg/scg_approximate_methods.c -o core/scg/scg_approximate_methods.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/scg/scg_exact_scg.c -o core/scg/scg_exact_scg.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/scg/scg_kmeans.c -o core/scg/scg_kmeans.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/scg/scg_optimal_method.c -o core/scg/scg_optimal_method.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/scg/scg_utils.c -o core/scg/scg_utils.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c core/version.c -o core/version.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_add.c -o vendor/cs/cs_add.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_amd.c -o vendor/cs/cs_amd.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_chol.c -o vendor/cs/cs_chol.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_cholsol.c -o vendor/cs/cs_cholsol.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_compress.c -o vendor/cs/cs_compress.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_counts.c -o vendor/cs/cs_counts.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_cumsum.c -o vendor/cs/cs_cumsum.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_dfs.c -o vendor/cs/cs_dfs.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_dmperm.c -o vendor/cs/cs_dmperm.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_droptol.c -o vendor/cs/cs_droptol.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_dropzeros.c -o vendor/cs/cs_dropzeros.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_dupl.c -o vendor/cs/cs_dupl.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_entry.c -o vendor/cs/cs_entry.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_ereach.c -o vendor/cs/cs_ereach.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_etree.c -o vendor/cs/cs_etree.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_fkeep.c -o vendor/cs/cs_fkeep.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_gaxpy.c -o vendor/cs/cs_gaxpy.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_happly.c -o vendor/cs/cs_happly.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_house.c -o vendor/cs/cs_house.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_ipvec.c -o vendor/cs/cs_ipvec.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_leaf.c -o vendor/cs/cs_leaf.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_load.c -o vendor/cs/cs_load.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_lsolve.c -o vendor/cs/cs_lsolve.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_ltsolve.c -o vendor/cs/cs_ltsolve.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_lu.c -o vendor/cs/cs_lu.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_lusol.c -o vendor/cs/cs_lusol.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_malloc.c -o vendor/cs/cs_malloc.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_maxtrans.c -o vendor/cs/cs_maxtrans.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_multiply.c -o vendor/cs/cs_multiply.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_norm.c -o vendor/cs/cs_norm.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_permute.c -o vendor/cs/cs_permute.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_pinv.c -o vendor/cs/cs_pinv.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_post.c -o vendor/cs/cs_post.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_print.c -o vendor/cs/cs_print.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_pvec.c -o vendor/cs/cs_pvec.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_qr.c -o vendor/cs/cs_qr.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_qrsol.c -o vendor/cs/cs_qrsol.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_randperm.c -o vendor/cs/cs_randperm.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_reach.c -o vendor/cs/cs_reach.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_scatter.c -o vendor/cs/cs_scatter.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_scc.c -o vendor/cs/cs_scc.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_schol.c -o vendor/cs/cs_schol.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_spsolve.c -o vendor/cs/cs_spsolve.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_sqr.c -o vendor/cs/cs_sqr.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_symperm.c -o vendor/cs/cs_symperm.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_tdfs.c -o vendor/cs/cs_tdfs.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_transpose.c -o vendor/cs/cs_transpose.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_updown.c -o vendor/cs/cs_updown.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_usolve.c -o vendor/cs/cs_usolve.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_util.c -o vendor/cs/cs_util.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/cs/cs_utsolve.c -o vendor/cs/cs_utsolve.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/mini-gmp/mini-gmp.c -o vendor/mini-gmp/mini-gmp.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/plfit/gss.c -o vendor/plfit/gss.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/plfit/hzeta.c -o vendor/plfit/hzeta.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/plfit/kolmogorov.c -o vendor/plfit/kolmogorov.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/plfit/lbfgs.c -o vendor/plfit/lbfgs.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/plfit/mt.c -o vendor/plfit/mt.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/plfit/options.c -o vendor/plfit/options.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/plfit/platform.c -o vendor/plfit/platform.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/plfit/plfit.c -o vendor/plfit/plfit.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/plfit/plfit_error.c -o vendor/plfit/plfit_error.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/plfit/rbinom.c -o vendor/plfit/rbinom.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/plfit/sampling.c -o vendor/plfit/sampling.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dgetv0.f -o vendor/arpack/dgetv0.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dlaqrb.f -o vendor/arpack/dlaqrb.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dmout.f -o vendor/arpack/dmout.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dnaitr.f -o vendor/arpack/dnaitr.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dnapps.f -o vendor/arpack/dnapps.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dnaup2.f -o vendor/arpack/dnaup2.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dnaupd.f -o vendor/arpack/dnaupd.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dnconv.f -o vendor/arpack/dnconv.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dneigh.f -o vendor/arpack/dneigh.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dneupd.f -o vendor/arpack/dneupd.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dngets.f -o vendor/arpack/dngets.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dsaitr.f -o vendor/arpack/dsaitr.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dsapps.f -o vendor/arpack/dsapps.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dsaup2.f -o vendor/arpack/dsaup2.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dsaupd.f -o vendor/arpack/dsaupd.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dsconv.f -o vendor/arpack/dsconv.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dseigt.f -o vendor/arpack/dseigt.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dsesrt.f -o vendor/arpack/dsesrt.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dseupd.f -o vendor/arpack/dseupd.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dsgets.f -o vendor/arpack/dsgets.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dsortc.f -o vendor/arpack/dsortc.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dsortr.f -o vendor/arpack/dsortr.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dstatn.f -o vendor/arpack/dstatn.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dstats.f -o vendor/arpack/dstats.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dstqrb.f -o vendor/arpack/dstqrb.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/dvout.f -o vendor/arpack/dvout.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/ivout.f -o vendor/arpack/ivout.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/second.f -o vendor/arpack/second.o
ccache gfortran-mp-12  -fPIC  -g -O2  -c vendor/arpack/wrap.f -o vendor/arpack/wrap.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/simpleraytracer/Color.cpp -o vendor/simpleraytracer/Color.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/simpleraytracer/Light.cpp -o vendor/simpleraytracer/Light.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/simpleraytracer/Point.cpp -o vendor/simpleraytracer/Point.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/simpleraytracer/RIgraphRay.cpp -o vendor/simpleraytracer/RIgraphRay.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/simpleraytracer/Ray.cpp -o vendor/simpleraytracer/Ray.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/simpleraytracer/RayTracer.cpp -o vendor/simpleraytracer/RayTracer.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/simpleraytracer/RayVector.cpp -o vendor/simpleraytracer/RayVector.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/simpleraytracer/Shape.cpp -o vendor/simpleraytracer/Shape.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/simpleraytracer/Sphere.cpp -o vendor/simpleraytracer/Sphere.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/simpleraytracer/Triangle.cpp -o vendor/simpleraytracer/Triangle.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/simpleraytracer/unit_limiter.cpp -o vendor/simpleraytracer/unit_limiter.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/uuid/R.c -o vendor/uuid/R.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/uuid/clear.c -o vendor/uuid/clear.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/uuid/compare.c -o vendor/uuid/compare.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/uuid/copy.c -o vendor/uuid/copy.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/uuid/gen_uuid.c -o vendor/uuid/gen_uuid.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/uuid/isnull.c -o vendor/uuid/isnull.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/uuid/pack.c -o vendor/uuid/pack.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/uuid/parse.c -o vendor/uuid/parse.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/uuid/unpack.c -o vendor/uuid/unpack.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c vendor/uuid/unparse.c -o vendor/uuid/unparse.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c rinterface.c -o rinterface.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c rinterface_extra.c -o rinterface_extra.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c rrandom.c -o rrandom.o
ccache clang-mp-16 -fsanitize=address -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c lazyeval.c -o lazyeval.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c init.cpp -o init.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c cpp11.cpp -o cpp11.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -I"/Users/szhorvat/rsan/lib/R/include" -DNDEBUG -DUSING_R -I. -Icore -Iinclude -Ivendor -I/opt/local/include/libxml2 -DNDEBUG -DNTIMER -DNPRINT -DINTERNAL_ARPACK -DPRPACK_IGRAPH_SUPPORT -DIGRAPH_THREAD_LOCAL=/**/ -I'/Users/szhorvat/rsan/lib/R/library/cpp11/include' -I/opt/local/include    -fPIC  -g -fno-omit-frame-pointer -Og  -c cpprinterface.cpp -o cpprinterface.o
ccache clang++-mp-16 -fsanitize=address -std=gnu++17 -dynamiclib -Wl,-headerpad_max_install_names -undefined dynamic_lookup -single_module -multiply_defined suppress -L/opt/local/lib -o igraph.so core/centrality/betweenness.o core/centrality/centrality_other.o core/centrality/centralization.o core/centrality/closeness.o core/centrality/coreness.o core/centrality/prpack.o core/centrality/prpack/prpack_base_graph.o core/centrality/prpack/prpack_igraph_graph.o core/centrality/prpack/prpack_preprocessed_ge_graph.o core/centrality/prpack/prpack_preprocessed_gs_graph.o core/centrality/prpack/prpack_preprocessed_scc_graph.o core/centrality/prpack/prpack_preprocessed_schur_graph.o core/centrality/prpack/prpack_result.o core/centrality/prpack/prpack_solver.o core/centrality/prpack/prpack_utils.o core/cliques/cliquer/cliquer.o core/cliques/cliquer/cliquer_graph.o core/cliques/cliquer/reorder.o core/cliques/cliquer_wrapper.o core/cliques/cliques.o core/cliques/glet.o core/cliques/maximal_cliques.o core/community/community_misc.o core/community/edge_betweenness.o core/community/fast_modularity.o core/community/fluid.o core/community/infomap/infomap.o core/community/infomap/infomap_FlowGraph.o core/community/infomap/infomap_Greedy.o core/community/infomap/infomap_Node.o core/community/label_propagation.o core/community/leading_eigenvector.o core/community/leiden.o core/community/louvain.o core/community/modularity.o core/community/optimal_modularity.o core/community/spinglass/NetDataTypes.o core/community/spinglass/NetRoutines.o core/community/spinglass/clustertool.o core/community/spinglass/pottsmodel_2.o core/community/walktrap/walktrap.o core/community/walktrap/walktrap_communities.o core/community/walktrap/walktrap_graph.o core/community/walktrap/walktrap_heap.o core/connectivity/cohesive_blocks.o core/connectivity/components.o core/connectivity/separators.o core/constructors/adjacency.o core/constructors/atlas.o core/constructors/basic_constructors.o core/constructors/de_bruijn.o core/constructors/famous.o core/constructors/full.o core/constructors/kautz.o core/constructors/lcf.o core/constructors/linegraph.o core/constructors/prufer.o core/constructors/regular.o core/core/array.o core/core/buckets.o core/core/cutheap.o core/core/dqueue.o core/core/error.o core/core/estack.o core/core/fixed_vectorlist.o core/core/grid.o core/core/heap.o core/core/indheap.o core/core/interruption.o core/core/marked_queue.o core/core/matrix.o core/core/memory.o core/core/printing.o core/core/progress.o core/core/psumtree.o core/core/set.o core/core/sparsemat.o core/core/spmatrix.o core/core/stack.o core/core/statusbar.o core/core/strvector.o core/core/trie.o core/core/vector.o core/core/vector_ptr.o core/flow/flow.o core/flow/st-cuts.o core/games/barabasi.o core/games/callaway_traits.o core/games/citations.o core/games/correlated.o core/games/degree_sequence.o core/games/degree_sequence_vl/gengraph_box_list.o core/games/degree_sequence_vl/gengraph_degree_sequence.o core/games/degree_sequence_vl/gengraph_graph_molloy_hash.o core/games/degree_sequence_vl/gengraph_graph_molloy_optimized.o core/games/degree_sequence_vl/gengraph_mr-connected.o core/games/degree_sequence_vl/gengraph_powerlaw.o core/games/degree_sequence_vl/gengraph_random.o core/games/dotproduct.o core/games/erdos_renyi.o core/games/establishment.o core/games/forestfire.o core/games/grg.o core/games/growing_random.o core/games/islands.o core/games/k_regular.o core/games/preference.o core/games/recent_degree.o core/games/sbm.o core/games/static_fitness.o core/games/tree.o core/games/watts_strogatz.o core/graph/adjlist.o core/graph/attributes.o core/graph/basic_query.o core/graph/cattributes.o core/graph/iterators.o core/graph/type_indexededgelist.o core/graph/visitors.o core/hrg/hrg.o core/hrg/hrg_types.o core/internal/glpk_support.o core/internal/hacks.o core/internal/lsap.o core/internal/qsort.o core/internal/qsort_r.o core/internal/zeroin.o core/io/dimacs.o core/io/dl-lexer.o core/io/dl-parser.o core/io/dl.o core/io/dot.o core/io/edgelist.o core/io/gml-lexer.o core/io/gml-parser.o core/io/gml-tree.o core/io/gml.o core/io/graphdb.o core/io/graphml.o core/io/leda.o core/io/lgl-lexer.o core/io/lgl-parser.o core/io/lgl.o core/io/ncol-lexer.o core/io/ncol-parser.o core/io/ncol.o core/io/pajek-lexer.o core/io/pajek-parser.o core/io/pajek.o core/isomorphism/bliss.o core/isomorphism/bliss/defs.o core/isomorphism/bliss/graph.o core/isomorphism/bliss/heap.o core/isomorphism/bliss/orbit.o core/isomorphism/bliss/partition.o core/isomorphism/bliss/uintseqhash.o core/isomorphism/bliss/utils.o core/isomorphism/isoclasses.o core/isomorphism/isomorphism_misc.o core/isomorphism/lad.o core/isomorphism/queries.o core/isomorphism/vf2.o core/layout/circular.o core/layout/davidson_harel.o core/layout/drl/DensityGrid.o core/layout/drl/DensityGrid_3d.o core/layout/drl/drl_graph.o core/layout/drl/drl_graph_3d.o core/layout/drl/drl_layout.o core/layout/drl/drl_layout_3d.o core/layout/drl/drl_parse.o core/layout/fruchterman_reingold.o core/layout/gem.o core/layout/graphopt.o core/layout/kamada_kawai.o core/layout/large_graph.o core/layout/layout_bipartite.o core/layout/layout_grid.o core/layout/layout_random.o core/layout/mds.o core/layout/merge_dla.o core/layout/merge_grid.o core/layout/reingold_tilford.o core/layout/sugiyama.o core/linalg/arpack.o core/linalg/blas.o core/linalg/eigen.o core/linalg/lapack.o core/math/bfgs.o core/math/complex.o core/math/utils.o core/misc/bipartite.o core/misc/chordality.o core/misc/cocitation.o core/misc/coloring.o core/misc/conversion.o core/misc/degree_sequence.o core/misc/embedding.o core/misc/feedback_arc_set.o core/misc/graphicality.o core/misc/matching.o core/misc/microscopic_update.o core/misc/mixing.o core/misc/motifs.o core/misc/other.o core/misc/scan.o core/misc/sir.o core/misc/spanning_trees.o core/operators/add_edge.o core/operators/complementer.o core/operators/compose.o core/operators/connect_neighborhood.o core/operators/contract.o core/operators/difference.o core/operators/disjoint_union.o core/operators/intersection.o core/operators/misc_internal.o core/operators/permute.o core/operators/reverse.o core/operators/rewire.o core/operators/rewire_edges.o core/operators/simplify.o core/operators/subgraph.o core/operators/union.o core/paths/all_shortest_paths.o core/paths/bellman_ford.o core/paths/dijkstra.o core/paths/distances.o core/paths/eulerian.o core/paths/histogram.o core/paths/johnson.o core/paths/random_walk.o core/paths/shortest_paths.o core/paths/simple_paths.o core/paths/unweighted.o core/properties/basic_properties.o core/properties/constraint.o core/properties/convergence_degree.o core/properties/dag.o core/properties/degrees.o core/properties/girth.o core/properties/loops.o core/properties/multiplicity.o core/properties/neighborhood.o core/properties/spectral.o core/properties/trees.o core/properties/triangles.o core/random/random.o core/scg/scg.o core/scg/scg_approximate_methods.o core/scg/scg_exact_scg.o core/scg/scg_kmeans.o core/scg/scg_optimal_method.o core/scg/scg_utils.o core/version.o vendor/cs/cs_add.o vendor/cs/cs_amd.o vendor/cs/cs_chol.o vendor/cs/cs_cholsol.o vendor/cs/cs_compress.o vendor/cs/cs_counts.o vendor/cs/cs_cumsum.o vendor/cs/cs_dfs.o vendor/cs/cs_dmperm.o vendor/cs/cs_droptol.o vendor/cs/cs_dropzeros.o vendor/cs/cs_dupl.o vendor/cs/cs_entry.o vendor/cs/cs_ereach.o vendor/cs/cs_etree.o vendor/cs/cs_fkeep.o vendor/cs/cs_gaxpy.o vendor/cs/cs_happly.o vendor/cs/cs_house.o vendor/cs/cs_ipvec.o vendor/cs/cs_leaf.o vendor/cs/cs_load.o vendor/cs/cs_lsolve.o vendor/cs/cs_ltsolve.o vendor/cs/cs_lu.o vendor/cs/cs_lusol.o vendor/cs/cs_malloc.o vendor/cs/cs_maxtrans.o vendor/cs/cs_multiply.o vendor/cs/cs_norm.o vendor/cs/cs_permute.o vendor/cs/cs_pinv.o vendor/cs/cs_post.o vendor/cs/cs_print.o vendor/cs/cs_pvec.o vendor/cs/cs_qr.o vendor/cs/cs_qrsol.o vendor/cs/cs_randperm.o vendor/cs/cs_reach.o vendor/cs/cs_scatter.o vendor/cs/cs_scc.o vendor/cs/cs_schol.o vendor/cs/cs_spsolve.o vendor/cs/cs_sqr.o vendor/cs/cs_symperm.o vendor/cs/cs_tdfs.o vendor/cs/cs_transpose.o vendor/cs/cs_updown.o vendor/cs/cs_usolve.o vendor/cs/cs_util.o vendor/cs/cs_utsolve.o vendor/mini-gmp/mini-gmp.o vendor/plfit/gss.o vendor/plfit/hzeta.o vendor/plfit/kolmogorov.o vendor/plfit/lbfgs.o vendor/plfit/mt.o vendor/plfit/options.o vendor/plfit/platform.o vendor/plfit/plfit.o vendor/plfit/plfit_error.o vendor/plfit/rbinom.o vendor/plfit/sampling.o vendor/arpack/dgetv0.o vendor/arpack/dlaqrb.o vendor/arpack/dmout.o vendor/arpack/dnaitr.o vendor/arpack/dnapps.o vendor/arpack/dnaup2.o vendor/arpack/dnaupd.o vendor/arpack/dnconv.o vendor/arpack/dneigh.o vendor/arpack/dneupd.o vendor/arpack/dngets.o vendor/arpack/dsaitr.o vendor/arpack/dsapps.o vendor/arpack/dsaup2.o vendor/arpack/dsaupd.o vendor/arpack/dsconv.o vendor/arpack/dseigt.o vendor/arpack/dsesrt.o vendor/arpack/dseupd.o vendor/arpack/dsgets.o vendor/arpack/dsortc.o vendor/arpack/dsortr.o vendor/arpack/dstatn.o vendor/arpack/dstats.o vendor/arpack/dstqrb.o vendor/arpack/dvout.o vendor/arpack/ivout.o vendor/arpack/second.o vendor/arpack/wrap.o vendor/simpleraytracer/Color.o vendor/simpleraytracer/Light.o vendor/simpleraytracer/Point.o vendor/simpleraytracer/RIgraphRay.o vendor/simpleraytracer/Ray.o vendor/simpleraytracer/RayTracer.o vendor/simpleraytracer/RayVector.o vendor/simpleraytracer/Shape.o vendor/simpleraytracer/Sphere.o vendor/simpleraytracer/Triangle.o vendor/simpleraytracer/unit_limiter.o vendor/uuid/R.o vendor/uuid/clear.o vendor/uuid/compare.o vendor/uuid/copy.o vendor/uuid/gen_uuid.o vendor/uuid/isnull.o vendor/uuid/pack.o vendor/uuid/parse.o vendor/uuid/unpack.o vendor/uuid/unparse.o rinterface.o rinterface_extra.o rrandom.o lazyeval.o init.o cpp11.o cpprinterface.o -L/opt/local/lib -lxml2 -L/opt/local/lib -lz -L/opt/local/lib -llzma -lpthread -liconv -L/opt/local/lib -licui18n -licuuc -licudata -lgmp -lglpk -L/Users/szhorvat/rsan/lib/R/lib -lRlapack -L/Users/szhorvat/rsan/lib/R/lib -lRblas -L/opt/local/lib/libgcc -lgfortran -lquadmath -lm -Wl,-rpath /opt/local/lib/gcc12 -lintl -Wl,-framework -Wl,CoreFoundation
installing to /private/tmp/00LOCK-rigraph/00new/igraph/libs
** R
** demo
** inst
** preparing package for lazy loading
** help
*** installing help indices
** building package indices
** installing vignettes
** testing if installed package can be loaded from temporary location
** checking absolute paths in shared objects and dynamic libraries
** testing if installed package can be loaded from final location
** testing if installed package keeps a record of temporary installation path
* DONE (igraph)

@szhorvat
Copy link
Member

The best way I know is Docker.

Another way to proceed is to cache the instrumented R installation (along with its devtools installation) in GitHub actions. This is just a suggestion. I know from past experience it would take me many hours to get this to work, as I'm not familiar enough with GH actions and its caching ...

@Antonov548
Copy link
Contributor Author

Another way to proceed is to cache the instrumented R installation (along with its devtools installation) in GitHub actions. This is just a suggestion. I know from past experience it would take me many hours to get this to work, as I'm not familiar enough with GH actions and its caching ...

Thank you for your efforts. I think I can try to figure out what is wrong with Docker solution.

May I ask you also check which dependencies has igraph.so in /src folder after build?

@szhorvat
Copy link
Member

May I ask you also check which dependencies has igraph.so in /src folder after build?

This is on macOS:

$ otool -L igraph.so
igraph.so:
	igraph.so (compatibility version 0.0.0, current version 0.0.0)
	/opt/local/lib/libxml2.2.dylib (compatibility version 13.0.0, current version 13.4.0)
	/opt/local/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.2.13)
	/opt/local/lib/liblzma.5.dylib (compatibility version 10.0.0, current version 10.3.0)
	/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1252.250.1)
	/opt/local/lib/libiconv.2.dylib (compatibility version 9.0.0, current version 9.1.0)
	/opt/local/lib/libicui18n.73.dylib (compatibility version 73.0.0, current version 73.1.0)
	/opt/local/lib/libicuuc.73.dylib (compatibility version 73.0.0, current version 73.1.0)
	/opt/local/lib/libicudata.73.dylib (compatibility version 73.0.0, current version 73.1.0)
	/opt/local/lib/libgmp.10.dylib (compatibility version 15.0.0, current version 15.1.0)
	/opt/local/lib/libglpk.40.dylib (compatibility version 44.0.0, current version 44.1.0)
	libRlapack.dylib (compatibility version 4.4.0, current version 4.4.0)
	libRblas.dylib (compatibility version 0.0.0, current version 0.0.0)
	@rpath/libgfortran.5.dylib (compatibility version 6.0.0, current version 6.0.0)
	@rpath/libquadmath.0.dylib (compatibility version 1.0.0, current version 1.0.0)
	/opt/local/lib/libintl.8.dylib (compatibility version 12.0.0, current version 12.0.0)
	/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation (compatibility version 150.0.0, current version 1575.17.0)
	/usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 400.9.4)
	@rpath/libclang_rt.asan_osx_dynamic.dylib (compatibility version 0.0.0, current version 0.0.0)

@Antonov548
Copy link
Contributor Author

Antonov548 commented May 29, 2023

Okay, no worries about any time you need spent more, I finally got the correct result with Docker solution:

CC: @krlmlr

Tests output:
══ Results ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
Duration: 303.1 s

── Skipped tests  ───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
• getRversion() >= 4.3 is TRUE (1)
• nested igraph call handling not implemented yet (1)
• No GLPK library (3)

[ FAIL 0 | WARN 0 | SKIP 5 | PASS 4107 ]
LLVMSymbolizer: error reading file: No such file or directory

=================================================================
==30374==ERROR: LeakSanitizer: detected memory leaks

Direct leak of 1248 byte(s) in 1 object(s) allocated from:
    #0 0x560c30fd9f18 in __interceptor_calloc (/usr/local/RDcsan/lib/R/bin/exec/R+0xa3f18) (BuildId: b4d836d25e9bc2b82c4c6e83ab9786c29e4f7b2b)
    #1 0x7f6ca37a58dc  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x9828dc) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #2 0x7f6ca418a517  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x1367517) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #3 0x7f6ca418ace2  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x1367ce2) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #4 0x7f6ca418ae74  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x1367e74) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #5 0x7f6ca419363b  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x137063b) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #6 0x7f6ca412799d  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x130499d) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #7 0x7f6cbd429c15 in R_doDotCall /tmp/r-source/src/main/dotcode.c:868:17
    #8 0x7f6cbd491254 in do_dotcall /tmp/r-source/src/main/dotcode.c:1551:11
    #9 0x7f6cbd5e46bc in Rf_eval /tmp/r-source/src/main/eval.c:1120:9
    #10 0x7f6cbd6ba8cb in do_set /tmp/r-source/src/main/eval.c:3250:8
    #11 0x7f6cbd5e3b79 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #12 0x7f6cbd6b9077 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #13 0x7f6cbd5e3b79 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #14 0x7f6cbd6ae123 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #15 0x7f6cbd6abcb9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #16 0x7f6cbd5e4bfc in Rf_eval /tmp/r-source/src/main/eval.c:1140:12
    #17 0x7f6cbd6b9077 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #18 0x7f6cbd5e3b79 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #19 0x7f6cbd6ae123 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #20 0x7f6cbd6abcb9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #21 0x7f6cbd5e4bfc in Rf_eval /tmp/r-source/src/main/eval.c:1140:12
    #22 0x7f6cbd6a959d in Rf_evalList /tmp/r-source/src/main/eval.c:3348:12
    #23 0x7f6cbd5e40d6 in Rf_eval /tmp/r-source/src/main/eval.c:1111:6
    #24 0x7f6cbd7a5359 in do_logic2 /tmp/r-source/src/main/logic.c:303:6
    #25 0x7f6cbd5e3b79 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #26 0x7f6cbd6b2288 in do_if /tmp/r-source/src/main/eval.c:2506:5
    #27 0x7f6cbd5e3b79 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #28 0x7f6cbd6b9077 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #29 0x7f6cbd5e3b79 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12

Direct leak of 160 byte(s) in 1 object(s) allocated from:
    #0 0x560c30fd9f18 in __interceptor_calloc (/usr/local/RDcsan/lib/R/bin/exec/R+0xa3f18) (BuildId: b4d836d25e9bc2b82c4c6e83ab9786c29e4f7b2b)
    #1 0x7f6ca37a58dc  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x9828dc) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #2 0x7f6ca418a517  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x1367517) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #3 0x7f6ca418ad2c  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x1367d2c) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #4 0x7f6ca418ae74  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x1367e74) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #5 0x7f6ca419363b  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x137063b) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #6 0x7f6ca412799d  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x130499d) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #7 0x7f6cbd429c15 in R_doDotCall /tmp/r-source/src/main/dotcode.c:868:17
    #8 0x7f6cbd491254 in do_dotcall /tmp/r-source/src/main/dotcode.c:1551:11
    #9 0x7f6cbd5e46bc in Rf_eval /tmp/r-source/src/main/eval.c:1120:9
    #10 0x7f6cbd6ba8cb in do_set /tmp/r-source/src/main/eval.c:3250:8
    #11 0x7f6cbd5e3b79 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #12 0x7f6cbd6b9077 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #13 0x7f6cbd5e3b79 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #14 0x7f6cbd6ae123 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #15 0x7f6cbd6abcb9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #16 0x7f6cbd5e4bfc in Rf_eval /tmp/r-source/src/main/eval.c:1140:12
    #17 0x7f6cbd6b9077 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #18 0x7f6cbd5e3b79 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #19 0x7f6cbd6ae123 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #20 0x7f6cbd6abcb9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #21 0x7f6cbd5e4bfc in Rf_eval /tmp/r-source/src/main/eval.c:1140:12
    #22 0x7f6cbd6a959d in Rf_evalList /tmp/r-source/src/main/eval.c:3348:12
    #23 0x7f6cbd5e40d6 in Rf_eval /tmp/r-source/src/main/eval.c:1111:6
    #24 0x7f6cbd7a5359 in do_logic2 /tmp/r-source/src/main/logic.c:303:6
    #25 0x7f6cbd5e3b79 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #26 0x7f6cbd6b2288 in do_if /tmp/r-source/src/main/eval.c:2506:5
    #27 0x7f6cbd5e3b79 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #28 0x7f6cbd6b9077 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #29 0x7f6cbd5e3b79 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12

Direct leak of 48 byte(s) in 1 object(s) allocated from:
    #0 0x560c30fd9f18 in __interceptor_calloc (/usr/local/RDcsan/lib/R/bin/exec/R+0xa3f18) (BuildId: b4d836d25e9bc2b82c4c6e83ab9786c29e4f7b2b)
    #1 0x7f6ca37a58dc  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x9828dc) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #2 0x7f6ca418a517  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x1367517) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #3 0x7f6ca418ad2c  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x1367d2c) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #4 0x7f6ca418ae74  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x1367e74) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #5 0x7f6ca419363b  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x137063b) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #6 0x7f6ca41a0b2d  (/tmp/Rtmp7NkGTe/pkgload76a63b65e127/igraph.so+0x137db2d) (BuildId: 01ea983337b728ea6c6222b569d728611dd051fc)
    #7 0x7f6cbd429c15 in R_doDotCall /tmp/r-source/src/main/dotcode.c:868:17
    #8 0x7f6cbd491254 in do_dotcall /tmp/r-source/src/main/dotcode.c:1551:11
    #9 0x7f6cbd5e46bc in Rf_eval /tmp/r-source/src/main/eval.c:1120:9
    #10 0x7f6cbd6b9077 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #11 0x7f6cbd5e3b79 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #12 0x7f6cbd6ae123 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #13 0x7f6cbd6abcb9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #14 0x7f6cbd611ad9 in bcEval /tmp/r-source/src/main/eval.c:7414:12
    #15 0x7f6cbd5e24f1 in Rf_eval /tmp/r-source/src/main/eval.c:1013:8
    #16 0x7f6cbd6a8a04 in forcePromise /tmp/r-source/src/main/eval.c:833:8
    #17 0x7f6cbd5e3034 in Rf_eval /tmp/r-source/src/main/eval.c:1053:6
    #18 0x7f6cbd60913d in bcEval /tmp/r-source/src/main/eval.c:7362:16
    #19 0x7f6cbd5e24f1 in Rf_eval /tmp/r-source/src/main/eval.c:1013:8
    #20 0x7f6cbd6ae123 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #21 0x7f6cbd6abcb9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #22 0x7f6cbd611ad9 in bcEval /tmp/r-source/src/main/eval.c:7414:12
    #23 0x7f6cbd5e24f1 in Rf_eval /tmp/r-source/src/main/eval.c:1013:8
    #24 0x7f6cbd6ae123 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #25 0x7f6cbd6abcb9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #26 0x7f6cbd5e4bfc in Rf_eval /tmp/r-source/src/main/eval.c:1140:12
    #27 0x7f6cbd6ba8cb in do_set /tmp/r-source/src/main/eval.c:3250:8
    #28 0x7f6cbd5e3b79 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #29 0x7f6cbd6b9077 in do_begin /tmp/r-source/src/main/eval.c:2798:10

SUMMARY: AddressSanitizer: 1456 byte(s) leaked in 3 allocation(s).

@Antonov548
Copy link
Contributor Author

@szhorvat Also would be good to have proper call stack from igraph.so. I remember you mentioned something in wiki to make it works.

@Antonov548
Copy link
Contributor Author

Antonov548 commented May 30, 2023

@krlmlr Can confirm that sanitizer which is running in Docker don't show leaks in this branch:

══ Results ═══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
Duration: 303.3 s

── Skipped tests  ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
• getRversion() >= 4.3 is TRUE (1)
• nested igraph call handling not implemented yet (1)
• No GLPK library (3)

[ FAIL 0 | WARN 0 | SKIP 5 | PASS 4101 ]

@krlmlr
Copy link
Contributor

krlmlr commented Jun 5, 2023

Finally seeing the leaks with the main branch, now checking this branch:

docker run --rm -ti --platform linux/amd64 -v $(pwd):/igraph ghcr.io/krlmlr/igraph-san:main RDcsan -q -e 'setwd("igraph"); pkgload::load_all(); Sys.setenv(TESTTHAT_PARALLEL=FALSE); testthat::test_local(reporter = "location"); q()'

Also confirming that the stack trace could be improved:

=================================================================
==1==ERROR: LeakSanitizer: detected memory leaks

Direct leak of 1248 byte(s) in 1 object(s) allocated from:
    #0 0x5555555f7f18 in __interceptor_calloc (/usr/local/RDcsan/lib/R/bin/exec/R+0xa3f18) (BuildId: b4d836d25e9bc2b82c4c6e83ab9786c29e4f7b2b)
    #1 0x7fffe40358dc  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x9828dc) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #2 0x7fffe4a1a517  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x1367517) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #3 0x7fffe4a1ace2  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x1367ce2) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #4 0x7fffe4a1ae74  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x1367e74) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #5 0x7fffe4a2363b  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x137063b) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #6 0x7fffe49b799d  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x130499d) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #7 0x7fffff0b1125 in R_doDotCall /tmp/r-source/src/main/dotcode.c:868:17
    #8 0x7fffff118764 in do_dotcall /tmp/r-source/src/main/dotcode.c:1551:11
    #9 0x7fffff26bbcc in Rf_eval /tmp/r-source/src/main/eval.c:1120:9
    #10 0x7fffff341ddb in do_set /tmp/r-source/src/main/eval.c:3250:8
    #11 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #12 0x7fffff340587 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #13 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #14 0x7fffff335633 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #15 0x7fffff3331c9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #16 0x7fffff26c10c in Rf_eval /tmp/r-source/src/main/eval.c:1140:12
    #17 0x7fffff340587 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #18 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #19 0x7fffff335633 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #20 0x7fffff3331c9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #21 0x7fffff26c10c in Rf_eval /tmp/r-source/src/main/eval.c:1140:12
    #22 0x7fffff330aad in Rf_evalList /tmp/r-source/src/main/eval.c:3348:12
    #23 0x7fffff26b5e6 in Rf_eval /tmp/r-source/src/main/eval.c:1111:6
    #24 0x7fffff42c869 in do_logic2 /tmp/r-source/src/main/logic.c:303:6
    #25 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #26 0x7fffff339798 in do_if /tmp/r-source/src/main/eval.c:2506:5
    #27 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #28 0x7fffff340587 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #29 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12

Direct leak of 160 byte(s) in 1 object(s) allocated from:
    #0 0x5555555f7f18 in __interceptor_calloc (/usr/local/RDcsan/lib/R/bin/exec/R+0xa3f18) (BuildId: b4d836d25e9bc2b82c4c6e83ab9786c29e4f7b2b)
    #1 0x7fffe40358dc  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x9828dc) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #2 0x7fffe4a1a517  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x1367517) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #3 0x7fffe4a1ad2c  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x1367d2c) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #4 0x7fffe4a1ae74  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x1367e74) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #5 0x7fffe4a2363b  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x137063b) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #6 0x7fffe49b799d  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x130499d) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #7 0x7fffff0b1125 in R_doDotCall /tmp/r-source/src/main/dotcode.c:868:17
    #8 0x7fffff118764 in do_dotcall /tmp/r-source/src/main/dotcode.c:1551:11
    #9 0x7fffff26bbcc in Rf_eval /tmp/r-source/src/main/eval.c:1120:9
    #10 0x7fffff341ddb in do_set /tmp/r-source/src/main/eval.c:3250:8
    #11 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #12 0x7fffff340587 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #13 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #14 0x7fffff335633 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #15 0x7fffff3331c9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #16 0x7fffff26c10c in Rf_eval /tmp/r-source/src/main/eval.c:1140:12
    #17 0x7fffff340587 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #18 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #19 0x7fffff335633 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #20 0x7fffff3331c9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #21 0x7fffff26c10c in Rf_eval /tmp/r-source/src/main/eval.c:1140:12
    #22 0x7fffff330aad in Rf_evalList /tmp/r-source/src/main/eval.c:3348:12
    #23 0x7fffff26b5e6 in Rf_eval /tmp/r-source/src/main/eval.c:1111:6
    #24 0x7fffff42c869 in do_logic2 /tmp/r-source/src/main/logic.c:303:6
    #25 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #26 0x7fffff339798 in do_if /tmp/r-source/src/main/eval.c:2506:5
    #27 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #28 0x7fffff340587 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #29 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12

Direct leak of 48 byte(s) in 1 object(s) allocated from:
    #0 0x5555555f7f18 in __interceptor_calloc (/usr/local/RDcsan/lib/R/bin/exec/R+0xa3f18) (BuildId: b4d836d25e9bc2b82c4c6e83ab9786c29e4f7b2b)
    #1 0x7fffe40358dc  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x9828dc) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #2 0x7fffe4a1a517  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x1367517) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #3 0x7fffe4a1ad2c  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x1367d2c) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #4 0x7fffe4a1ae74  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x1367e74) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #5 0x7fffe4a2363b  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x137063b) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #6 0x7fffe4a30b2d  (/tmp/RtmpNCOPsS/pkgload1165b759e/igraph.so+0x137db2d) (BuildId: 089d83fedea74ec90cfa91c0f425cc201a9c7ff8)
    #7 0x7fffff0b1125 in R_doDotCall /tmp/r-source/src/main/dotcode.c:868:17
    #8 0x7fffff118764 in do_dotcall /tmp/r-source/src/main/dotcode.c:1551:11
    #9 0x7fffff26bbcc in Rf_eval /tmp/r-source/src/main/eval.c:1120:9
    #10 0x7fffff340587 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #11 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #12 0x7fffff335633 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #13 0x7fffff3331c9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #14 0x7fffff298fe9 in bcEval /tmp/r-source/src/main/eval.c:7414:12
    #15 0x7fffff269a01 in Rf_eval /tmp/r-source/src/main/eval.c:1013:8
    #16 0x7fffff32ff14 in forcePromise /tmp/r-source/src/main/eval.c:833:8
    #17 0x7fffff26a544 in Rf_eval /tmp/r-source/src/main/eval.c:1053:6
  1 Merge branch 'main' into f-memory-leak
    #18 0x7fffff29064d in bcEval /tmp/r-source/src/main/eval.c:7362:16
    #19 0x7fffff269a01 in Rf_eval /tmp/r-source/src/main/eval.c:1013:8
    #20 0x7fffff335633 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #21 0x7fffff3331c9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #22 0x7fffff298fe9 in bcEval /tmp/r-source/src/main/eval.c:7414:12
    #23 0x7fffff269a01 in Rf_eval /tmp/r-source/src/main/eval.c:1013:8
    #24 0x7fffff335633 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #25 0x7fffff3331c9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #26 0x7fffff26c10c in Rf_eval /tmp/r-source/src/main/eval.c:1140:12
    #27 0x7fffff341ddb in do_set /tmp/r-source/src/main/eval.c:3250:8
    #28 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #29 0x7fffff340587 in do_begin /tmp/r-source/src/main/eval.c:2798:10

SUMMARY: AddressSanitizer: 1456 byte(s) leaked in 3 allocation(s).

@krlmlr
Copy link
Contributor

krlmlr commented Jun 5, 2023

Confirming absence of memory leaks on this branch.

The following command line runs much faster and still shows one memory leak on main and zero on this branch:

docker run --rm -ti --platform linux/amd64 -v $(pwd):/igraph ghcr.io/krlmlr/igraph-san:main RDcsan -q -e 'setwd("igraph"); pkgload::load_all(); Sys.setenv(TESTTHAT_PARALLEL=FALSE); testthat::test_local(filter = "^serialize$", reporter = "location"); q()'

@krlmlr
Copy link
Contributor

krlmlr commented Jun 5, 2023

Simpler, without the final q() :

docker run --rm -ti --platform linux/amd64 -v $(pwd):/igraph ghcr.io/krlmlr/igraph-san:main RDcsan -q -e 'setwd("igraph"); pkgload::load_all(); Sys.setenv(TESTTHAT_PARALLEL=FALSE); testthat::test_local(filter = "^serialize$", reporter = "location")'

@krlmlr
Copy link
Contributor

krlmlr commented Jun 5, 2023

And I'm seeing proper source references with the following test.sh in the source directory and the following Docker command line. Note load_package = "installed" .

For the next iteration, we should wrap this in a script that we commit and document, for now, this is good enough.

test.sh

set -eux

cd $(dirname $0)
RDcsan CMD INSTALL . --no-byte-compile
RDcsan -q -e 'Sys.setenv(TESTTHAT_PARALLEL=FALSE); testthat::test_local(filter = "^serialize$", reporter = "location", load_package = "installed")'

Docker

docker run --rm -ti --platform linux/amd64 -v $(pwd):/igraph ghcr.io/krlmlr/igraph-san:main sh igraph/test.sh

Output

=================================================================
==1222==ERROR: LeakSanitizer: detected memory leaks

Direct leak of 48 byte(s) in 1 object(s) allocated from:
    #0 0x5555555f7f18 in __interceptor_calloc (/usr/local/RDcsan/lib/R/bin/exec/R+0xa3f18) (BuildId: b4d836d25e9bc2b82c4c6e83ab9786c29e4f7b2b)
    #1 0x7fffe91008dc in igraph_vector_init /igraph/src/core/core/vector.pmt:127:21
    #2 0x7fffe9ae5517 in R_igraph_restore_pointer /igraph/src/rinterface_extra.c:2958:3
    #3 0x7fffe9ae5d2c in R_igraph_get_pointer /igraph/src/rinterface_extra.c:2984:5
    #4 0x7fffe9ae5e74 in R_igraph_get_n /igraph/src/rinterface_extra.c:2998:20
    #5 0x7fffe9aee63b in R_SEXP_to_igraph /igraph/src/rinterface_extra.c:3674:10
    #6 0x7fffe9afbb2d in R_igraph_is_directed /igraph/src/rinterface_extra.c:4181:3
    #7 0x7fffff0b1125 in R_doDotCall /tmp/r-source/src/main/dotcode.c:868:17
    #8 0x7fffff118764 in do_dotcall /tmp/r-source/src/main/dotcode.c:1551:11
    #9 0x7fffff26bbcc in Rf_eval /tmp/r-source/src/main/eval.c:1120:9
    #10 0x7fffff340587 in do_begin /tmp/r-source/src/main/eval.c:2798:10
    #11 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #12 0x7fffff335633 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #13 0x7fffff3331c9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #14 0x7fffff298fe9 in bcEval /tmp/r-source/src/main/eval.c:7414:12
    #15 0x7fffff269a01 in Rf_eval /tmp/r-source/src/main/eval.c:1013:8
    #16 0x7fffff32ff14 in forcePromise /tmp/r-source/src/main/eval.c:833:8
    #17 0x7fffff26a544 in Rf_eval /tmp/r-source/src/main/eval.c:1053:6
    #18 0x7fffff29064d in bcEval /tmp/r-source/src/main/eval.c:7362:16
    #19 0x7fffff269a01 in Rf_eval /tmp/r-source/src/main/eval.c:1013:8
    #20 0x7fffff335633 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #21 0x7fffff3331c9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #22 0x7fffff298fe9 in bcEval /tmp/r-source/src/main/eval.c:7414:12
    #23 0x7fffff269a01 in Rf_eval /tmp/r-source/src/main/eval.c:1013:8
    #24 0x7fffff335633 in R_execClosure /tmp/r-source/src/main/eval.c:2187:22
    #25 0x7fffff3331c9 in Rf_applyClosure /tmp/r-source/src/main/eval.c:2113:16
    #26 0x7fffff26c10c in Rf_eval /tmp/r-source/src/main/eval.c:1140:12
    #27 0x7fffff341ddb in do_set /tmp/r-source/src/main/eval.c:3250:8
    #28 0x7fffff26b089 in Rf_eval /tmp/r-source/src/main/eval.c:1092:12
    #29 0x7fffff340587 in do_begin /tmp/r-source/src/main/eval.c:2798:10

SUMMARY: AddressSanitizer: 48 byte(s) leaked in 1 allocation(s).

@krlmlr krlmlr merged commit c9f5092 into main Jun 5, 2023
@krlmlr krlmlr deleted the f-memory-leak branch June 5, 2023 04:13
@krlmlr
Copy link
Contributor

krlmlr commented Jun 5, 2023

Thanks!

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jun 5, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Memory leaks in dev version
3 participants