Find the answer to your Linux question:
Results 1 to 3 of 3
Hallo!I have been writing C/C++ programs in Windows XP using Visual Studio 6.0 installation.I would like to run the same programs in Opensuse 10.3 and I have tried to use ...
  1. #1
    Just Joined!
    Join Date
    Jun 2008
    Posts
    12

    Which Opensuse 10.3 IDE software is suitable for Visual Studio 6.0 syntax?

    Hallo!I have been writing C/C++ programs in Windows XP using Visual Studio 6.0 installation.I would like to run the same programs in Opensuse 10.3 and I have tried to use KDevelop IDE.Unfortunately,the C/C++ syntax for KDevelop is very different from Visual Studio 6.0 thus not compatible.

    Is there a Opensuse 10.3 IDE that can run Visual Studio 6.0 program syntax.If so,please tell me its name and where I can download it.Thanks in advance

  2. #2
    Linux Engineer scrarfussi's Avatar
    Join Date
    Aug 2006
    Posts
    1,029
    Visual studio is a window's program you will have to use wine to run it

  3. #3
    Linux Guru techieMoe's Avatar
    Join Date
    Aug 2004
    Location
    Texas
    Posts
    9,496
    Quote Originally Posted by 1joeyirosh4 View Post
    Hallo!I have been writing C/C++ programs in Windows XP using Visual Studio 6.0 installation.I would like to run the same programs in Opensuse 10.3 and I have tried to use KDevelop IDE.Unfortunately,the C/C++ syntax for KDevelop is very different from Visual Studio 6.0 thus not compatible.

    Is there a Opensuse 10.3 IDE that can run Visual Studio 6.0 program syntax.If so,please tell me its name and where I can download it.Thanks in advance
    The problem here is two-fold. Microsoft Visual Studio does not use standard ANSI C++, so there are quite a few functions you can use in VC++ that simply do not work on any system other than Microsoft Windows.

    Secondly, if your program makes use of any of the GUI aspects or COM objects in Windows, there is no Linux equivalent to that code and it will need to be replaced with calls to a native Linux graphics library such as OpenGL, Qt, or GTK+.

    So to answer your question, no, there is no Linux IDE that will allow you to use Visual Studio's special non-standard C++ functions. If your code in Windows is ANSI standard-compliant, it will port over just fine however.

    The easiest way to determine this is to download an ANSI-standard compiler in Windows (such as Bloodshed Dev-C++) and see if you can get your program to run.
    Registered Linux user #270181
    TechieMoe's Tech Rants

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...