algbio / ggcat

Compacted and colored de Bruijn graph construction and querying
MIT License
72 stars 10 forks source link

Fix C++ API makefile when compiler is not called g++ #28

Closed tmaklin closed 1 year ago

tmaklin commented 1 year ago

Building the C++ API fails on systems where the GNU C++ compiler is called something other than g++ (this happens e.g. inside a conda recipe). Replacing the call to g++ with the Makefile environment variable $(CXX) fixes this.

Guilucand commented 1 year ago

Hi, thanks for the fix! I'll merge it now.