Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
eeb059e0
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
eeb059e0
编写于
2月 07, 2006
作者:
L
Linus Torvalds
浏览文件
操作
浏览文件
下载
差异文件
Merge
git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-bugfix
上级
c03296a8
8c7f75d3
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
16 addition
and
9 deletion
+16
-9
Makefile
Makefile
+1
-1
arch/cris/Makefile
arch/cris/Makefile
+1
-1
scripts/kconfig/lxdialog/Makefile
scripts/kconfig/lxdialog/Makefile
+5
-2
scripts/kconfig/lxdialog/check-lxdialog.sh
scripts/kconfig/lxdialog/check-lxdialog.sh
+9
-5
未找到文件。
Makefile
浏览文件 @
eeb059e0
...
...
@@ -442,7 +442,7 @@ export KBUILD_DEFCONFIG
config %config
:
scripts_basic outputmakefile FORCE
$(Q)
mkdir
-p
include/linux
$(Q)$(MAKE)
$(build)
=
scripts/kconfig
$@
$(Q)$(MAKE)
.kernelrelease
$(Q)$(MAKE)
-C
$(srctree)
KBUILD_SRC
=
.kernelrelease
else
# ===========================================================================
...
...
arch/cris/Makefile
浏览文件 @
eeb059e0
...
...
@@ -119,7 +119,7 @@ $(SRC_ARCH)/.links:
@
ln
-sfn
$(SRC_ARCH)
/
$(SARCH)
/lib
$(SRC_ARCH)
/lib
@
ln
-sfn
$(SRC_ARCH)
/
$(SARCH)
$(SRC_ARCH)
/arch
@
ln
-sfn
$(SRC_ARCH)
/
$(SARCH)
/vmlinux.lds.S
$(SRC_ARCH)
/kernel/vmlinux.lds.S
@
ln
-sfn
$(SRC_ARCH)
/
$(SARCH)
/asm-offsets.c
$(SRC_ARCH)
/kernel/asm-offsets.c
@
ln
-sfn
$(SRC_ARCH)
/
$(SARCH)
/
kernel/
asm-offsets.c
$(SRC_ARCH)
/kernel/asm-offsets.c
@
touch
$@
# Create link to sub arch includes
...
...
scripts/kconfig/lxdialog/Makefile
浏览文件 @
eeb059e0
...
...
@@ -2,8 +2,11 @@
#
check-lxdialog
:=
$(srctree)
/
$(src)
/check-lxdialog.sh
HOST_EXTRACFLAGS
:=
$(
shell
$(CONFIG_SHELL)
$
(
check-lxdialog
)
-ccflags
)
HOST_LOADLIBES
:=
$(
shell
$(CONFIG_SHELL)
$
(
check-lxdialog
)
-ldflags
$(HOSTCC)
)
# Use reursively expanded variables so we do not call gcc unless
# we really need to do so. (Do not call gcc as part of make mrproper)
HOST_EXTRACFLAGS
=
$(
shell
$(CONFIG_SHELL)
$
(
check-lxdialog
)
-ccflags
)
HOST_LOADLIBES
=
$(
shell
$(CONFIG_SHELL)
$
(
check-lxdialog
)
-ldflags
$(HOSTCC)
)
HOST_EXTRACFLAGS
+=
-DLOCALE
...
...
scripts/kconfig/lxdialog/check-lxdialog.sh
浏览文件 @
eeb059e0
...
...
@@ -4,17 +4,17 @@
# What library to link
ldflags
()
{
echo
"main() {}"
|
$cc
-lncursesw
-xc
-
-o
/dev/null 2> /dev/null
$cc
-print-file-name
=
libncursesw.so |
grep
-q
/
if
[
$?
-eq
0
]
;
then
echo
'-lncursesw'
exit
fi
echo
"main() {}"
|
$cc
-lncurses
-xc
-
-o
/dev/null 2> /dev/null
$cc
-print-file-name
=
libncurses.so |
grep
-q
/
if
[
$?
-eq
0
]
;
then
echo
'-lncurses'
exit
fi
echo
"main() {}"
|
$cc
-lcurses
-xc
-
-o
/dev/null 2> /dev/null
$cc
-print-file-name
=
libcurses.so |
grep
-q
/
if
[
$?
-eq
0
]
;
then
echo
'-lcurses'
exit
...
...
@@ -36,10 +36,13 @@ ccflags()
fi
}
compiler
=
""
# Temp file, try to clean up after us
tmp
=
.lxdialog.tmp
trap
"rm -f
$tmp
"
0 1 2 3 15
# Check if we can link to ncurses
check
()
{
echo
"main() {}"
|
$cc
-xc
-
-o
/dev/null
2> /dev/null
echo
"main() {}"
|
$cc
-xc
-
-o
$tmp
2> /dev/null
if
[
$?
!=
0
]
;
then
echo
" *** Unable to find the ncurses libraries."
1>&2
echo
" *** make menuconfig require the ncurses libraries"
1>&2
...
...
@@ -59,6 +62,7 @@ if [ $# == 0 ]; then
exit
1
fi
cc
=
""
case
"
$1
"
in
"-check"
)
shift
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录