When I try to create a C++ list, I get the following linker error:
/home/yannis300307/.npm/_npx/6d991536f923a4f6/node_modules/.bin/nwlink: app.nwa: in function `main':
(.text.startup.main+0x22): undefined reference to `operator delete(void*)'
Here is a minimal reproduction :
#include <list>
int main() {
std::list<int> test;
}