Hi Chris,
I am currently trying to compile the pgenlib as a RUST FFI for some personal project. Is it valid to compile the pgenlib with the
$(CC) $(CFLAGS) -x c
instead of
$(CXX) $(CXXFLAGS)
I vaguely remember sometime ago it was mentioned that the full plink library are valid C code. I wonder if this would be alright.
(The main reason for this was that if I compile it with C++, the linker names are mingled, and it seems like the RUST FFI bindgen library was not handling the C++ codes as nice as the C codes)
Thanks
Sam