Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
François Revol
firmware
Commits
6845b17d
Verified
Commit
6845b17d
authored
Jun 25, 2019
by
Rahix
Browse files
fix(build): Fix QSTRs being regenerated every time
Signed-off-by:
Rahix
<
rahix@rahix.de
>
parent
81fce4c5
Changes
2
Hide whitespace changes
Inline
Side-by-side
lib/micropython/meson.build
View file @
6845b17d
...
...
@@ -24,6 +24,10 @@ micropython_includes = include_directories(
'./micropython/extmod/'
,
)
micropython_mod_sources
=
files
(
'micropython/py/modarray.c'
,
)
micropython_sources
=
files
(
'micropython/py/argcheck.c'
,
'micropython/py/asmarm.c'
,
'micropython/py/asmbase.c'
,
...
...
pycardium/meson.build
View file @
6845b17d
...
...
@@ -18,7 +18,7 @@ version_h = custom_target(
modules_h
=
custom_target
(
'moduledefs.h'
,
output
:
'moduledefs.h'
,
input
:
[
micropython_sources
,
modsrc
],
input
:
[
micropython_
mod_
sources
,
modsrc
],
command
:
[
micropython_gen_modules
,
'@OUTPUT@'
,
'@INPUT@'
],
)
...
...
@@ -30,7 +30,7 @@ qstr_h = custom_target(
'mpconfigport.h'
,
micropython_sources
,
],
depends
:
[
modules_h
,
version_h
],
depends
:
[
version_h
],
command
:
[
micropython_gen_qstr
,
meson
.
current_source_dir
(),
'@OUTPUT@'
,
'@INPUT@'
],
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment