尝试使用mingw cross编译器在Linux上为Windows构建以下gcc插件。插件来自Windows的内置avr编译器。修改了以下插件https://github.com/jcmvbkbc/avr-flash-vtbl

#include <gcc-plugin.h> 
#include <cp/cp-tree.h> 
 
#ifdef _WIN32 
__declspec(dllexport) 
#endif 
 
int plugin_is_GPL_compatible = 1; 
 
void fn(void *gcc_data, void *user_data) 
{ 
    TYPE_ADDR_SPACE (TREE_TYPE (vtbl_type_node)) = 1; 
    TYPE_ADDR_SPACE (TREE_TYPE (vtbl_ptr_type_node)) = 1; 
} 
 
#ifdef _WIN32 
__declspec(dllexport) 
#endif     
 
int plugin_init (struct plugin_name_args *plugin_info, 
         struct plugin_gcc_version *version) 
{ 
    register_callback("", PLUGIN_START_UNIT, fn, NULL); 
    return 0; 
} 

编译和链接期间的输出:
i686-w64-mingw32-g++ -shared -I/home/andreas/omgwtfbbq/win64/bin/../lib/gcc/avr/9.2.0/plugin/include -Wl,--export-all-symbols /home/andreas/ 
omgwtfbbq/win64/bin/../lib/gcc/avr/9.2.0/plugin/cc1plus.exe.a avr-flash-vtbl.c -o avr-flash-vtbl.so -I./ 
/usr/bin/i686-w64-mingw32-ld: /tmp/cc28ZVde.o:avr-flash-vtbl.c:(.text+0x4): undefined reference to `cp_global_trees' 
/usr/bin/i686-w64-mingw32-ld: /tmp/cc28ZVde.o:avr-flash-vtbl.c:(.text+0x10): undefined reference to `cp_global_trees' 
/usr/bin/i686-w64-mingw32-ld: /tmp/cc28ZVde.o:avr-flash-vtbl.c:(.text+0x44): undefined reference to `register_callback' 
collect2: error: ld returned 1 exit status 
make: *** [Makefile:11: avr-flash-vtbl.so] Fehler 1 

编译器标志来自 https://gcc.gnu.org/onlinedocs/gccint/Plugins-building.html。有人已经遇到过这样的问题吗?

请您参考如下方法:

问题解决了。将主机编译器从i686-w64-mingw32-g++更改为x86_64-w64-mingw32-g++,并更改了选项的顺序。 /home/andreas/omgwtfbbq/win64/bin/../lib/gcc/avr/9.2.0/plugin/cc1plus.exe.a必须放在avr-flash-vtbl.c之后。


评论关闭
IT序号网

微信公众号号:IT虾米 (左侧二维码扫一扫)欢迎添加!