ESP8266 ESPAsyncTCP Error

Hi, suport highly appreciated !!
Using Arduino IDE I tried several standard codes with included ESPAsyncTCP.h library( e.g. ESP8266 NodeMCU Web Server with Slider: Control LED Brightness (PWM) | Random Nerd Tutorials ) without any changes and with all of them I got following (or similar) error message :

Arduino: 1.8.13 (Windows 10), Board: "NodeMCU 1.0 (ESP-12E Module), 80 MHz, 115200, 4M (3M SPIFFS)"

libraries\ESPAsyncTCP-master\ESPAsyncTCP.cpp.o: In function `__gnu_cxx::new_allocator<std::_Sp_counted_deleter<ACErrorTracker*, std::__shared_ptr<ACErrorTracker, (__gnu_cxx::_Lock_policy)0>::_Deleter<std::allocator >, std::allocator, (__gnu_cxx::_Lock_policy)0> >::allocate(unsigned int, void const*)':

C:\Users\Hans\Documents\Arduino\libraries\ESPAsyncTCP-master\src/ESPAsyncTCP.cpp:1194: undefined reference to `std::nothrow'

libraries\ESPAsyncTCP-master\ESPAsyncTCP.cpp.o: In function `_Sp_counted_base':

C:\Users\Hans\Documents\Arduino\libraries\ESPAsyncTCP-master\src/ESPAsyncTCP.cpp:1194: undefined reference to `operator new(unsigned int, std::nothrow_t const&)'

libraries\ESPAsyncTCP-master\ESPAsyncTCP.cpp.o: In function `AsyncServer::_accept(tcp_pcb*, signed char)':

C:\Users\Hans\Documents\Arduino\libraries\ESPAsyncTCP-master\src/ESPAsyncTCP.cpp:1194: undefined reference to `operator new(unsigned int, std::nothrow_t const&)'

collect2.exe: error: ld returned 1 exit status

exit status 1

Fehler beim Kompilieren für das Board NodeMCU 1.0 (ESP-12E Module).

I checked the library folder, I tried several versions of the library, I tried several examples, always error messages with reference to ESPAsyncTCP.h

Thanks for help !
Regards Hans

If your ESP8266 core is about as ancient as your IDE version that might explain the problems. I don't have an ancient core of the ESP8266, a current version does provide the std::nothrow functionality.

Thanks a lot, I loaded IDE V 2.1, but the same problem occurs. I’m wondering because the ESPAsyncTCP library is 4 years old. How to update ESP8266 core?
Best regards
Hans

Thanks a lot, after upgrade to ESP8266 core 3.1.2 it worked..
Best regards Hans