Closed. This question is off-topic。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗? Update the question,因此它是on-topic,用于堆栈溢出。
                        
                        3年前关闭。
                                                                                            
                
        
我正在使用为某些MCU构建C代码的LPCXpresso(Eclipse)。
我可以使用一些魔术功能(插件)来自动增加定义吗?

#define  BUILD_NUMBER     1252       // auto increment at each build


几年前,我写了一些简单的exec在较早的IDE(预构建事件)上执行该操作,但是现在可能有一个更简单的解决方案。

先感谢您,

最佳答案

您可以使用它来存储您的内部版本号,并在预构建阶段通过makefile创建标头,例如:

@id=`cat .build_id`; id=$$[id+1]; printf "#define BUILD_NUMBER\t\t0x%08X\n" $$id >> $@; echo "$$id" > .build_id


您还可以添加日期和时间,例如:

@printf "#define BUILD_DATE\t\t0x%04X%02X%02X\n" `date +"%-Y %-m %-d"` >> $@;
@printf "#define BUILD_TIME\t\t0x%02X%02X%02X\n" `date +"%-H %-M %-S"` >> $@;

关于c - eclipse,c,自动递增的内部版本号定义,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35763970/

10-10 21:58