[binutils-gdb] gprofng: 30889 can't compile without large file support

Vladimir Mezentsev vmezents@sourceware.org
Sat Jan 13 04:52:50 GMT 2024


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=1b346e50485ee450e8103e4b1704b43f61bc39f7

commit 1b346e50485ee450e8103e4b1704b43f61bc39f7
Author: Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
Date:   Fri Jan 12 11:34:02 2024 -0800

    gprofng: 30889 can't compile without large file support
    
    gprofng/ChangeLog
    2024-01-12  Vladimir Mezentsev  <vladimir.mezentsev@oracle.com>
    
            PR 30889
            * src/util.h (O_LARGEFILE): Define to 0, if not defined.

Diff:
---
 gprofng/src/util.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gprofng/src/util.h b/gprofng/src/util.h
index c6382aab5bb..cbbc2f7e118 100644
--- a/gprofng/src/util.h
+++ b/gprofng/src/util.h
@@ -32,6 +32,10 @@
 #include "i18n.h"
 #include "debug.h"
 
+#ifndef O_LARGEFILE
+#define O_LARGEFILE 0
+#endif
+
 #define SWAP_ENDIAN(x)  swapByteOrder((void *) (&(x)), sizeof(x))
 #define AppendString(len, arr, ...) len += snprintf(arr + len, sizeof(arr) - len, __VA_ARGS__)
 #define ARR_SIZE(x)     (sizeof (x) / sizeof (*(x)))


More information about the Binutils-cvs mailing list