Sergey Kotsur

Results 3 comments of Sergey Kotsur

I use very small vector. 6 elements at maximum. But vector is convenient since it gives functions for easy insert/remove. Moreover, I use small map for the same reason. But...

To make it clear. It doesn't work even in this case: pebble_hello_world.cpp: ``` extern "C" { #include } extern "C" int main(void) { Window* window = window_create(); window_stack_push(window, true); app_event_loop();...

I did it! You need to change: `ctx.env.CXXFLAGS.extend(['-std=c++11', '-fPIE', '-fno-unwind-tables', '-fno-exceptions'])` by `ctx.env.CXXFLAGS.extend(['-std=c++11', '-fPIE', '-fno-unwind-tables', '-fno-exceptions', '-mthumb'])` And it works!