forked from micropython/micropython-esp32
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from aczid/esp32
Added support for compiling micropython on Linux with SDL-backed ugfx
- Loading branch information
Showing
6 changed files
with
430 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
get all the submodules for micropython if you haven't already | ||
|
||
cd micropython | ||
|
||
git submodule update --init --recursive | ||
|
||
Satisfy axtls generating its version.h | ||
|
||
cd lib/axtls | ||
make menuconfig | ||
|
||
Build axtls and the binary | ||
|
||
cd unix | ||
make axtls | ||
make | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* This file is subject to the terms of the GFX License. If a copy of | ||
* the license was not distributed with this file, you can obtain one at: | ||
* | ||
* http://ugfx.org/license.html | ||
*/ | ||
|
||
#include "gfx.c" | ||
#include "gos/gos_mk.c" | ||
#include "gdriver/gdriver_mk.c" | ||
#include "gqueue/gqueue_mk.c" | ||
#include "gdisp/gdisp_mk.c" | ||
#include "gevent/gevent_mk.c" | ||
#include "gtimer/gtimer_mk.c" | ||
#include "gwin/gwin_mk.c" | ||
#include "ginput/ginput_mk.c" | ||
#include "gadc/gadc_mk.c" | ||
#include "gaudio/gaudio_mk.c" | ||
#include "gmisc/gmisc_mk.c" | ||
#include "gfile/gfile_mk.c" | ||
#include "gtrans/gtrans_mk.c" |
Oops, something went wrong.