fix some stupid issue with weak symbols (#56), also minor makefile fixes

This commit is contained in:
Sir Walrus
2024-05-22 18:22:44 +02:00
parent 20b0da9ab9
commit 1bd93237a9
3 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,6 @@
void* operator new(size_t n) { return malloc(n); } // forget allocation failures, let them segfault.
void operator delete(void * p) { free(p); }
void operator delete(void * p, size_t n) { free(p); }
extern "C" void __cxa_pure_virtual() { abort(); }
#if __GNUC__ && (__cpp_rtti || __cpp_exceptions)
#warning "Consider building with -fno-exceptions -fno-rtti, to avoid dependencies on libgcc_s_sjlj-1.dll and libstdc++-6.dll."