Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> ld: cannot find /ubuntu/omnibook/sections.lds: No

ld: cannot find /ubuntu/omnibook/sections.lds: No

日期:2017/2/7 14:22:22      編輯:Linux教程
 

編譯下載的linux-source-2.6.32內核源碼過程中,出現如下錯誤導致無法繼續進行:

ld: cannot find /ubuntu/omnibook/sections.lds: No such file or directory

原因與解決方法:

這是因為makefile中一處目錄獲取錯誤導致,修正一下即可。具體解決方法參考如下。

編輯文件

/usr/src/linux-source-2.6.32/ubuntu/omnibook/Makefile

查找:

ifeq ($(KERNELRELEASE),)
# Support for direct Makefile invocation

在其前面增加一行:

PWD=$(shell pwd)

你也可以參考如下步驟操作(原理一樣):

$pwd
/usr/src/mylinux-source-2.6.38
$sudo vim +160  ubuntu/omnibook/Makefile  

打開Makefile文件後,查找如下語句:

160 #EXTRA_LDFLAGS +=  $(src)/sections.lds
161 EXTRA_LDFLAGS += $(PWD)/ubuntu/omnibook/sections.lds  

修改方法一:

160 #EXTRA_LDFLAGS +=  $(src)/sections.lds
161 PWD = $(shell pwd) 
162 EXTRA_LDFLAGS += $(PWD)/ubuntu/omnibook/sections.lds  

修改方法二:

160 EXTRA_LDFLAGS +=  $(src)/sections.lds
161 #EXTRA_LDFLAGS += $(PWD)/ubuntu/omnibook/sections.lds 

Copyright © Windows教程網 All Rights Reserved