File tree 2 files changed +43
-6
lines changed
2 files changed +43
-6
lines changed Original file line number Diff line number Diff line change @@ -19,3 +19,40 @@ extern "C" void app_main()
19
19
}
20
20
21
21
#endif
22
+
23
+ /*
24
+ ** Block below to be removed with next toolchain
25
+ */
26
+ void *operator new (size_t size)
27
+ {
28
+ return malloc (size);
29
+ }
30
+
31
+ void *operator new [](size_t size)
32
+ {
33
+ return malloc (size);
34
+ }
35
+
36
+ void operator delete (void * ptr)
37
+ {
38
+ free (ptr);
39
+ }
40
+
41
+ void operator delete[] (void * ptr)
42
+ {
43
+ free (ptr);
44
+ }
45
+
46
+ extern " C" void __cxa_pure_virtual (void ) __attribute__ ((__noreturn__));
47
+ extern " C" void __cxa_deleted_virtual (void ) __attribute__ ((__noreturn__));
48
+
49
+ void __cxa_pure_virtual (void )
50
+ {
51
+ abort ();
52
+ }
53
+
54
+ void __cxa_deleted_virtual (void )
55
+ {
56
+ abort ();
57
+ }
58
+
Original file line number Diff line number Diff line change 45
45
"systems" : [
46
46
{
47
47
"host" : " i686-mingw32" ,
48
- "url" : " https://dl.espressif.com/dl/xtensa-esp32-elf-win32-1.22.0-61-gab8375a-5.2.0 .zip" ,
49
- "archiveFileName" : " xtensa-esp32-elf-win32-1.22.0-61-gab8375a-5.2.0 .zip" ,
50
- "checksum" : " SHA-256:d3f726fec691cf3c36593dd4dd8dfad196b989b5f2b462ac30e284ef61df3960 " ,
51
- "size" : " 76220698 "
48
+ "url" : " https://dl.espressif.com/dl/xtensa-esp32-elf-win32-1.22.0-59 .zip" ,
49
+ "archiveFileName" : " xtensa-esp32-elf-win32-1.22.0-59 .zip" ,
50
+ "checksum" : " SHA-256:10476b9c11a7a90f40883413ddfb409f505b20692e316c4e597c4c175b4be09c " ,
51
+ "size" : " 153527527 "
52
52
},
53
53
{
54
54
"host" : " x86_64-apple-darwin" ,
66
66
},
67
67
{
68
68
"host" : " i686-pc-linux-gnu" ,
69
- "url" : " https://dl.espressif.com/dl/xtensa-esp32-elf-linux32-1.22.0-61-gab8375a-5.2.0 .tar.gz" ,
70
- "archiveFileName" : " xtensa-esp32-elf-linux32-1.22.0-61-gab8375a-5.2.0 .tar.gz" ,
69
+ "url" : " https://dl.espressif.com/dl/xtensa-esp32-elf-linux32-1.22.0-59 .tar.gz" ,
70
+ "archiveFileName" : " xtensa-esp32-elf-linux32-1.22.0-59 .tar.gz" ,
71
71
"checksum" : " SHA-256:b24817819f0078fb05895a640e806e0aca9aa96b47b80d2390ac8e2d9ddc955a" ,
72
72
"size" : " 32734156"
73
73
}
You can’t perform that action at this time.
0 commit comments