精品国产人成在线_亚洲高清无码在线观看_国产在线视频国产永久2021_国产AV综合第一页一个的一区免费影院黑人_最近中文字幕MV高清在线视频

0
  • 聊天消息
  • 系統消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發帖/加入社區
會員中心
創作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示

編譯OpenWRT出錯m4如何解決呢?

嵌入式加油站 ? 來源:嵌入式加油站 ? 2023-07-14 10:35 ? 次閱讀

編譯m4-1.4.17庫時出現關于 freadahead.c中編譯錯誤

現象

出錯提示如下 :

freadahead.c: In function 'freadahead':
freadahead.c3: error: #error "Please port gnulib freadahead.c to your platform! Look at the definition of fflush, fread, ungetc on your system, then report this to bug-gnulib."
91 |#error "Please port gnulib freadahead.c to your platform! Look at the definition of fflush, fread, ungetc on your system, then report this to bug-gnulib."
.........
make[1]: *** [tools/Makefile /home/fan/openwrt_CC_mt76xx_zhuotk_source/staging_dir/target-mipsel_mips32_uClibc-0.9.33.2/stamp/.tools_install_yynyynynynyyyyyyyyynyyyyyyyyynyyyyynnyyynnyynnnyy] Error 2
make[1]: Leaving directory '/home/fan/openwrt_CC_mt76xx_zhuotk_source'
make: *** [/home/fan/openwrt_CC_mt76xx_zhuotk_source/include/toplevel.mk world] Error 2

