2012-10-27 64 views
5

我配置單下面構建單嵌入式Linux(ARM7)

./configure --host=arm-linux --build=arm-none-linux-gnueabi --target=arm-linux --cache-file=arm-linux.cache --disable-mcs-build 

命令文件臂linux.cache是​​

mono_cv_clang=no 
mono_cv_uscore=no 
with_tls=no 
with_sigaltstack=no 

我當我做單,錯誤信息是:

In file included from mini-arch.h:21,
from mini.h:35,
from genmdesc.c:9:
mini-arm.h:39:2: error: #error "At least one of ARM_FPU_NONE, ARM_FPU_FPA, ARM_FPU_VFP or ARM_FPU_VFP_HARD must be defined."

+0

還帶with_tls = pthread – Ghost

回答

2

需要定義/選擇的選項floating point hardware用於目標你有一個,例如:

make CFLAGS=-DARM_FPU_NONE 
+0

謝謝。我已經通過了這個問題。 – Ghost

+0

@Ghost歡迎您,如果解決了您的問題,您應該接受答案,否則回答您自己的問題並接受它。 – iabdalkader