Coder Social home page Coder Social logo

Comments (2)

l0calh05t avatar l0calh05t commented on June 29, 2024

The only part currently causing a compile error is the two lines of inline assembly Demangle::getReal. For x64 these could be replaced by a small MASM file:

_TEXT SEGMENT

PUBLIC cvt80to64

cvt80to64 PROC
    fld tbyte ptr [rcx]
    fstp qword ptr [rdx]
    ret 0
cvt80to64 ENDP

_TEXT ENDS
END

This defines extern "C" void cvt80to64(void * in, long double * out) and could be used instead of the inline assembly (obviously only for 64 builds).

That leaves a whole bunch of warnings because int and unsigned int are used practically everywhere instead of ptrdiff_t and size_t

from cv2pdb.

rainers avatar rainers commented on June 29, 2024

The respective PR has been merged, I guess this can be closed.

from cv2pdb.

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.