Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed panda "make recover" undefined reference __aeabi_llsr (#522)
In v0.5.8, panda.bin compile optimization flag was changed from O2 to Os to keep its size below 32768. However, the compiler also optimized away __aeabi_llsr (long long right shift function). The fix is to manually link libgcc.a An alternative fix is to use O1 instead of Os. But that might be less long term solution. Resolves: #522
- Loading branch information