Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
flow3r firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
flow3r
flow3r firmware
Commits
8e8c6215
Commit
8e8c6215
authored
1 year ago
by
moon2
Browse files
Options
Downloads
Patches
Plain Diff
added -Wno-error=unknown-pragmas to clang-tidy bl00mbox build flags
parent
8c6d6c74
No related branches found
No related tags found
1 merge request
!602
bl00mbox: 95% of the 1.3 release updates
Pipeline
#9375
passed
1 year ago
Stage: check
Stage: build
Stage: deploy
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+2
-0
2 additions, 0 deletions
CMakeLists.txt
with
2 additions
and
0 deletions
CMakeLists.txt
+
2
−
0
View file @
8e8c6215
...
...
@@ -11,9 +11,11 @@ project(flow3r)
# generally don't want doubles, doubles on ESP32 bad.
idf_component_get_property
(
st3m_lib st3m COMPONENT_LIB
)
idf_component_get_property
(
flow3r_bsp_lib flow3r_bsp COMPONENT_LIB
)
idf_component_get_property
(
bl00mbox_lib bl00mbox COMPONENT_LIB
)
if
(
"
${
CMAKE_CXX_COMPILER_ID
}
"
STREQUAL
"Clang"
)
target_compile_options
(
${
st3m_lib
}
PRIVATE -cl-single-precision-constant -Wdouble-promotion
)
target_compile_options
(
${
flow3r_bsp_lib
}
PRIVATE -cl-single-precision-constant -Wdouble-promotion
)
target_compile_options
(
${
bl00mbox_lib
}
PRIVATE -Wno-error=unknown-pragmas
)
else
()
target_compile_options
(
${
st3m_lib
}
PRIVATE -fsingle-precision-constant -Wdouble-promotion
)
target_compile_options
(
${
flow3r_bsp_lib
}
PRIVATE -fsingle-precision-constant -Wdouble-promotion
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment