CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Anakunda

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    10
    Views
    3,747

    Re: VS 2015 and standard headers

    Compiler finds it in C:\Users\Anakunda\Documents\C\3rd_party\STLport\stlport\math.h but this seems not more compatible (sources are from 2008)
  2. Replies
    10
    Views
    3,747

    Re: VS 2015 and standard headers

    Thanks tiliavirga for useful link. The article describes that all content of math.h was moved to cmath but is not clear if math.h was completely removed or stayed as dummy file with include redirect....
  3. Replies
    10
    Views
    3,747

    Re: VS 2015 and standard headers

    IMHO the math.h shouldnot be picked from anywhere else than vc\include.
    The setup seems somehow fishy as it reported some 3rd party component errors on completion.
    Add/Remove programs control panel...
  4. Replies
    10
    Views
    3,747

    Re: VS 2015 and standard headers

    Really? That gives sense but I don't have the header file in my C:\Program Files (x86)\Visual Studio 2015\VC\include\

    What's wrong? Setup finshed more or less successfully and I of course included...
  5. Replies
    10
    Views
    3,747

    Re: VS 2015 and standard headers

    Thanks for hint Philip Nicoletti but if the sources are from 3rd party and I don't want to edit them is there a way to redirect?
  6. Replies
    10
    Views
    3,747

    VS 2015 and standard headers

    Hello, I'm first time trying to compile old C sources with VC14 and it seems some standard headers are missing

    math.h

    It appeared as present yet as in VC12. What is replacement of this? Thanks
  7. Replies
    1
    Views
    1,028

    Importing bare names

    Greetings, how do I import the stripped export names (no mangling) from C code

    A functions int Func()

    is exported by def file to MyDll.dll

    LIBRARY
    EXPORTS
    Func
  8. Re: Help with porting code part from 32 to 64bit

    So should I rename all registers to rax, rbx etc..?
  9. Help with porting code part from 32 to 64bit

    HI

    I ams truggling with conversion of source part to comply with 64bit C++ compiler, unfortunatelly the part is written in assembler language. I get these errors during compiling:

    error:...
  10. fatal error C1902: Program database manager mismatch; please check your installation

    I get these errors when trying to compile a C+ project using command line compiler of VS2010. I have searched the web for posible solutions which lead me to this page:...
  11. Trouble linking target with debug information

    Hello,

    today I first time tried to compile 32 bit target with debug symbols and got strange error:


    LINK : fatal error LNK1101: incorrect MSPDB100.DLL version; recheck installation of this...
  12. Replies
    14
    Views
    2,418

    Re: Compilee only runs under debugger

    Yes Intel and MS libraries are mutually compatible.
  13. Replies
    14
    Views
    2,418

    Re: Compilee only runs under debugger

    No, it's plain C


    No I only guess which library might concern.


    What dependencies do you mean? I have switched to 64bit versions of all libraries.


    That's not my project I leave the...
  14. Replies
    14
    Views
    2,418

    Re: Compilee only runs under debugger

    Hmm I don't think so, but it atleast prints the startup banner (console), the crash happens exactly when starting conversion.
  15. Replies
    14
    Views
    2,418

    Re: Compilee only runs under debugger

    Yes, runs fine.


    I don't think so, it's an open source platform independent audio encoder.

    Moreover I was doing an debug build earlier turning off all optimizations and it ran well outside...
  16. Replies
    14
    Views
    2,418

    Re: Compilee only runs under debugger

    I have tried to make both release and debug build. In both cases the image crashes outside debugger, in bothh cases it runs fine under it. The only difference is rls build invokes message about crash...
  17. Replies
    14
    Views
    2,418

    Re: Compilee only runs under debugger

    I don't have too much experience with WinDbg thus I don't know how stronly it protects application environment but letting run the same application compiled as x86 target it runs fine even...
  18. Replies
    14
    Views
    2,418

    Compilee only runs under debugger

    Hello there I need some clue, got a compiled x64 image but it does crash if run.
    Interesting that it finishes successfully if run under debugger (WinDbg).
    It indicates similar problem I had in past...
  19. Replies
    1
    Views
    1,033

    Keep more WindowsSDK version, yes or no?

    HI.

    During instalations of various MS's programming or related products I've got collected more versions of Windows SDK in

    C:\Program Files (x86)\Microsoft SDKs

    and

    C:\Program...
  20. Replies
    16
    Views
    3,570

    Re: Linking problem - unresolved external symbol

    Hmm I'm not sure about it.
    Found a link to MSDN page about defines
    http://msdn.microsoft.com/en-us/library/b0084kay%28v=vs.80%29.aspx
    saying _WIN32 Defined for applications for Win32 and Win64....
  21. Replies
    16
    Views
    3,570

    Re: Linking problem - unresolved external symbol

    _WIN64 and WIN64 are defined as well as WIN32, _WIN32
    Should I really undefine WIN32 & _WIN32 for that target ?
    I've seen somewhere both *WIN64 and *WIN32 must be defined for 64bit targets, not...
  22. Replies
    16
    Views
    3,570

    Re: Linking problem - unresolved external symbol

    I don't use gcc, but ICL
  23. Replies
    16
    Views
    3,570

    Re: Linking problem - unresolved external symbol

    Looks like a clone but basically, yes.
    Not to concern on the code self, I've gotten same error just awhile ago trying to build pcrecpp library (C++ frontend for libpcre).
    Just curious. This error...
  24. Replies
    16
    Views
    3,570

    Re: Linking problem - unresolved external symbol

    I have found that this error only happend if compiling the x64 version of the project using 64bit compiler. Link is successfull in x86 target of same library.
    Weird.
    Possibly compiler bug?
  25. Replies
    16
    Views
    3,570

    Re: Linking problem - unresolved external symbol

    As I wrote in post#3 deducing from the demangled symbol name it is own function (found it in own code), furthermore an unwind chunk of it, because unwind code is fully in arrangement of compiler I...
Results 1 to 25 of 48
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured