2017-09-07 13 views
0

clangを使用してコードをコンパイルする際に非常に奇妙なエラーが発生しました。ここpthreadtypes.hに関する奇妙なコンパイルエラー: 'section'属性

$clang -c -emit-llvm -I/OP-TEE/op-tee-os/optee_os/lib/libutee/include/ -I/OP-TEE/op-tee-os/optee_os/lib/libutils/ext/include/ test_function_call_ta.c 

私の命令であり、ここでエラーです:

In file included from /usr/include/stdlib.h:314: 
In file included from /usr/include/x86_64-linux-gnu/sys/types.h:270: 
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:200:5: error: 'section' attribute only applies to functions, methods, 
     properties, and global variables 
    } __data; 
    ^
/opensource_projects/OP-TEE/op-tee-os/optee_os/lib/libutils/ext/include/compiler.h:51:17: note: expanded 
     from macro '__data' 
#define __data   __section(".data") 
         ^
/opensource_projects/OP-TEE/op-tee-os/optee_os/lib/libutils/ext/include/compiler.h:50:37: note: expanded 
     from macro '__section' 
#define __section(x) __attribute__((section(x))) 

このエラーが起こっている理由を、私はソースコード内の任意のセクション属性を使用していなかったので、私は、思っていました。

ありがとうございます!

答えて

0

最後に、この問題を修正しました。理由は、私が間違ったヘッダファイルを "-I"でインポートしたためです。正しいフォルダは別のフォルダにあります...

関連する問題