解決方法
進入文件夾
/buildroot/output/build/host-m4-1.4.17
cd build_dir/host/m4-1.4.17/
輸入命令:
sed -i 's/IO_ftrylockfile/IO_EOF_SEEN/' lib/*.c
echo "#define _IO_IN_BACKUP 0x100" >> lib/stdio-impl.h
#error "Please port gnulib freadahead.c to your platform! Look at the definition of fflush, fread, ungetc on your system, then report this to bug-gnulib

編譯findutils-4.4.2時 同樣有freadahead.c文件錯誤

現象
出錯提示如下:
freadahead.c: In function 'freadahead':
freadahead.c3: error: #error "Please port gnulib freadahead.c to your platform! Look at the definition of fflush, fread on your system, then report this to bug-gnulib."
#error "Please port gnulib freadahead.c to your platform! Look at the definition of fflush, fread on your
^
make[8]: *** [Makefile freadahead.o] Error 1
make[8]: Leaving directory '/home/fan/openwrt_CC_mt76xx_omj_source/build_dir/host/findutils-4.4.2/gnulib/lib'
make[7]: *** [Makefile all] Error 2
make[7]: Leaving directory '/home/fan/openwrt_CC_mt76xx_omj_source/build_dir/host/findutils-4.4.2/gnulib/lib'
make[6]: *** [Makefile all-recursive] Error 1
make[6]: Leaving directory '/home/fan/openwrt_CC_mt76xx_omj_source/build_dir/host/findutils-4.4.2/gnulib'
make[5]: *** [Makefile all-recursive] Error 1
make[5]: Leaving directory '/home/fan/openwrt_CC_mt76xx_omj_source/build_dir/host/findutils-4.4.2'
make[4]: *** [Makefile all] Error 2
make[4]: Leaving directory '/home/fan/openwrt_CC_mt76xx_omj_source/build_dir/host/findutils-4.4.2'
make[3]: *** [Makefile /home/fan/openwrt_CC_mt76xx_omj_source/build_dir/host/findutils-4.4.2/.built] Error 2
make[3]: Leaving directory '/home/fan/openwrt_CC_mt76xx_omj_source/tools/findutils'
make[2]: *** [tools/Makefile tools/findutils/compile] Error 2
make[2]: Leaving directory '/home/fan/openwrt_CC_mt76xx_omj_source'
make[1]: *** [tools/Makefile /home/fan/openwrt_CC_mt76xx_omj_source/staging_dir/target-mipsel_24kec+dsp_uClibc-0.9.33.2/stamp/.tools_install_yynyynynynyyyyyyyyynyyyyyyyyynyyyyynnyyynnyynnnyy] Error 2
make[1]: Leaving directory '/home/fan/openwrt_CC_mt76xx_omj_source'
make: *** [/home/fan/openwrt_CC_mt76xx_omj_source/include/toplevel.mk world] Error 2

解決方法
cd build_dir/host/findutils-4.4.2
sed -i 's/IO_ftrylockfile/IO_EOF_SEEN/' lib/*.c
echo "#define _IO_IN_BACKUP 0x100" >> lib/stdio-impl.h
sed -i 's/IO_ftrylockfile/IO_EOF_SEEN/' gnulib/lib/*.c
echo "#define _IO_IN_BACKUP 0x100" >> gnulib/lib/stdio-impl.h
echo "#define _IO_ferror_unlocked" >> gnulib/lib/stdio-impl.h
sed -i '/unistd/a #include ' gnulib/lib/mountlist.c
問題依然
findutils-4.6.0替換findutils-4.4.2
切換到dl目錄
cd dl
下載findutils-4.6.0
wgethttps://mirrors.aliyun.com/gnu/findutils/findutils-4.6.0.tar.gz
獲取findutils-4.6.0.tar.gz的md5碼
md5sum findutils-4.6.0.tar.gz
9936aa8009438ce185bea2694a997fc1findutils-4.6.0.tar.gz
修改Makefile
cd ../tools/findutils/
vim Makefile
#
# Copyright (C) 2006-2013 OpenWrt.org
...
# Vsersion
PKG_VERSION:=4.6.0

.....
# PKG_MD5
PKG_MD5SUM:=9936aa8009438ce185bea2694a997fc1
.....
刪除patch
21-Fix-time_t-vs-long-int-mismatches.patch(此文件在4.4.x需要, 4.6.x已經修復了此bug所以不需要了)
rm -f patches/21-Fix-time_t-vs-long-int-mismatches.patch
切換目錄
cd ../../build_dir/host/findutils-4.6.0
維修源碼, 運行以下命令:
sed -i 's/IO_ftrylockfile/IO_EOF_SEEN/' lib/*.c
echo "#define _IO_IN_BACKUP 0x100" >> lib/stdio-impl.h
sed -i 's/IO_ftrylockfile/IO_EOF_SEEN/' gl/lib/*.c
echo "#define _IO_IN_BACKUP 0x100" >> gl/lib/stdio-impl.h
sed -i '/unistd/a #include ' gl/lib/mountlist.c

重新編譯,此問題消除




審核編輯:劉清

聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。 舉報投訴
  • OpenWrt
    +關注

    關注

    10

    文章

    127

    瀏覽量

    39268

原文標題:【openwrt】編譯OpenWRT 出錯m4和findutils庫 freadahead.c文件錯誤

文章出處:【微信號:嵌入式加油站,微信公眾號:嵌入式加油站】歡迎添加關注!文章轉載請注明出處。

收藏 人收藏

    評論

    相關推薦

    【NetRouter試用體驗】四、openwrt學習——編譯出錯求助

    下一步準備在NetRouter安裝openwrt系統,安裝前當然要學者編譯openwrt固件啦,可是固件編譯遇到了問題,找了好久也沒發現問題。請老司機指條明路。。。在ubuntu10.
    發表于 03-19 20:07

    M4推薦用哪一種編譯器?

    對于M4來說TI推薦用哪一種編譯器呀?我用IAR編譯器6.5(破解的),總是發現很多控制外圍設備和自己想的不用一樣?
    發表于 04-08 09:36

    請問Nu Micro?Cortex-M0/M4系列如何解鎖用戶配置字上的鎖位?

    Nu Micro?Cortex-M0/M4系列如何解鎖用戶配置字上的鎖位
    發表于 11-25 07:41

    請問如何使用NuvotonM0/M23Keil許可證版本編譯M4系列?

    如何使用NuvotonM0/M23Keil許可證版本編譯M4系列?
    發表于 12-29 07:57

    請問如何解決IBM服務器X3650 M4不能開機的問題?

    請問如何解決IBM服務器X3650 M4不能開機的問題?
    發表于 11-01 07:18

    何解決esphome upload固件編譯出錯的問題

    編譯esphome upload固件到nodemcu板子上發生崩潰是怎樣回事?如何解決esphome upload固件編譯出錯的問題?
    發表于 02-15 06:08

    Cortex-M0/M4芯片是否支持代碼保護用戶的程序代碼嗎?

    NuMicro? Cortex-M0/M4芯片是否支持代碼保護用戶的程序代碼嗎?如何解開LOCK位上的用戶配置字?
    發表于 06-19 06:02

    編譯M4系列可以使用Nuvoton M0 / M23凱爾許可版本嗎?

    M0/M23 Keil 許可證版本已經注冊。 如果您打開 M4 工程并將其編譯, 將會出現以下編譯錯誤信息 。 Please open t
    發表于 08-28 08:19

    Cortex_M3與M4權威指南_部分2

    cortex M3與M4權威指南,英文版
    發表于 03-09 10:28 ?0次下載

    瑞風M4怎么樣?瑞風M4的全面配置參數及圖片

    隨著市場的發展,消費者對于商務MPV的需求更加旺盛,作為國內最大MPV廠商之一的江淮也對服役多年的瑞風商務車進行了更新換代,瑞風M4應運而生。在顏值方面,采用了最新家族式設計的瑞風M4顯得更加大氣,商務氣息也更加濃厚。
    發表于 07-21 17:03 ?3933次閱讀

    新手三天入門M4

    新手三天入門M4
    發表于 10-09 11:24 ?27次下載
    新手三天入門<b class='flag-5'>M4</b>

    TI中M4中的SIMD講解

    經常有朋友在看到M4的特性后會問到底什么是SIMD,簡單講,SIMD就是單指令多數據(Single Instruction Multiple Data)的縮寫。這套東西最早是并行計算機使用的,現在
    發表于 05-04 08:38 ?6次下載
    TI中<b class='flag-5'>M4</b>中的SIMD講解

    Cortex內核的比較(M3和M4

    **Cortex內核的比較(M3和M4)** 一、開發板資源描述    
    發表于 12-01 13:06 ?20次下載
    Cortex內核的比較(<b class='flag-5'>M</b>3和<b class='flag-5'>M4</b>)

    TI M4(Cortex M4) MCU DMA 操作

    Cortex M4 DMA 操作Cortex M4 DMA 操作本文記錄了對 TI M4C129 MCU 的 DMA操作,使用了串口UART1(DMA)與上位機PC軟件的數據收發。MCU 的串口接收
    發表于 12-28 19:18 ?11次下載
    TI <b class='flag-5'>M4</b>(Cortex <b class='flag-5'>M4</b>) MCU DMA 操作

    蘋果或于今秋推出搭載M4芯片的MacBook Pro與Mac Mini

    古爾曼預測,配備M4芯片的14英寸MacBook Pro、M4 Pro與M4 Max芯片的14英寸至16英寸MacBook Pro以及M4M4
    的頭像 發表于 05-14 11:04 ?1142次閱讀