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

Search:

Type: Posts; User: Pancevo1956

Search: Search took 0.01 seconds.

  1. creating static lib - jpeglib for msvc 2017 - configuration manager problem

    I am trying to make static library of jpeglib Linux based software on Msvc 2017 - windows 10. I have followed some instructions I googled on the net on how to generate static library for jpeglib....
  2. Replies
    2
    Views
    2,170

    Re: gcc -fexec-charset does not work?

    I could not save as ansi, because I have non ISO characters... So I have two options CP1250 or utf-8 from notepad++. I save it in utf-8 without bom in this case.
  3. Replies
    2
    Views
    2,170

    gcc -fexec-charset does not work?

    I have tried to compile file:
    ts3:~/testlibs/case_test$ g++ -g -std=c++11 -fexec-charset="cp1250" testaca.cpp -o mytest
    testaca.cpp: In function ‘int main()’:

    testaca.cpp:96:19: error:...
  4. Replies
    1
    Views
    3,709

    codecvt_byname not working on Linux gcc

    gcc 7.1 with C11 linux



    fin.imbue(std::locale(fin.getloc(),
    new std::codecvt_byname<wchar_t, char, std::mbstate_t>("zh_CN.gb18030")));


    produces:
    terminate called after...
  5. Re: non ISO utf8 characters are not displayed properly from static library on Linux

    Yes, you are right cross platform. However, I do check both files and both files are encoded as UTF-8....
    And I expect that both are utf-8 string as it is above. No need to encode with...
  6. non ISO utf8 characters are not displayed properly from static library on Linux

    I have main.cpp utf8 (no BOM) file where let say function1 (string &strtocompare) is called.string strtocompare = "ČĆÅ*Đ". Function1 is defined in stringFunction.cpp utf8 file from static library...
  7. Replies
    2
    Views
    4,028

    Re: Problem with utf-8 on Linux

    Well, the problem is that I have to use string. It works fine with MSBC++ not problem at all. However, that code goes to tfs sorce control, and than back, and then to Linux by fillezilla. That...
  8. Replies
    2
    Views
    4,028

    Problem with utf-8 on Linux

    I am looking for help on how to transfer cpp file with international characters from MSVC++ to Ubuntu.. such as:

    const string sTest = "Å*ČĆÅ*Đ".
    To save that on MS Visual studio as UTF-8 or...
  9. Replies
    1
    Views
    2,947

    porting from VC++ wstring to Linux gcc

    I am porting software with wstring inside it to Linux gcc . GCC supports -fshort-wchar that switches wchar_t from 4, to two bytes. I do not know whether it is working or not. I am having a problem...
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured