GNU m4 1.4.10から1.4.18のtarballリリースのビルド(すべてのホットフィックスバージョンをテストしませんでしたが、この範囲でエラーが一貫していると仮定します)./configure && make -j1
およびgit git
リポジトリ http://git.savannah.gnu.org/r/m4.git with ./bootstrap && ./configure && make -j1
(commit cvs-readonly-359-Gd69fa528
すなわちHEAD
のmaster
)は、
freadahead.c: In function 'freadahead':
freadahead.c:92:3: 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."
#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[3]: *** [Makefile:1910: freadahead.o] Error 1
make[3]: Leaving directory '/mnt/data/sources/m4-1.4.18/lib'
私はこのエラーに非常に混乱しており、表面的なグーグル検索によると、問題は過度に長い無視されたアップストリーム更新の結果です。 https://bugzilla.redhat.com/show_bug.cgi?id=1573342 修正の天才的なドキュメンテーション「バグレポートをありがとう、修正されました!」 -それが他人を助けないなら...
ソースからglibcをビルドし、カスタムプレフィックスにインストールしようとしました[1]。 2.28と2.27は同じ問題を示し、2.26は
make[2]: Verzeichnis „/mnt/data/sources/glibc-2.26/inet“ wird betreten
gcc ../sysdeps/unix/sysv/linux/if_index.c -c -std=gnu11 -fgnu89-inline -O2 -Wall -Werror -Wundef -Wwrite-strings -fmerge-all-constants -fno-stack-protector -frounding-math -g -Wstrict-prototypes -Wold-style-definition -ftls-model=initial-exec -U_FORTIFY_SOURCE -I../include -I/mnt/data/sources/glibc-2.26-build/inet -I/mnt/data/sources/glibc-2.26-build -I../sysdeps/unix/sysv/linux/x86_64/64 -I../sysdeps/unix/sysv/linux/x86_64 -I../sysdeps/unix/sysv/linux/x86 -I../sysdeps/x86/nptl -I../sysdeps/unix/sysv/linux/wordsize-64 -I../sysdeps/x86_64/nptl -I../sysdeps/unix/sysv/linux/include -I../sysdeps/unix/sysv/linux -I../sysdeps/nptl -I../sysdeps/pthread -I../sysdeps/gnu -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix/x86_64 -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/x86_64/64 -I../sysdeps/x86_64/fpu/multiarch -I../sysdeps/x86_64/fpu -I../sysdeps/x86/fpu/include -I../sysdeps/x86/fpu -I../sysdeps/x86_64/multiarch -I../sysdeps/x86_64 -I../sysdeps/x86 -I../sysdeps/ieee754/float128 -I../sysdeps/ieee754/ldbl-96/include -I../sysdeps/ieee754/ldbl-96 -I../sysdeps/ieee754/dbl-64/wordsize-64 -I../sysdeps/ieee754/dbl-64 -I../sysdeps/ieee754/flt-32 -I../sysdeps/wordsize-64 -I../sysdeps/ieee754 -I../sysdeps/generic -I.. -I../libio -I. -D_LIBC_REENTRANT -include /mnt/data/sources/glibc-2.26-build/libc-modules.h -DMODULE_NAME=libc -include ../include/libc-symbols.h -DPIC -DTOP_NAMESPACE=glibc -o /mnt/data/sources/glibc-2.26-build/inet/if_index.o -MD -MP -MF /mnt/data/sources/glibc-2.26-build/inet/if_index.o.dt -MT /mnt/data/sources/glibc-2.26-build/inet/if_index.o
../sysdeps/unix/sysv/linux/if_index.c: In function ‘__if_nametoindex’:
../sysdeps/unix/sysv/linux/if_index.c:46:3: error: ‘strncpy’ specified bound 16 equals destination size [-Werror=stringop-truncation]
strncpy (ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
make[2]: *** [/mnt/data/sources/glibc-2.26-build/sysd-rules:213: /mnt/data/sources/glibc-2.26-build/inet/if_index.o] Fehler 1
make[2]: Verzeichnis „/mnt/data/sources/glibc-2.26/inet“ wird verlassen
make[1]: *** [Makefile:215: inet/subdir_lib] Fehler 2
make[1]: Verzeichnis „/mnt/data/sources/glibc-2.26“ wird verlassen
make: *** [Makefile:9: all] Fehler 2
および2.25
strftime_l.c: In function ‘__strftime_internal’:
strftime_l.c:719:4: error: macro expands to multiple statements [-Werror=multistatement-macros]
digits = d > width ? d : width; \
^~~~~~
strftime_l.c:1260:6: note: in expansion of macro ‘DO_NUMBER’
DO_NUMBER (1, tp->tm_year + TM_YEAR_BASE);
^~~~~~~~~
strftime_l.c:1259:4: note: some parts of macro expansion are not guarded by this ‘else’ clause
else
^~~~
In file included from wcsftime_l.c:23:
strftime_l.c: In function ‘__strftime_internal’:
strftime_l.c:719:4: error: macro expands to multiple statements [-Werror=multistatement-macros]
digits = d > width ? d : width; \
^~~~~~
strftime_l.c:1260:6: note: in expansion of macro ‘DO_NUMBER’
DO_NUMBER (1, tp->tm_year + TM_YEAR_BASE);
^~~~~~~~~
strftime_l.c:1259:4: note: some parts of macro expansion are not guarded by this ‘else’ clause
else
^~~~
cc1: all warnings being treated as errors
make[2]: *** [../o-iterator.mk:9: /mnt/data/sources/glibc-2.25-build/time/strftime_l.os] Fehler 1
そのため、これ以上のバージョンを試さないことにしました。
[findutilsの同様の問題に関するレポートに関する議論]は、最新のgnulibソースルートからfreadahead.{c,h}
を上書きすることを提案しています。これは、私が何をしているのかわからないため、ここに文書化する必要のない一連の問題を引き起こします。
この問題の修正、報告、および/または作業を開始するにはどうすればよいですか?
ユーザーがパッケージマネージャーを使用する権限を持っていないシステム用のbootstrapスクリプトのソースからm4を構築しています。リリースソースのtarballから元のGNU m4を構築することに本当に興味があります。
他の同様にむき出しのシステムでのビルド結果の概要は https://gitlab.com/krichter/m4/pipelines/36977411 で提供されています。
[1]これを調査する場合、デフォルトのプレフィックス/usr/local
をインストールするとシステムが確実に破損するため、常にglibcをカスタムプレフィックスにインストールします。確実にcheckinstall
の使用を検討してください。
ソースからm4をビルドする場合は、リポジトリからビルドの依存関係を取得することから始めます。
software-properties-gtk
)必要なビルドツールをインストールする
Sudo apt-get install build-essential
現在のm4
バイナリパッケージに必要なビルドの依存関係を取得する
Sudo apt-get build-dep m4
現在のm4
バイナリパッケージのソースコードを取得します(必要なすべてのパッチがDebianやUbuntuによって提供されます):
apt-get source m4
cd m4-*
その後、通常どおりにコンパイルします
このパッチ を適用してみてください。これは、OpenEmbeddedによって生成されたアップストリームパッチのバックポートです。