You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Some minor cleanup
* Fix panic loggers
* Disable runtime type information and exceptions
* Fix more potential bus and warnings
* Add C++ flags for C++ only
* Fix some other warnings
board = az-delivery-devkit-v4 ; Overridden per board
14
14
framework = arduino
15
15
16
-
; Most warnings here are commented out because the compiler detects warnings outside own code, if we can disable external files for warnings that would be amazing!
17
16
build_flags =
18
17
-std=c++2a
19
18
-std=gnu++2a
19
+
-fno-exceptions
20
+
-DCONFIG_ASYNC_TCP_QUEUE_SIZE=256
21
+
build_unflags =
22
+
-std=gnu++11
23
+
24
+
; Most warnings here are commented out because the compiler detects warnings outside own code, build_src_flags is meant to only be for our code but doesnt seem to work in this instance...
0 commit comments