QT program on Ubuntu [closed] - c++

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I made a qt program on Windows XP and it runs great. Now when I try to run that program on Ubuntu 10.10 , it gives me error "Not Supported". I have included all the required QT libraries and .dll files required to make the program portable are present in the folder of the program but its of no use.. I am using QT 4.7.
Thanks

You will have to recompile it with QT Creator under linux. Take care of 32 and 64 bit if it should be portable. QT is generally cross plattform but your windows executables are not.

Related

how do the eclipse cpp find the mingw install path? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
how do the eclipse cpp find the mingw install path?
I can't configure the mingw path into envrionment path, but how can the eclipse cpp ide find the mingw?
Edit:
Try this:
Windows -> preferences-> C/C++ -> Build -> Environment
but what should I add key-value into Environment
Hm, last time I used it, it was expecting MinGW in C:\MinGW by default.

Is there any way to compile C++ code written for Linux under Windows? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Is there any way to compile C++ code written for Linux under Windows?
Yes, try Cygwin and GCC, the Gnu Compiler Collection.
http://www.cygwin.com
http://gcc.gnu.org
You can use CygWin, which provides a POSIX compatibility layer and a GNU Linux-compatible toolchain.
As others have pointed out you can use Cygwin which includes the gcc and g++ C and C++ compilers. You should also be aware that you can use Eclipse as your IDE with Cygwin. Just be sure to install the Eclipse CDT plugins and make sure that the Cygwin binary directories are in your PATH environment variable before you configure CDT. If you already use Eclipse on Linux for your C++ development this should be a fairly painless transition.

Linux IDE choice for existing generic open source project [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am having problems with wpa_supplicant not being able to authenticate to my AP on my current USB WIFI card, so I've decided to try to debug and see what's going wrong, and maybe I can make it work. In this process I would like to be able to debug the app.
I'm not that proficient in linux IDEs. Can you recommend me an IDE that has a way to import an open source project and magically make it appear in the IDE so I can build and execute it?
You can try QtCreator IDE. The efforts of getting a "make"-based project into QtCreator are acceptable. If the project uses CMake as a build system, support is even better.
For generic projects:
http://doc.qt.nokia.com/qtcreator-2.5/creator-project-generic.html
The IDE has everything you need, including debugger (gdb) and profiling (valgrind) support.

Is it possible to compile C++ code to .exe on a Mac? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I bought a pre-owned Macbook a little while ago and I've been coding inside Sublime Text 2 and compiling in Terminal with g++*. I wrote a stupid text adventure that I'd like to send to a friend and if possible, I'd like to know if there are any methods available on Mac of compiling to exe similar to the way I've been compiling my code (i.e. solely with terminal).
I understand that the easy solution would be to just compile the .cpp file on a Windows computer but my computer is all the way over at the other side of the room.
Thanks.
*Doing this due to being on Snow Leopard and being too tight to buy OSX Lion or an Apple developer license to access Xcode. If anyone has encountered the same problem then I found this solution on here ( https://github.com/kennethreitz/osx-gcc-installer and http://cims.clayton.edu/csci1301/how_to/compiling_c_on_a_mac.htm). Allows you circumvent the bullshit of Apple.
Yes, it is possible and it's known as cross-compilation. Besides building your own toolchain for doing this, you can use MinGW: Cross compiling with MinGW

A rather big C++ open source project, easy to reach and easy to build with MinGW? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I am looking for an open source project whom:
- is easy to test with cppunit, then not a GUI program, otherwise with a CLI (command line interface),
- is written in C++,
- is rather big,
- easy to reach,
- easy to build with MinGW (on Windows platform),
Thanks
Here is a list of larger C++ open-source projects which I know of and which support MinGW:
Qt - Cross-platform GUI (and non-GUI) toolkit, has historically excellent support for MinGW
ITK - An image processing library
VTK - A visualization library
CTK - Provides common libraries and tools for the medical imaging community