一个实用的编译技术

本文介绍了一种使用Makefile和C编译技术,通过编译参数与宏定义实现不同输出等级的方法。通过LOG变量控制ERROR、WARN、INFO、DEBUG和TRACE的启用,展示了如何在编译时灵活调整程序的详细程度。
摘要由CSDN通过智能技术生成

一个实用的编译技术

使用编译参数结合宏定义实现了在编译时指定不同的输出等级(makefile + c

// defs.h
#include <stdio.h>

// Output level: ERROR(31) > WARN(93) > INFO(34) > DEBUG(32) > TRACE(90)
// `fmt` can only be face-value
#ifdef TRACE_OUTPUT
    #define trace(fmt, arg...) \
        printf("\x1b[90m" fmt "\x1b[0m", ##arg)
    #define TRACE_ENABLE
#else
    #define trace(fmt, arg...)
#endif
#if (defined TRACE_ENABLE) || (defined DEBUG_OUTPUT)
    #define debug(fmt, arg...) \
        printf("\x1b[32m" fmt "\x1b[0m", ##arg)
    #define DEBUG_ENABLE
#else
    #define debug(fmt, arg...)
#endif
#if (defined DEBUG_ENABLE) || (defined INFO_OUTPUT)
    #define info(fmt, arg...) \
        printf("\x1b[34m" fmt "\x1b[0m", ##arg)
    #define INFO_ENABLE
#else
    #define info(fmt, arg...)
#endif
#if (defined INFO_ENABLE) || (defined WARN_OUTPUT)
    #define warn(fmt, arg...) \
        printf("\x1b[93m" fmt "\x1b[0m", ##arg)
    #define WARN_ENABLE
#else
    #define warn(fmt, arg...)
#endif
#if (defined WARN_ENABLE) || (defined ERROR_OUTPUT)
    #define error(fmt, arg...) \
        printf("\x1b[31m" fmt "\x1b[0m", ##arg)
    #define ERROR_ENABLE
#else
    #define error(fmt, arg...)
#endif
// main.c
#include "defs.h"

int main() {

    error("This is an error.\n");
    warn("This is a warn.\n");
    info("This is an info.\n");
    debug("This is an debug.\n");
    trace("This is a trace.\n");

    return 0;
}
# makefile
SRCS	= $(wildcard *.c)
OBJS	= $(addsuffix .o, $(basename $(SRCS)))
CC		= gcc
CXX		= g++

LOG		= WARN
CCFLAGS	= 

main: $(OBJS)
	$(CC) $(CCFLAGS) -D $(LOG)_OUTPUT $(OBJS) -o main

clean:
	rm $(OBJS) *.exe

当使用编译命令

$ make main LOG=INFO

的时候,只有 errorwarninfo 方法会输出到屏幕,而 debugtrace 方法不会。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值