gpt4 book ai didi

c++ - gcc -Wall 引入编译器错误

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:39:58 26 4
gpt4 key购买 nike

我正在尝试在 Keil IDE 中为 stm32f103 微 Controller 使用 gcc 编译器。我正在编译一个相对较小的项目,其中包含一些模板代码和几个纯虚拟类。没有花哨的 C++11 东西。到目前为止一切顺利。

当我使用 -w 或 -pedantic 编译时,项目编译正常。但是当我输入 -Wall 时,这部分出现了编译错误:

template <typename T, typename U>
T & round(T & value, U roundStep)
{
UMBA_ASSERT(roundStep > 0);

UMBA_STATIC_ASSERT( std::numeric_limits<T>::is_integer );
UMBA_STATIC_ASSERT( std::numeric_limits<U>::is_integer );

T temp = value / roundStep;
T remainder = value - temp*roundStep;

if(remainder < roundStep/2)
{
value = temp*roundStep;
}
else
{
value = (temp+1)*roundStep;
}

return value;
}

UMBA_STATIC_ASSERT 是典型的“C 静态断言”:

#define UMBA_STATIC_ASSERT_MSG(condition, msg) typedef char umba_static_assertion_##msg[(condition)?1:-1]
#define UMBA_STATIC_ASSERT3(X, L) UMBA_STATIC_ASSERT_MSG(X, at_line_##L)
#define UMBA_STATIC_ASSERT2(X, L) UMBA_STATIC_ASSERT3(X, L)

#define UMBA_STATIC_ASSERT(X) UMBA_STATIC_ASSERT2(X, __LINE__)

有趣的是,我什至无法理解错误:

compiling common_functions.cpp...
src/Common_Functions/common_functions.h: In function 'T& common_functions::round(T&, U)':
./src/Global_Macros/global_macros.h(99): warning: typedef 'umba_static_assertion_at_line_131' locally defined but not used [-Wunused-local-typedefs]
#define UMBA_STATIC_ASSERT_MSG(condition, msg) typedef char umba_static_assertion_##msg[(condition)?1:-1]
./src/Global_Macros/global_macros.h(100): error: note: in expansion of macro 'UMBA_STATIC_ASSERT_MSG'
./src/Global_Macros/global_macros.h(101): error: note: in expansion of macro 'UMBA_STATIC_ASSERT3'
./src/Global_Macros/global_macros.h(104): error: note: in expansion of macro 'UMBA_STATIC_ASSERT2'
src/Common_Functions/common_functions.h(131): error: note: in expansion of macro 'UMBA_STATIC_ASSERT'

它不同于类似于“错误:数组‘umba_static_assertion_at_line_21’的大小为负数”之类的静态断言错误。而且,据我所知,项目中的任何地方都没有调用 round 函数。

以下是所有编译器选项,以防万一;包含到 Keil 文件夹的内容由 IDE 自动放在那里:

-c -mcpu=cortex-m3 -mthumb -gdwarf-2 -MD -Wall -O0 -I./src -I./src/Modules_Config -I./src/CMSIS -I./src/SPL/inc -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti  -mcpu=cortex-m3 -IC:/Keil4.72/ARM/CMSIS/Include -IC:/Keil4.72/ARM/Inc/ST/STM32F10x -DUSE_STDPERIPH_DRIVER -DUSE_FULL_ASSERT -Wa,-alhms="./lst/*.lst" -o *.o

我不知道该怎么办。

最佳答案

检查从命令行调用编译器时错误是否仍然存在。某些 IDE 可能会正确解析编译器的输出并错误地发出错误警告。

关于c++ - gcc -Wall 引入编译器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37483315/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com