문제

I'm trying to build llvm that is packaged in android sources.

I'm running ubuntu 12.04, with android src version 4.0.4

The llvm is located in android-src/external/llvm/

I did the following to build:

./configure
make

And the following error message showed up:

llvm[3]: Compiling Thumb2InstrInfo.cpp for Debug+Asserts build
ARMJITInfo.cpp:18:10: fatal error: 'ARMAddressingModes.h' file not found
#include "ARMAddressingModes.h"
    ^

I can build my local llvm fine with version: 3.2

The version for the android llvm I couldn't find.

도움이 되었습니까?

해결책

Solved this by copying over the missing header file "ARMAddressingModes.h" from my local llvm install.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top