zoukankan      html  css  js  c++  java
  • (转)编译android5.1,添加swap分区的方法

    clang++: error: unable to execute command: Killed
    clang++: error: assembler command failed due to signal (use -v to see invocation)
    clang version 3.5
    Target: i386--linux-gnu
    Thread model: posix
    clang++: note: diagnostic msg: PLEASE submit a bug report to http://llvm.org/bugs/ and include the crash backtrace, preprocessed source, and associated run script.
    clang++: note: diagnostic msg:
    ********************


    PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:
    Preprocessed source(s) and associated run script(s) are located at:
    clang++: note: diagnostic msg: /tmp/android_system_OsConstants-a5eb11.cpp
    clang++: note: diagnostic msg: /tmp/android_system_OsConstants-a5eb11.sh
    clang++: note: diagnostic msg:


    ********************

    make: *** [out/host/linux-x86/obj32/SHARED_LIBRARIES/libjavacore_intermediates/luni/src/main/native/android_system_OsConstants.o] Error 254

    原因:

          这是swap区不够大的原因。导致clang++ kernel opps
    解决方法:
    请加大分区:
    sudo fallocate -l 4G /swapfile
    sudo chmod 600 /swapfile
    sudo mkswap /swapfile
    sudo swapon /swapfile
    开机自动挂载swap:
    使用 vi 或 nano 在 /etc/fstab 文件底部添加如下内容:
    /swapfile none swap sw 0 0

    目前我是配置是:vxbox+ubunut14.04 2G ram,swap=6GB
    编译了十几个小时。 

    转自:http://blog.csdn.net/honour2sword/article/details/43916505

  • 相关阅读:
    二分图的判定 (图)
    并查集(模板)
    数独 (dfs)
    Map <STL>
    Set <STL>
    二叉搜索树的实现
    Find a way (BFS)
    根据输入的变量,执行相应的计算公式并返回结果
    检测字符串当中x与o的数目是否相等
    根据给定的数字和字符串,生成循环指定次数的字符串
  • 原文地址:https://www.cnblogs.com/lihaiping/p/5806516.html
Copyright © 2011-2022 走看看