Top "Portability" questions

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

Portable Compare And Swap (atomic operations) C/C++ library?

Is there any small library, that wrapps various processors' CAS-like operations into macros or functions, that are portable across multiple …

c++ c multithreading portability lock-free
A step-up from TiddlyWiki that is still 100% portable?

TiddlyWiki is a great idea, brilliantly implemented. I'm using it as a portable personal "knowledge manager," and these are the …

database client-side portability knowledge-management tiddlywiki
Does MS-SQL support in-memory tables?

Recently, I started changing some of our applications to support MS SQL Server as an alternative back end. One of …

mysql sql-server rdbms portability
Free portable database

Hi I am developing desktop portable free application and I`m looking for portable database: free without install up to 20…

database portability portable-applications
Is there portable Python 2.7 Windows distribution without any libraries included?

Each Python distribution I found contains a lot of libs I don't need (numpy, scipy, PyQt etc.) I am looking …

python python-2.7 portability
itoa function problem

I'm working on Eclipse inside Ubuntu environment on my C++ project. I use the itoa function (which works perfectly on …

c++ portability itoa
Portable PostgreSQL for development off a usb drive

In order to take some development work home I have to be able to run a PostgreSQL database. I don't …

postgresql portability usb-drive portable-database
portable way to deal with 64/32 bit time_t

I have some code which is built both on Windows and Linux. Linux at this point is always 32bit but …

c portability 32bit-64bit
msys path conversion (or cygpath for msys?)

I need to pass /DEF:c:\filepath\myLib.def" command line option from a bash script to MS compiler/linker. …

path portability mingw32 msys cygpath
What is the most portable/cross-platform way to represent a newline in go/golang?

Currently, to represent a newline in go programs, I use \n. For example: package main import "fmt" func main() { fmt.…

cross-platform go newline portability