ubuntu12.10 64bit 编译android内核配置时遇到的问题

来源:互联网 发布:淘宝如何申请信用卡 编辑:程序博客网 时间:2024/05/01 22:24

编译12.10 64bit,make menuconfig,遇到如下错误,

......

       mconf.c:(.text+0x811): undefined reference to `stdscr'

        安装libncurses5-dev可以解决

        sudo apt-get install libncurses5-dev

然后make menuconfig ,内核菜单正常启动。


--------------------------------------------------------------------------参考---------------------------------------------------------

ubuntu12.04 64bit 编译android源码时出现如下错误:

        host Executable: cmu2nuance (out/host/linux-x86/obj/EXECUTABLES/cmu2nuance_intermediates/cmu2nuance)
        /usr/bin/ld: cannot find -lncurses
        collect2: ld returned 1 exit status
        make: *** [out/host/linux-x86/obj/EXECUTABLES/adb_intermediates/adb] Error 1
        make: *** Waiting for unfinished jobs....
        host Executable: coverage (out/host/linux-x86/obj/EXECUTABLES/coverage_intermediates/coverage)

        安装libncurses5-dev:i386可以解决

        sudo apt-get install libncurses5-dev:i386

 

ubuntu12.04 64bit 编译kernel源码时出现如下错误:

        HOSTLD  scripts/kconfig/mconf
        scripts/kconfig/mconf.o: In function `show_help':
        mconf.c:(.text+0x811): undefined reference to `stdscr'
        scripts/kconfig/mconf.o: In function `main':
        mconf.c:(.text+0x1286): undefined reference to `initscr'
        mconf.c:(.text+0x128d): undefined reference to `stdscr'
        scripts/kconfig/lxdialog/checklist.o: In function `print_arrows':
        checklist.c:(.text+0x41): undefined reference to `wmove'
        checklist.c:(.text+0x61): undefined reference to `acs_map'

        安装libncurses5-dev可以解决

        sudo apt-get install libncurses5-dev

原创粉丝点击