We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4afc38c commit 84757e9Copy full SHA for 84757e9
build-crosstool-ng.sh
@@ -96,7 +96,9 @@ build_install_make.exe()
96
pushd ${builddir}
97
tar xaf ${make_tar}
98
pushd make*
99
- ./configure --host=x86_64-w64-mingw32
+ # TODO - GNU make 4.4 has implicit function declarations.
100
+ # Remove the custom CFLAGS for the next version.
101
+ ./configure --host=x86_64-w64-mingw32 CFLAGS='-O2 -Wno-implicit-function-declaration'
102
make -j${nproc}
103
cp make.exe $HOME/x-tools/HOST-x86_64-w64-mingw32/pru-elf/bin/
104
popd
0 commit comments