-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
嵌入式Linux运行官方的demoui可以进入函数main_loop_init,运行部署的项目却无法进入函数main_loop_init #104
Comments
把代码贴上来看看。 |
我看了官方例程根目录下的“SConstruct”,代码如下 ARGUMENTS['SHARED'] = 'False' SConscriptFiles = ['src/SConscript'] 把 `import os ARGUMENTS['SHARED'] = 'False' CUSTOM_WIDGET_LIBS = [{ DEPENDS_LIBS = CUSTOM_WIDGET_LIBS + [] helper = app.Helper(ARGUMENTS) app.prepare_depends_libs(ARGUMENTS, helper, DEPENDS_LIBS) SConscriptFiles = ['src/SConscript', 'tests/SConscript'] 之后就正常了,我请问一下,这脚本“SConstruct”中这些是什么意思? |
你最好用designer创建项目,不需要了解这些东西。 |
使用designer创建的项目放到Ubuntu编译,就会出现上述说的问题,已经试过了全志R528和sigmastart 的ssd201,均需要修改SConstruct脚本文件 |
我用的是Ubuntu18.04,平台是全志R528-s3
1.在“awtk-linux-fb/awtk-port/main_loop_linux.c”加入以下打印信息:
2.按移植流程,在“awtk-linux-fb”文件夹中执行“
scons
”->"sh ./release.sh"->拷到开发板解压->运行"./release/bin/demoui",可以打印以下信息3.我编译自己的项目,在“awtk-linux-fb”文件夹中执行“
scons APP=../user_apps/awtkdemo2
”->"./release.sh ../user_apps/awtkdemo2/res demo"->拷到开发板解压->运行"./release/bin/demo",可以打印以下信息请问是我哪里搞错了吗?
The text was updated successfully, but these errors were encountered: