fix mpy-cross

This commit is contained in:
Scott Shawcroft 2018-08-16 00:27:01 -07:00
parent de5a9d72dc
commit 137a30ad75
No known key found for this signature in database
GPG Key ID: FD0EDC4B6C53CA59
2 changed files with 5 additions and 4 deletions

View File

@ -11,8 +11,12 @@ import sys
import collections
import gettext
import os.path
sys.path.append("../../tools/huffman")
py = os.path.dirname(sys.argv[0])
top = os.path.dirname(py)
sys.path.append(os.path.join(top, "tools/huffman"))
import huffman

View File

@ -71,8 +71,6 @@ char* decompress(const compressed_string_t* compressed, char* decompressed) {
return decompressed;
}
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wreturn-local-addr"
inline __attribute__((always_inline)) const compressed_string_t* translate(const char* original) {
#ifndef NO_QSTR
#define QDEF(id, str)
@ -83,4 +81,3 @@ inline __attribute__((always_inline)) const compressed_string_t* translate(const
#endif
return NULL;
}
#pragma GCC diagnostic pop