File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 22
22
- name : Install Dependencies
23
23
run : brew install --force gcc libffi cmake ninja make
24
24
25
+ - name : Build macOS port
26
+ run : python3 make.py macOS submodules clean mpy_cross DISPLAY=sdl_display INDEV=sdl_pointer
27
+
25
28
- name : Build ESP32 port
26
29
run : python3 make.py esp32 submodules clean mpy_cross BOARD=ESP32_GENERIC_S3 BOARD_VARIANT=SPIRAM_OCT DISPLAY=rgb_display INDEV=gt911
27
30
31
34
- name : Build Raspberry Pi PICO port
32
35
run : python3 make.py rp2 submodules clean mpy_cross BOARD=RPI_PICO DISPLAY=rgb_display INDEV=gt911
33
36
34
- - name : Build macOS port
35
- run : python3 make.py macOS submodules clean mpy_cross DISPLAY=sdl_display INDEV=sdl_pointer
37
+
Original file line number Diff line number Diff line change @@ -222,6 +222,8 @@ def compile(): # NOQA
222
222
223
223
build_sdl ()
224
224
225
+ os .environ ['CC' ] = 'gcc'
226
+ os .environ ['LD' ] = 'ld'
225
227
return_code , _ = spawn (compile_cmd )
226
228
if return_code != 0 :
227
229
sys .exit (return_code )
You can’t perform that action at this time.
0 commit comments