本文目的:
一, 解決在mac 系統(tǒng)里make menuconfig 報(bào)錯(cuò): ?lcd: symbol(s) not found for architecture x86_64 的bug
二, ?使用mconf, 自定義實(shí)現(xiàn)一個(gè)make menuconfig的界面
一, 在MAC 系統(tǒng)下使用make menuconfig 調(diào)用圖形界面做config時(shí), ?可能會(huì)有如下報(bào)錯(cuò):
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內(nèi)核等軟件包之前, ?還是使用圖形界面來(lái)做配置最為最直觀. ?實(shí)現(xiàn)這一目的自然是執(zhí)行make menuconfig.?
make menuconfig 實(shí)際上就是拿 mconf 這個(gè)工具去解析config文件里的描述信息, 進(jìn)而轉(zhuǎn)換為圖形界面, 當(dāng)然, config 文件有自動(dòng)定義的語(yǔ)法格式, 詳細(xì)見(jiàn)本文最下放.?
第一次執(zhí)行make menuconfig時(shí), 需要先生成 mconf 這個(gè)工具, 在預(yù)編譯?scripts/kconfig/mconf.c 生成scripts/kconfig/mconf.o 之后的連接階段, ??
需要ldconfig參數(shù)給出所需要連接的庫(kù)的位置, ?所說(shuō)的庫(kù)為后綴為.a 或.so 或 .dylib 的ncursesw ncurses curses庫(kù),?
生成ldflags的的腳本為: scripts/kconfig/lxdialog/check-lxdialog.sh
上面報(bào)錯(cuò)的原因就是, ??MAC 系統(tǒng)下 ?ncursesw ncurses curses 這些庫(kù)文件的位置不能通過(guò)?check-lxdialog.sh 里給出命令來(lái)找到, 所以生成的 ldflags 不對(duì), 進(jìn)而無(wú)法生成mconf.?
該bug的解決辦法如下:
以編譯 busybox 為例子:
打開(kāi) scripts/kconfig/lxdialog/check-lxdialog.sh ?文件.?
vi scripts/kconfig/lxdialog/check-lxdialog.sh
將紅色部分添加進(jìn)去即可.?
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 :
在進(jìn)行uboot , 或者linux 的編譯時(shí), 如果make menuconfig 也出現(xiàn)該問(wèn)題:?
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
同樣的解決辦法即可生效.?
二, ?在生成了mconf之后, ?我們可以按特定的語(yǔ)法寫(xiě)出config 文件, 進(jìn)而自定義make menuconfig界面:
以下是我的config 文件, 語(yǔ)法是簡(jiǎn)單而且通用的, 您可以仿照如下代碼自定義出自己的界面:
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
生成的界面如下:
如果在退出時(shí)選擇了yse,會(huì)將配置保存到.config 里.?
之后就可以make了.?
————————————————
版權(quán)聲明:本文為CSDN博主「韓大衛(wèi)」的原創(chuàng)文章锻霎,遵循CC 4.0 by-sa版權(quán)協(xié)議喳钟,轉(zhuǎn)載請(qǐng)附上原文出處鏈接及本聲明。
原文鏈接:https://blog.csdn.net/han_dawei/article/details/41803179