Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
BuffyBox
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
Vladimir Stoiakin
BuffyBox
Commits
e6bf3581
Commit
e6bf3581
authored
4 weeks ago
by
Vladimir Stoiakin
Browse files
Options
Downloads
Patches
Plain Diff
build: detect endianess of a system dynamically
parent
3196e47d
No related branches found
No related tags found
No related merge requests found
Pipeline
#217368
passed
4 weeks ago
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
buffyboard/lv_conf.h
+0
-3
0 additions, 3 deletions
buffyboard/lv_conf.h
meson.build
+1
-0
1 addition, 0 deletions
meson.build
unl0kr/lv_conf.h
+0
-3
0 additions, 3 deletions
unl0kr/lv_conf.h
with
1 addition
and
6 deletions
buffyboard/lv_conf.h
+
0
−
3
View file @
e6bf3581
...
...
@@ -313,9 +313,6 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h"*/
* COMPILER SETTINGS
*====================*/
/*For big endian systems set to 1*/
#define LV_BIG_ENDIAN_SYSTEM 0
/*Define a custom attribute to `lv_tick_inc` function*/
#define LV_ATTRIBUTE_TICK_INC
...
...
This diff is collapsed.
Click to expand it.
meson.build
+
1
−
0
View file @
e6bf3581
...
...
@@ -5,6 +5,7 @@ project('buffybox', 'c',
)
add_project_arguments
(
'-DPROJECT_VERSION="@0@"'
.
format
(
meson
.
project_version
()),
language
:
'c'
)
add_project_arguments
(
'-DLV_BIG_ENDIAN_SYSTEM='
+
(
host_machine
.
endian
()
==
'big'
?
'1'
:
'0'
),
language
:
'c'
)
depinih
=
dependency
(
'inih'
)
deplibinput
=
dependency
(
'libinput'
)
...
...
This diff is collapsed.
Click to expand it.
unl0kr/lv_conf.h
+
0
−
3
View file @
e6bf3581
...
...
@@ -207,9 +207,6 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h"*/
* COMPILER SETTINGS
*====================*/
/*For big endian systems set to 1*/
#define LV_BIG_ENDIAN_SYSTEM 0
/*Define a custom attribute to `lv_tick_inc` function*/
#define LV_ATTRIBUTE_TICK_INC
...
...
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