ffmpeg | branch: master | Rémi Denis-Courmont <r...@remlab.net> | Tue Jun 11 19:46:13 2024 +0300| [0d748eec8d52715f2949bd03519d39f2bf5baac4] | committer: Rémi Denis-Courmont
configure: detect 64-bit generic platforms Currently, any unrecognised platform is treated as 32-bit. This should detect *most* 64-bit platforms, namely LP64 and LLP64 ones. Unfortunately this will not work for ILP32 ABIs on 64-bit ISAs, but still better than nothing. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0d748eec8d52715f2949bd03519d39f2bf5baac4 --- configure | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure b/configure index 3bca638459..55676f742a 100755 --- a/configure +++ b/configure @@ -5564,6 +5564,12 @@ elif enabled x86; then ;; esac +else + + if test_cpp_condition inttypes.h "UINTPTR_MAX >= UINT64_MAX"; then + enable fast_64bit + fi + fi if [ "$cpu" != generic ]; then _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".