Unknown type name ‘off64_t’

2019-04-04 04:35发布

I have a problem using Apache Portable Runtime on Ubuntu with GCC 4.8.1

The problem is that the off64_t from <sys/types.h> is not available when compiling with gcc. (When compiling with g++ everything work fine)

Does anybody know which compiler switch to use to enable off64_t? (I know that defining _LARGEFILE_SOURCE _LARGEFILE64_SOURCE avoids the problem, but wondering if this is the right way)

To reproduce the error one can simply try to compile the following code:

#include <sys/types.h>
off64_t a_variable;

标签: gcc g++ gcc4.8
7条回答
疯言疯语
2楼-- · 2019-04-04 04:41

Also late to the party, but the main reason for receiving this issue was installing the 64-bit version of MinGW instead of 32-bit:

https://sourceforge.net/projects/mingw/

查看更多
forever°为你锁心
3楼-- · 2019-04-04 04:44

In my environment gcc version 4.1.2, I need to define __USE_LARGEFILE64. I found this macro from /usr/include/unistd.h who defines lseek64()

#define __USE_LARGEFILE64
#include <sys/types.h>
#include <unistd.h>
查看更多
成全新的幸福
4楼-- · 2019-04-04 04:45

off64_t is not a language defined type. No compiler switch will make it available.

It is defined in sys/types.h, but (on a 32 bit system) only if

  • _LARGEFILE64_SOURCE is defined
    Which will make the 64 bit interfaces available (off64_t, lseek64(), etc...).
    The 32 bit interfaces will still be available by their original names.

  • _FILE_OFFSET_BITS is defined as '64'
    Which will make the names of the (otherwise 32 bit) functions and data types refer to their 64 bit counterparts.
    off_t will be off64_t, lseek() will use lseek64(), and so on...
    The 32 bit interface is no longer available.

Make sure that if you define these macros anywhere in your program, you define them at the beginning of all your source files. You don't want ODR violations to be biting you in the ass.

Note, this is for a 32 bit system, where off_t is normally a 32 bit value.
On a 64 bit system, the interface is already 64 bits wide, you don't need to use these macros to get the large file support.
off_t is a 64 bit type, lseek() expects a 64 bit offset, and so on.
Additionally, the types and functions with 64 in their name aren't defined, there's no point.

See http://linux.die.net/man/7/feature_test_macros
and http://en.wikipedia.org/wiki/Large_file_support

You also may be interested to know that when using g++, _GNU_SOURCE is automatically defined, which (with the gnu c runtime library) leads to _LARGEFILE64_SOURCE being defiend. That is why compiling your test program with g++ makes off64_t visible. I assume APR uses the same logic in making _LARGEFILE64_SOURCE defined.

查看更多
做个烂人
5楼-- · 2019-04-04 04:49

Sorry for the lateness but I did never had to embed perl code in C programs untill today ^^

I solved the issue in Unix/Linux systems (I think it is possible to create such feature in Windows since Vista) by creating a symbolic link pointing to the CORE folder of perl version...

ln -s $(perl -MConfig -e 'print $Config{archlib}')/CORE /usr/include/perl

In your project file, source code, simply add:

#include <perl/EXTERN.h>
#include <perl/perl.h>

...and I came from long list of notes and errors related to off_t and off64_t to a clean build result ^^

查看更多
家丑人穷心不美
6楼-- · 2019-04-04 05:00

Redefine off64_t to __off64_t in your compile flag. Edit your Makefile so it contains:

CFLAGS= -Doff64_t=__off64_t

then, just run $ make 1 (assuming you have 1.c in your directory)

查看更多
祖国的老花朵
7楼-- · 2019-04-04 05:03

A bit late, but still current. I simply add -Doff64_t=_off64_t to the compiler flags.

查看更多
登录 后发表回答