mirror of
https://github.com/openwrt/packages.git
synced 2025-12-19 09:01:22 +00:00
micropython: Update to 1.94
Switched to normal tarballs for simplicity. Also rearanged Makefile. Refreshed patches. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
@@ -1,13 +0,0 @@
|
||||
Index: micropython-1.5-20161117-e81a5353cb794b8d6c57317488e5db6a1c524755/unix/Makefile
|
||||
===================================================================
|
||||
--- micropython-1.5-20161117-e81a5353cb794b8d6c57317488e5db6a1c524755.orig/unix/Makefile 2016-11-17 02:43:13.000000000 +0100
|
||||
+++ micropython-1.5-20161117-e81a5353cb794b8d6c57317488e5db6a1c524755/unix/Makefile 2016-11-17 16:49:02.937809018 +0100
|
||||
@@ -21,7 +21,7 @@
|
||||
INC += -I$(BUILD)
|
||||
|
||||
# compiler settings
|
||||
-CWARN = -Wall -Werror
|
||||
+CWARN = -Wall
|
||||
CWARN += -Wpointer-arith -Wuninitialized
|
||||
CFLAGS = $(INC) $(CWARN) -ansi -std=gnu99 -DUNIX $(CFLAGS_MOD) $(COPT) $(CFLAGS_EXTRA)
|
||||
|
||||
13
lang/python/micropython/patches/000-Makefile-no-errors.patch
Normal file
13
lang/python/micropython/patches/000-Makefile-no-errors.patch
Normal file
@@ -0,0 +1,13 @@
|
||||
diff --git a/ports/unix/Makefile b/ports/unix/Makefile
|
||||
index cbdd3f3..0ab157d 100644
|
||||
--- a/ports/unix/Makefile
|
||||
+++ b/ports/unix/Makefile
|
||||
@@ -21,7 +21,7 @@ INC += -I$(TOP)
|
||||
INC += -I$(BUILD)
|
||||
|
||||
# compiler settings
|
||||
-CWARN = -Wall -Werror
|
||||
+CWARN = -Wall
|
||||
CWARN += -Wpointer-arith -Wuninitialized
|
||||
CFLAGS = $(INC) $(CWARN) -std=gnu99 -DUNIX $(CFLAGS_MOD) $(COPT) $(CFLAGS_EXTRA)
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
--- a/py/persistentcode.c 2017-09-22 13:26:04.914339465 +0000
|
||||
+++ b/py/persistentcode.c 2017-09-22 13:26:22.618319621 +0000
|
||||
@@ -373,7 +373,7 @@
|
||||
|
||||
// here we define mp_raw_code_save_file depending on the port
|
||||
// TODO abstract this away properly
|
||||
|
||||
-#if defined(__i386__) || defined(__x86_64__) || (defined(__arm__) && (defined(__unix__)))
|
||||
+#if defined(__i386__) || defined(__x86_64__) || defined(__unix__)
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
Reference in New Issue
Block a user