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
Arist
firmware
Commits
e318b389
Verified
Commit
e318b389
authored
Jun 08, 2019
by
Rahix
Browse files
build: Explicitly & individually include startup code
Signed-off-by:
Rahix
<
rahix@rahix.de
>
parent
cf297371
Changes
8
Hide whitespace changes
Inline
Side-by-side
hw-tests/bmatest/meson.build
View file @
e318b389
...
...
@@ -3,7 +3,7 @@ name = 'bmatest'
executable(
name + '.elf',
'main.c',
dependencies: [libcard10],
dependencies: [libcard10
, max32665_startup
],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
hw-tests/bmetest/meson.build
View file @
e318b389
...
...
@@ -3,7 +3,7 @@ name = 'bmetest'
executable(
name + '.elf',
'main.c',
dependencies: [libcard10],
dependencies: [libcard10
, max32665_startup
],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
hw-tests/ecgtest/meson.build
View file @
e318b389
...
...
@@ -3,7 +3,7 @@ name = 'ecgtest'
executable(
name + '.elf',
'main.c',
dependencies: [libcard10],
dependencies: [libcard10
, max32665_startup
],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
hw-tests/hello-freertos/meson.build
View file @
e318b389
...
...
@@ -20,7 +20,7 @@ executable(
name + '.elf',
sources,
include_directories: freertos_sdk_includes,
dependencies: [libcard10],
dependencies: [libcard10
, max32665_startup
],
link_with: freertos,
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
...
...
hw-tests/hello-world/meson.build
View file @
e318b389
...
...
@@ -3,7 +3,7 @@ name = 'hello-world'
executable(
name + '.elf',
'main.c',
dependencies: [libcard10],
dependencies: [libcard10
, max32665_startup
],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
hw-tests/imutest/meson.build
View file @
e318b389
...
...
@@ -3,7 +3,7 @@ name = 'imutest'
executable(
name + '.elf',
'main.c',
dependencies: [libcard10],
dependencies: [libcard10
, max32665_startup
],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
hw-tests/ips/meson.build
View file @
e318b389
...
...
@@ -5,7 +5,7 @@ executable(
'main.c',
'image/image.c',
'image/image2.c',
dependencies: [libcard10],
dependencies: [libcard10
, max32665_startup
],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
...
...
lib/card10/meson.build
View file @
e318b389
...
...
@@ -29,5 +29,5 @@ lib = static_library(
libcard10 = declare_dependency(
include_directories: includes,
link_with: lib,
dependencies:
[
deps,
max32665_startup],
dependencies: deps,
)
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