免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 5422 | 回复: 7
打印 上一主题 下一主题

[其他] 关于静态库中强符号无法链接覆盖弱符号的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-07-06 11:08 |只看该作者 |倒序浏览
本帖最后由 cheng_bingyuan 于 2013-07-06 11:10 编辑

我查过,如果想把静态库中的强符号链接进来覆盖弱号的话应该加-Wl,--whole-archive,但是怎么加入下面的Makefile中的$(LD) $(LDFLAGS) -Wl,--start-group $(LIBS) --end-group --output $@ 中?

=======================================================================
Makefile中
=======================================================================
LD = arm-none-ebai-gcc

LIBS  = stm32lib/CMSIS/DeviceSupport/libDeviceSupport.a
LIBS  += user/app/src/libapp.a                                                    // 工程的所有文件都包含在这两个库中

$(obj)$(MAIN_OUT_ELF):    $(LIBS)
        $(LD) $(LDFLAGS) -Wl,--start-group $(LIBS) --end-group --output $@
========================================================================
main.c 中  包含在之前的LIBS中
========================================================================
#pragma weak NMI_Handler = Default_Handler
#pragma weak HardFault_Handler = Default_Handler

void Default_Handler(void)
{
  /* Go into an infinite loop. */
  while (1)
  {
  }
}
========================================================================
stm32f10x_it.c  包含在之前的LIBS中,想用这个文件中的强符号覆盖main.c中的弱符号
========================================================================
void NMI_Handler(void)
{
}

/**
  * @brief  This function handles Hard Fault exception.
  * @param  None
  * @retval None
  */
void HardFault_Handler(void)
{
    /* Go to infinite loop when Hard Fault exception occurs */
    while (1)
    {}
}

论坛徽章:
4
白羊座
日期:2013-09-17 21:59:30技术图书徽章
日期:2013-10-12 22:16:03白羊座
日期:2013-10-14 11:01:40双子座
日期:2013-12-17 18:26:39
2 [报告]
发表于 2013-07-06 13:57 |只看该作者
回复 1# cheng_bingyuan
试试这样可以不
  1. -Wl,--whole-archive -Wl,--start-group $(LIBS) -Wl,--end-group -Wl,-no-whole-archive
复制代码

论坛徽章:
0
3 [报告]
发表于 2013-07-06 16:34 |只看该作者
回复 2# 井蛙夏虫


按你说的这样:
    $(obj)$(MAIN_OUT_ELF):    $(LIBS)
                $(LD) $(LDFLAGS)  -Wl,--whole-archive -Wl,--start-group $(LIBS) -Wl,--end-group -Wl,-no-whole-archive --output $@

make之后报错:
   /home/abing/Software/Sourcery_G++_Lite/Setupp/arm-2011.03/bin/../lib/gcc/arm-none-eabi/4.5.2/../../../../arm-none-eabi/lib/libm.a(lib_a-w_acos.o): In function `acos':
w_acos.c.text+0xe0): undefined reference to `__errno'
w_acos.c.text+0xf0): undefined reference to `__errno'
/home/abing/Software/Sourcery_G++_Lite/Setupp/arm-2011.03/bin/../lib/gcc/arm-none-eabi/4.5.2/../../../../arm-none-eabi/lib/libm.a(lib_a-w_sqrt.o): In function `sqrt':
w_sqrt.c.text+0xbc): undefined reference to `__errno'
w_sqrt.c.text+0x10c): undefined reference to `__errno'
collect2: ld returned 1 exit status
make: *** [main.elf] Error 1

论坛徽章:
4
白羊座
日期:2013-09-17 21:59:30技术图书徽章
日期:2013-10-12 22:16:03白羊座
日期:2013-10-14 11:01:40双子座
日期:2013-12-17 18:26:39
4 [报告]
发表于 2013-07-06 17:31 |只看该作者
回复 3# cheng_bingyuan
你的这个问题是这样编译引进来的吗?
原因应当是math库和c库的链接顺序反了,先链接了c库然后才链接math库,你自己查查为什么会这样


   

论坛徽章:
0
5 [报告]
发表于 2013-07-06 18:26 |只看该作者
回复 4# 井蛙夏虫

