note: variable tracking size limit exceeded with -fvar-tracking-assignments, retrying without

来源:互联网 发布:今天的网络怎么了 编辑:程序博客网 时间:2024/06/05 10:04

错误描述:


网上解决办法:

Disable GCC variable tracking when compiling PHP/Java wrappers

When compiling the PHP and Java wrappers, the following message is shown every time.

note: variable tracking size limit exceeded with -fvar-tracking-assignments, retrying without

Since it seems that VTA will never work for these projects, there's no point wasting time trying to build these projects with settings that will never work which will require a subsequent re-build without said settings, we should apply this flag for such projects:

-fno-var-tracking-assignments

Which will skip this time-wasting step.

原文


本人的解决办法:

之前编译是加了多线程编译, 即 make -j8,

后来把-j8去掉后,编译就通过了。

0 0