Top "Portability" questions

Portable code can be run with little to no modification in multiple environments.

Cross-platform primitive data types in C++

Unlike Java or C#, primitive data types in C++ can vary in size depending on the platform. For example, int …

c++ cross-platform portability primitive
Developing lightweight (no runtime) Windows based GUI applications using free tools

Does anyone know of free tools (languages, environments) that would support development of GUI applications on the Windows platform? I …

windows user-interface desktop-application portability
How are PE Base Relocations build up?

I'm currently having trouble understanding how PE Base Relocations are build up. I understand there can be more then one …

executable portability relocation
When is the use of std::ref necessary?

Consider: std::tuple<int , const A&> func (const A& a) { return std::make_tuple( 0 , std::ref(…

c++ c++11 portability correctness
Android & iOS: How to develop for both?

I want to develop an application for both android and iOS devices. Is there a way to develop the application …

android ios portability
Is there a portable Perl?

Is there a portable Perl along the lines of portable Python? Something I could use (while learning the stuff) from …

perl portability portable-applications
SCons to make a shared library (.so) with a static library (.a)

I'm trying to get SCons to make a shared library. One of the items going into the .so is a .…

static static-libraries portability static-linking scons
ResourceMap not found error when referencing a resource file within a portable class library

The problem I am facing has as follows: I have developed a portable class library to encapsulate a service connection. …

c# resources portability windows-runtime microsoft-metro
__LINE__ equivalent in Java?

I'm searching a way to include __LINE__ as a compile-time constant in outputted messages. Various solutions seem to exist, but …

java logging portability
Portable way to get file size in C/C++

I need to determin the byte size of a file. The coding language is C++ and the code should work …

c++ c portability filesize platform-independent