all: Fix paths to mpy-cross and micropython binaries.
Binaries built using the Make build system now no longer appear in the working directory of the build, but rather in the build directory. Thus some paths had to be adjusted.
This commit is contained in:
committed by
Damien George
parent
b2e8240268
commit
47c84286e8
@@ -14,7 +14,7 @@ import pyboard
|
||||
|
||||
# Paths for host executables
|
||||
CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3")
|
||||
MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", "../ports/unix/micropython-coverage")
|
||||
MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", "../ports/unix/build-coverage/micropython-coverage")
|
||||
|
||||
NATMOD_EXAMPLE_DIR = "../examples/natmod/"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user