美文网首页
修复mac 下 make menuconfig 的bug以及自定

修复mac 下 make menuconfig 的bug以及自定

作者: copys | 来源:发表于2019-08-25 14:09 被阅读0次

    本文目的:

    一, 解决在mac 系统里make menuconfig 报错:  lcd: symbol(s) not found for architecture x86_64 的bug

    二,  使用mconf, 自定义实现一个make menuconfig的界面

    一, 在MAC 系统下使用make menuconfig 调用图形界面做config时,  可能会有如下报错:

    ld: symbol(s) not found for architecture x86_64

    clang: error: linker command failed with exit code 1 (use -v to see invocation)

    一般地, 编译busybox或者uboot或者linux内核等软件包之前,  还是使用图形界面来做配置最为最直观.  实现这一目的自然是执行make menuconfig. 

    make menuconfig 实际上就是拿 mconf 这个工具去解析config文件里的描述信息, 进而转换为图形界面, 当然, config 文件有自动定义的语法格式, 详细见本文最下放. 

    第一次执行make menuconfig时, 需要先生成 mconf 这个工具, 在预编译 scripts/kconfig/mconf.c 生成scripts/kconfig/mconf.o 之后的连接阶段,   

    需要ldconfig参数给出所需要连接的库的位置,  所说的库为后缀为.a 或.so 或 .dylib 的ncursesw ncurses curses库, 

    生成ldflags的的脚本为: scripts/kconfig/lxdialog/check-lxdialog.sh

    上面报错的原因就是,   MAC 系统下  ncursesw ncurses curses 这些库文件的位置不能通过 check-lxdialog.sh 里给出命令来找到, 所以生成的 ldflags 不对, 进而无法生成mconf. 

    该bug的解决办法如下:

    以编译 busybox 为例子:

    打开 scripts/kconfig/lxdialog/check-lxdialog.sh  文件. 

    vi scripts/kconfig/lxdialog/check-lxdialog.sh

    将红色部分添加进去即可. 

    ldflags()         

    {                  

        for extin so a dylib;do

            for libi n ncursesw ncurses curses ;do

                $cc-print-file-name=lib${lib}.${ext} | grep-q /

                if [$?-eq0];then

                    echo"-l${lib}"

                    exit

                fi  

            done       

            for lib in ncursesw ncurses curses ; do

                if [ -f /usr/lib/lib${lib}.${ext} ];then

                    echo "-l${lib}"

                    exit                                                                                                                   

                fi  

            done                          

        done           

        exit1         

    之后回到 busybox的目录下:

    make menuconfig :

    在进行uboot , 或者linux 的编译时, 如果make menuconfig 也出现该问题: 

    ld: symbol(s) not found for architecture x86_64

    clang: error: linker command failed with exit code 1 (use -v to see invocation)

    同样的解决办法即可生效. 

    二,  在生成了mconf之后,  我们可以按特定的语法写出config 文件, 进而自定义make menuconfig界面:

    以下是我的config 文件, 语法是简单而且通用的, 您可以仿照如下代码自定义出自己的界面:

    mainmenu "Handawei OS Configuration"

    config CONFIG_NAME

    string "System Name String"

    default "Handawei config-demo"

    help

            just write you config-name bravly!

    config NO_WPTR

    def_bool y

    choice

    prompt "Choice your CPU arch"

    config ARM_T

    bool "ARM_Samsung"

    config MIPS_T

    bool "MIPS_Cavium"

    config POWERPC_T

    bool "Power PC"

    config X86_T

    bool "Intel X86"

    endchoice

    choice

    prompt "Target Platform Model"

    config  ARM_S3C2410_T

    bool "s3c2410"

    depends on ARM_T

    config ARM_S3C6410_T

    bool "s3c6410"

    depends on ARM_T

    config ARM_EXYNOS4412_T

    bool "Exynos4412"

    depends on ARM_T

    config ARM_EXYNOS5410_T

    bool "Exynos5410"

    depends on ARM_T

    config MIPS_CAVM_OCTEON1_T

    bool "Cavium OCTEON I"

    depends on MIPS_T

    config MIPS_CAVM_OCTEON2_T

    bool "Cavium OCTEON II"

    depends on MIPS_T

    config MCU_51_T

    bool "MCU ATMEL 51"

    depends on MCU_T

    endchoice

    menu "Hardware settings"

    config SUPPORT_LINUX

    bool "Support Linux"

    default y if ARM_T || MIPS_T || X86_T || POWERPC_T || SH_T

    config MCPU

    int "CPU numbers used in MCPU platform"

    default y if ARM_T || MIPS_T

    config CPU_NUM

    int "CPU numbers used in MCPU platform"

    default 2

    depends on MCPU

    config CORE_NUM

    int "Cores per CPU"

    range 1 12 if MIPS_CAVM_OCTEON1_T

    range 1 12 if MIPS_CAVM_OCTEON2_T

    default "12" if MIPS_T

    range 1 8 if ARM_T

    default "4" if ARM_EXYNOS4412_T

    default "8" if ARM_EXYNOS5410_T

    config ARENA_MEM_SIZE

    int "Default memory size of arena manager"

    default "500000000"

    config GPIO_MASK_CPU

    hex "GPIO mask of CPU"

    default 0x1 if ARM_S3C2410_T || ARM_S3C6410_T

    depends on MCPU

    config HFA

    bool "Enable Hyper Finite Automata"

    default y if MIPS_CAVM_OCTEON1_T || MIPS_CAVM_OCTEON2_T

    depends on MIPS_T

    if HFA

    menu "HFA hardware configure"

    config HFA_BUF_NUM

    int "HFA input/temp buffers's number"

    default 400

    config HFA_THD_NUM

    int "HFA thread buffers's number"

    default 400

    config HFA_MEM_SIZE

    int "HFA memory size (in mega bytes)"

    default 1024

    endmenu

    endif

    if MIPS_T

    config ETHERNET_PORT

    int "Ethernet port number (range 1 50)"

    default 2

    range 1 50

    config GPIO_PORT

    int "GPIO port number (range 1 1000)"

    default 100

    range 1 1000

    endif

    endmenu

    生成的界面如下:

    如果在退出时选择了yse,会将配置保存到.config 里. 

    之后就可以make了. 

    ————————————————

    版权声明:本文为CSDN博主「韩大卫」的原创文章,遵循CC 4.0 by-sa版权协议,转载请附上原文出处链接及本声明。

    原文链接:https://blog.csdn.net/han_dawei/article/details/41803179

    相关文章

      网友评论

          本文标题:修复mac 下 make menuconfig 的bug以及自定

          本文链接:https://www.haomeiwen.com/subject/ccihectx.html