Buildroot - menuconfig 创建配置,但不会创建
Buildroot - menuconfig creates config, but won't make
我正在尝试使用 buildroot 为 MIPS64(小端)创建交叉编译器工具链。
我有 运行 make menuconfig
并将目标设置为 MIPS64(小端)。我还被告知配置文件已经生成,我可以 运行 制作(如下所示)
configuration written to /home/blah/Downloads/buildroot-2018.02.6/mipsel64.config
*** End of the configuration.
*** Execute 'make' to start the build or try 'make help'.
然后,我 运行 make
得到以下信息:
Makefile:864: *** Please configure Buildroot first (e.g. "make menuconfig"). Stop.
有什么想法吗?
尝试将 buildroot 配置文件复制到 buildroot 目录中的 .config 文件。它可能看起来像:
cp /home/blah/Downloads/buildroot-2018.02.6/mipsel64.config /home/blah/Downloads/buildroot-2018.02.6/.config
假设/home/blah/Downloads/buildroot-2018.02.6/是你的buildroot编译目录
然后尝试做make。
不要要求 menuconfig
保存到文件,只需退出并在要求 Do you wish to save your new configuration?
时回答 Yes
。这样它将保存一个名为 .config
的文件,这正是构建所需的文件。
我正在尝试使用 buildroot 为 MIPS64(小端)创建交叉编译器工具链。
我有 运行 make menuconfig
并将目标设置为 MIPS64(小端)。我还被告知配置文件已经生成,我可以 运行 制作(如下所示)
configuration written to /home/blah/Downloads/buildroot-2018.02.6/mipsel64.config
*** End of the configuration.
*** Execute 'make' to start the build or try 'make help'.
然后,我 运行 make
得到以下信息:
Makefile:864: *** Please configure Buildroot first (e.g. "make menuconfig"). Stop.
有什么想法吗?
尝试将 buildroot 配置文件复制到 buildroot 目录中的 .config 文件。它可能看起来像:
cp /home/blah/Downloads/buildroot-2018.02.6/mipsel64.config /home/blah/Downloads/buildroot-2018.02.6/.config
假设/home/blah/Downloads/buildroot-2018.02.6/是你的buildroot编译目录
然后尝试做make。
不要要求 menuconfig
保存到文件,只需退出并在要求 Do you wish to save your new configuration?
时回答 Yes
。这样它将保存一个名为 .config
的文件,这正是构建所需的文件。