Windows下使用Kconfig管理编译配置

Windows下使用Kconfig管理编译配置

存在的问题

项目开发过程中,为方便进行编译配置管理,引入了Kconfig,python的konfiglib和menuconfig很好地满足了需求。

但是,在Windows的Git-Bash环境中,不能像Linux下那样直接使用Kconfig进行编译配置管理,描述如下:

python文件:

import os
import sys
from kconfiglib import Kconfig
from menuconfig import menuconfig

def project_menuconfig(config='.config', file='Kconfig'):
    os.environ['MENUCONFIG_STYLE'] = 'default path=fg:black,bg:white separator=fg:white,bg:blue,bold selection=fg:white,bg:red,bold help=path'
    os.envrion['KCONFIG_CONFIG_HEADER'] = '#\n# Automatically generated file: Do not edit !!!\n#\n'
    os.envrion['KCONFIG_CONFIG'] = config

    menuconfig(Kconfig(filename=file))

在Git-Bash中执行:

python3 mconfig.py

有如下报错:

Redirection is not supported.

解决办法

该问题的原因是 windows_curses 需要在终端上运行,解决办法如下:

import os
import sys
from kconfiglib import Kconfig
from menuconfig import menuconfig

def project_menuconfig(config='.config', file='Kconfig'):
    os.environ['MENUCONFIG_STYLE'] = 'default path=fg:black,bg:white separator=fg:white,bg:blue,bold selection=fg:white,bg:red,bold help=path'
    os.envrion['KCONFIG_CONFIG_HEADER'] = '#\n# Automatically generated file: Do not edit !!!\n#\n'
    os.envrion['KCONFIG_CONFIG'] = config

    # 判断是否在Windows下执行, 若是则启动一个独立的命令行提示符窗口来执行menuconfig
    if sys.platform.startswith('win'):
        os.system('start /wait cmd.exe /c menuconfig.exe %s' % file)
    else:
        menuconfig(Kconfig(filename=file))

start:启动单独的命令提示符窗口来运行指定的程序或命令;

/wait:等待程序或命令运行结束;

menuconfig.exe 是一个python工具,使用pip安装menuconfig库后产生,需要确保python工具的相关路径被添加到Path环境变量中去。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值