[odroid-pc] ubuntu12.04 64bit Android4.0.3 源代码编译报错及解决办法

第一个错误:
        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

       编译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

第二个错误:
      cc1plus: all warnings being treated as errors
    make: *** [out/host/linux-x86/obj/EXECUTABLES/obbtool_intermediates/Main.o] 错误 1
    解决:通过SMBA服务器进入并修改源码目录下/build/core/combo/HOST_linux-x86.mk文件:

    将以下语句
    HOST_GLOBAL_CFLAGS += -D_FORTIFY_SOURCE=0
    修改为
    HOST_GLOBAL_CFLAGS += -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0

第三个错误:
    make: *** [out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/slang_rs_export_foreach
    在工程根目录下,打开下面的makefile文件:
    源码目录 frameworks/compile/slang/Android.mk
    .在打开的makefile文件中按照下面更改:
    #local_cflags_for_slang := -Wno-sign-promo -Wall -Wno-unused-parameter -Werror
    local_cflags_for_slang := -Wno-sign-promo -Wall -Wno-unused-parameter

    原因很简单 把警告当作error处理,所以此处要修改

第四个错误:
    make: *** [out/host/linux-x86/obj/STATIC_LIBRARIES/libMesa_intermediates/src/glsl/linker.o] Error 1

    solutions:external/mesa3d/src/glsl/linker.cpp
    +#include <stddef.h>
    #include <cstdlib>
    #include <cstdio>


第五个错误:
    In file included from external/oprofile/libpp/arrange_profiles.cpp:24:0:
    external/oprofile/libpp/format_output.h:94:22: 错误: reference ‘counts’ cannot be declared ‘mutable’ [-fpermissive]
    make: *** [out/host/linux-x86/obj/STATIC_LIBRARIES/liboprofile_pp_intermediates/arrange_profiles.o] 错误 1

    修改external/oprofile/libpp/format_output.h:94行
        mutable counts_t & counts;
    改为:

        counts_t & counts;

第六个错误:

    target arm C: libc <= bionic/libc/bionic/pthread.c
    arm-linux-androideabi-gcc: error trying to exec 'cc1': execvp: No such file or directory
    make: *** [out/target/product/generic/obj/SHARED_LIBRARIES/libc_intermediates/bionic/pthread.o] Error 1

    gcc -print-prog-name=cc1   

    执行命令:export PATH=path/to/cc1:$PATH    


后面的错误及解决方法:参照http://www.cnblogs.com/xingfuzzhd/archive/2012/09/05/2672000.html

编译成功后:

root@sjc-pc:~# vim ~/.bashrc


在文件中适当位置添加
#java 程序开发/运行的一些环境变量
export ANDROID_PRODUCT_OUT=~/out/target/product/generic

ANDROID_PRODUCT_OUT_BIN=~/out/host/linux-x86/bin

export PATH=${PATH}:${ANDROID_PRODUCT_OUT_BIN}:${ANDROID_PRODUCT_OUT};
#以上为songjiachen添加20140303


root@sjc-pc:~# source ~/.bashrc
root@sjc-pc:~# cd ~/out/target/product/generic
root@sjc-pc:~/out/target/product/generic# emulator -system system.img -data userdata.img -ramdisk ramdisk.img

emulator: WARNING: system partition size adjusted to match image file (166 MB > 66 MB)

此时模拟器已经成功运行

Could not configure '/dev/hpet' to have a 1024Hz timer. This is not a fatal
error, but for better emulation accuracy type:
'echo 1024 > /proc/sys/dev/hpet/max-user-freq' as root.

root@sjc-pc:~/out/target/product/generic# emulator -system system.img -data userdata.img -ramdisk ramdisk.img -partition-size 1024

此时模拟器已经成功运行 添加 -partition-size 1024为使=warning消除

直接输入emulator也可
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值