If I compile a C++ program on my machine, and run it on another one (with older software) I get: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9\' not found.
I want to develop an application for both android and iOS devices. Is there a way to develop the application onc开发者_如何学Pythone and deploy on both? Or is it a must to develop for each platform se
It\'s there a way to compile a c/c++ source file to output a .exe file that can be run on other processors on different computers ?
Can anyone please let me know the coding guidelines along with code samples of Unix shell scripting by using which the code can run on most of the current shells like ksh, bash, csh etc. Most of the t
I occasionally use 64 bit arithmetic in an open source C++ library of mine. I discovered that long long serves my purpose quite nicely. Even some 10 year old solaris box could compile it. And it works
As title says, I\'ve been trying to find a portable library with C/++ bindings for doing basic COM-port communication for an application I\'m servicing. Windows/Linux support is a minimum.
Due to some messed up legacy code, I have $path = [OS specific base DIR name][hardcoded Linux file path]
In Java, I\'m generating and serializing a symmetric key for encryption purposes: KeyGenerator keyGen = KeyGenerator.getInstance(algorithm);
I work on an open source portable C++ image compression library. Currently, my API works by exchanging pointers to byte arrays with image data. I would like to support some kind of streaming mode for
All, I have been practicing coding problems online. Currently I am working on a problem statement Problems where we need to convert Big Endian <-> little endian. But I开发者_高级运维 am not able t