We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi,
i want use uSTL library with FreeRTOS. When I compiling i get the error:
..ustl/uutility.h(356): error: #1113: Inline assembler not permitted when generating Thumb code
The code(linie 356 is: asm("":+g... ):
template <typename DEST, typename SRC> inline DEST noalias (const DEST&, SRC* s) { asm("":"+g"(s)::"memory"); union UPun { SRC s; DEST d; }; return (((UPun*)(s))->d); }
Do you have same idea how I can solve this problem?