其实我并没有手动链接系统的库,LIBS这些全是我自己写的应用程序的库,它会不会自己链接系统的库啊,我再自己查查,谢谢

LIBS  = stm32lib/STM32F10x_StdPeriph_Driver/src/libstm32_StdPeriph.a
LIBS += ucOS/uCOS-III/Source/libuCOSIII.a
LIBS += user/app/src/libapp.a
LIBS += user/drv/src/libdrv.a
LIBS += ucOS/uC-CPU/libuC_CPU.a
LIBS += ucOS/uCOS-III/Ports/libuCOSIII_Ports.a
LIBS += stm32lib/CMSIS/DeviceSupport/libDeviceSupport.a
LIBS += stm32lib/CMSIS/CoreSupport/libCoreSupport.a

LIBS := $(addprefix $(obj),$(LIBS))

CC = arm-none-eabi-gcc

MAIN_OUT = main
MAIN_OUT_ELF = $(MAIN_OUT).elf


LDFLAGS = -Wl,--gc-sections,-Map=$@.map,-cref,-u,Reset_Handler -T stm32f10x_flash_extsram.ld

all:                 $(obj)$(MAIN_OUT_ELF)

    $(obj)$(MAIN_OUT_ELF):    $(LIBS)
                $(LD) $(LDFLAGS)  -Wl,--whole-archive -Wl,--start-group $(LIBS) -Wl,--end-group -Wl,-no-whole-archive --output $@

论坛徽章:
4
白羊座
日期:2013-09-17 21:59:30技术图书徽章
日期:2013-10-12 22:16:03白羊座
日期:2013-10-14 11:01:40双子座
日期:2013-12-17 18:26:39
6 [报告]
发表于 2013-07-06 20:24 |只看该作者
本帖最后由 井蛙夏虫 于 2013-07-06 20:25 编辑

回复 5# cheng_bingyuan
你可以将$(LDFLAGS)放在-Wl,--whole-archive -Wl,--start-group $(LIBS) -Wl,--end-group -Wl,-no-whole-archive后面先试试,不行的话再找别的原因

论坛徽章:
0
7 [报告]
发表于 2013-07-14 11:38 |只看该作者
回复 4# 井蛙夏虫


    我可能找到原因了,我的链接脚本中有一段
       DISCARD :
    {
     libc.a ( * )    (1)
     libm.a ( * )     (2)
     libgcc.a ( * )
     }
我将(1)和(2)颠倒成(2)(1)就只剩下这一个错误了,/home/abing/Software/Sourcery_G++_Lite/Setupp/arm-2013.05/bin/../lib/gcc/arm-none-eabi/4.7.3/../../../../arm-none-eabi/bin/ld: section .ARM.exidx loaded at [08018644,0801864b] overlaps section .data loaded at [08018644,080196db]
collect2: error: ld returned 1 exit status    不过很奇怪,官方的脚本都是按(1)(2)顺序那样给的,也不清楚为什么?

还有就是:
GNU链接脚本中有的写成   
/DISCARD/ :
    {
     libc.a ( * )
     libm.a ( * )
     libgcc.a ( * )
     }
有的写成
DISCARD :
    {
     libc.a ( * )
     libm.a ( * )
     libgcc.a ( * )
     }
/DISCARD/ 和DISCARD有什么区别吗,编译,链接之后都只报上面的一个错误

论坛徽章:
4
白羊座
日期:2013-09-17 21:59:30技术图书徽章
日期:2013-10-12 22:16:03白羊座
日期:2013-10-14 11:01:40双子座
日期:2013-12-17 18:26:39
8 [报告]
发表于 2013-07-20 00:57 |只看该作者
回复 7# cheng_bingyuan
就我所知应当是/DISCARD/,DISCARD不知道是否可以
  1. The special output section name `/DISCARD/' may be used to discard input sections. Any input sections which are assigned to an output section named `/DISCARD/' are not included in the output file.
复制代码
(http://sourceware.org/binutils/d ... -Section-Discarding)
上面后来的错误很明显,链接控制脚本中.ARM.exidx和.data段放在了相同的地方,改下控制脚本中的地址应当就可以了。


   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP