fix(Kconfig): Fix non existant LV_STDLIB_BUILTIN (#6851)

This commit is contained in:
Fabian Blatz
2024-09-20 05:59:09 +02:00
committed by Gabor Kiss-Vamosi
parent 9275c52854
commit 84346f3ef2
5 changed files with 54 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
vcpkg install vcpkg-tool-ninja libpng freetype opengl glfw3 glew
if %errorlevel% neq 0 exit /b %errorlevel%
pip install pypng lz4
pip install pypng lz4 kconfiglib
if %errorlevel% neq 0 exit /b %errorlevel%

View File

@@ -14,4 +14,4 @@ sudo apt install gcc gcc-multilib g++-multilib ninja-build \
ruby-full gcovr cmake python3 pngquant libinput-dev libxkbcommon-dev \
libdrm-dev pkg-config wayland-protocols libwayland-dev libwayland-bin \
libwayland-dev:i386 libxkbcommon-dev:i386
pip3 install pypng lz4
pip3 install pypng lz4 kconfiglib

29
scripts/kconfig_verify.py Normal file
View File

@@ -0,0 +1,29 @@
#!/usr/bin/env python3
import sys
try:
import kconfiglib
except ImportError:
print("Need kconfiglib package, do `pip3 install kconfiglib`")
sys.exit(1)
def verify_kconfig(kconfig_file):
kconf = kconfiglib.Kconfig(kconfig_file)
if kconf.warnings:
print("Warnings found:")
for warning in kconf.warnings:
print(warning)
sys.exit(1)
else:
print("No warnings found.")
if __name__ == "__main__":
if len(sys.argv) != 2:
print("Usage: python check_kconfig.py <Kconfig_file>")
sys.exit(1)
verify_kconfig(sys.argv[1])