py/emitglue: Get persistent bytecode working on Linux ARM platform.

support-3.5
Markus Fix 2016-03-07 12:15:01 +01:00 committed by Damien George
parent 484a471f9b
commit 4f0080346b
1 changed files with 2 additions and 2 deletions

View File

@ -403,7 +403,7 @@ mp_raw_code_t *mp_raw_code_load_mem(const byte *buf, size_t len) {
// here we define mp_raw_code_load_file depending on the port
// TODO abstract this away properly
#if defined(__i386__) || defined(__x86_64__)
#if defined(__i386__) || defined(__x86_64__) || (defined(__arm__) && (defined(__unix__)))
// unix file reader
#include <sys/stat.h>
@ -637,7 +637,7 @@ void mp_raw_code_save(mp_raw_code_t *rc, mp_print_t *print) {
// here we define mp_raw_code_save_file depending on the port
// TODO abstract this away properly
#if defined(__i386__) || defined(__x86_64__)
#if defined(__i386__) || defined(__x86_64__) || (defined(__arm__) && (defined(__unix__)))
#include <unistd.h>
#include <sys/stat.h>