diff options
| author | Daniel Jour <d.jour@steiner.de> | 2022-08-02 23:48:41 +0200 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-08-11 13:31:13 +1000 |
| commit | 47c84286e8c8d9873e99f12711a683ecd6b9ca62 (patch) | |
| tree | d898345b0fc9bc59eb3011741dde15f124682a0b /examples | |
| parent | b2e82402688b53829f37475583231b067b9faea7 (diff) | |
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.
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/embedding/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/embedding/Makefile b/examples/embedding/Makefile index 99f239a7c..7de1219b2 100644 --- a/examples/embedding/Makefile +++ b/examples/embedding/Makefile @@ -1,6 +1,6 @@ MPTOP = ../.. CFLAGS = -std=c99 -I. -I$(MPTOP) -DNO_QSTR -LDFLAGS = -L. +LDFLAGS = -L./build hello-embed: hello-embed.o -lmicropython |
