Giter Site home page Giter Site logo

UpnpFileInfo weirdness on ARM about pupnp HOT 6 CLOSED

pupnp avatar pupnp commented on June 3, 2024
UpnpFileInfo weirdness on ARM

from pupnp.

Comments (6)

ukleinek avatar ukleinek commented on June 3, 2024

if you provide a complete compilable example I can look into that

from pupnp.

ukleinek avatar ukleinek commented on June 3, 2024

Did you add the LFS stuff to your compile flags?

I see:

$ cat lala.c 
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>

#include <upnp.h>

int main(int argc, char **argv)
{
	UpnpFileInfo *info = malloc(1000);

	off_t temp = 1024;

	UpnpFileInfo_set_FileLength(info, temp); 

	printf(">>> SIZE %jd\n", (intmax_t)UpnpFileInfo_get_FileLength(info));
}

$ gcc -pthread -I/usr/include/upnp-1.8 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 lala.c -pthread -lupnp-1.8 -lixml-1.8 -o lala
$ ./lala
>>> SIZE 1024

$ gcc -pthread -I/usr/include/upnp-1.8 lala.c -pthread -lupnp-1.8 -lixml-1.8 -o lala
$ ./lala
>>> SIZE -1226143852

from pupnp.

whyman avatar whyman commented on June 3, 2024

Hmmm perhaps not! I will confirm tomorrow! Thanks for the suggestion

from pupnp.

whyman avatar whyman commented on June 3, 2024

That fixed it, thanks @ukleinek!

from pupnp.

ukleinek avatar ukleinek commented on June 3, 2024

@mrjimenez That's the kind of problem that happens if off_t is part of the API.

from pupnp.

mrjimenez avatar mrjimenez commented on June 3, 2024

Lets fix it.

from pupnp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.