Skip to content
GitLab
Menu
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
815e5e37
Verified
Commit
815e5e37
authored
Jun 10, 2019
by
Rahix
Browse files
fix(build): Actually fix meson scripts
Signed-off-by:
Rahix
<
rahix@rahix.de
>
parent
6bd36b95
Changes
9
Hide whitespace changes
Inline
Side-by-side
hw-tests/bmatest/meson.build
View file @
815e5e37
...
...
@@ -4,7 +4,7 @@ executable(
name + '.elf',
'main.c',
dependencies: [libcard10, max32665_startup],
link_whole: max32665_startup_lib,
link_whole:
[
max32665_startup_lib,
board_card10_lib],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
hw-tests/bmetest/meson.build
View file @
815e5e37
...
...
@@ -4,7 +4,7 @@ executable(
name + '.elf',
'main.c',
dependencies: [libcard10, max32665_startup],
link_whole: max32665_startup_lib,
link_whole:
[
max32665_startup_lib,
board_card10_lib],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
hw-tests/dual-core/meson.build
View file @
815e5e37
...
...
@@ -3,7 +3,7 @@ executable(
name + '.elf',
'main.c',
dependencies: [libcard10, max32665_startup_core0],
link_whole: max32665_startup_core0_lib,
link_whole:
[
max32665_startup_core0_lib,
board_card10_lib],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
@@ -14,7 +14,7 @@ executable(
name + '.elf',
'core1.c',
dependencies: [periphdriver, board_card10, max32665_startup_core1],
link_whole: max32665_startup_core1_lib,
link_whole:
[
max32665_startup_core1_lib,
board_card10_lib],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
hw-tests/ecgtest/meson.build
View file @
815e5e37
...
...
@@ -4,7 +4,7 @@ executable(
name + '.elf',
'main.c',
dependencies: [libcard10, max32665_startup],
link_whole: max32665_startup_lib,
link_whole:
[
max32665_startup_lib,
board_card10_lib],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
hw-tests/hello-freertos/meson.build
View file @
815e5e37
...
...
@@ -22,7 +22,7 @@ executable(
include_directories: freertos_sdk_includes,
dependencies: [libcard10, max32665_startup],
link_with: freertos,
link_whole: max32665_startup_lib,
link_whole:
[
max32665_startup_lib,
board_card10_lib],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
hw-tests/hello-world/meson.build
View file @
815e5e37
...
...
@@ -4,7 +4,7 @@ executable(
name + '.elf',
'main.c',
dependencies: [libcard10, max32665_startup],
link_whole: max32665_startup_lib,
link_whole:
[
max32665_startup_lib,
board_card10_lib],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
hw-tests/imutest/meson.build
View file @
815e5e37
...
...
@@ -4,7 +4,7 @@ executable(
name + '.elf',
'main.c',
dependencies: [libcard10, max32665_startup],
link_whole: max32665_startup_lib,
link_whole:
[
max32665_startup_lib,
board_card10_lib],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
hw-tests/ips/meson.build
View file @
815e5e37
...
...
@@ -6,7 +6,7 @@ executable(
'image/image.c',
'image/image2.c',
dependencies: [libcard10, max32665_startup],
link_whole: max32665_startup_lib,
link_whole:
[
max32665_startup_lib,
board_card10_lib],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
lib/sdk/Libraries/Boards/card10/meson.build
View file @
815e5e37
...
...
@@ -11,7 +11,7 @@ sources = files(
'../Source/stdio.c',
)
lib = static_library(
board_card10_
lib = static_library(
'board-card10',
sources,
include_directories: includes,
...
...
@@ -20,5 +20,4 @@ lib = static_library(
board_card10 = declare_dependency(
include_directories: includes,
link_whole: lib,
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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