Tagged Questions
The multiplatform tag has no wiki summary.
11
votes
5answers
7k views
Initializing a union with a non-trivial constructor
I have a structure which I create a custom constructor to initialize the members to 0's. I've seen in older compilers that when in release mode, without doing a memset to 0, the values are not ...
10
votes
2answers
326 views
Writing native-multiplatform GUI in C#
I'm writing a multi-platform application in C#. Currently, all is command line. I'm using Mono for running it in Linux, Mac and others.
Now, I'm going to develop a GUI tool over the core. I need the ...
8
votes
9answers
852 views
How do you write for *all* phones/mobile devices simultaneously?
We create non-game programs that run on mobile devices; iPhones, Windows Mobile, Android, Palm WebOS and the like. Our main program is written in C# for Windows Mobile and we've been asked to port it ...
5
votes
5answers
2k views
What version of the .NET framework is installed on Windows XP, Vista, and 7?
I have an application that uses the .NET framework 3.5. I am building this application for a college to help students to study. Most students usually have Windows XP SP2, Windows Vista, or Windows 7. ...
5
votes
8answers
279 views
Is there any disadvantages to a language being platform independent?
I'm working on a paper about multi-platform programming and I'd like to include sections on advantages/disadvantages. From my understanding; having any application be multi-platform is a huge selling ...
5
votes
8answers
584 views
C++ API for multiplatform development
I want to learn C++ to work on various platform (primarily, Linux and Windows). I have come across few solutions like the Boost C++ library, Qt toolkit, etc that can be used to write programs which ...
5
votes
9answers
420 views
High-quality libraries for C++ [closed]
We all know about Boost.
What other free C++ libraries are worth using? Why? Are they easily usable with common compilers?
5
votes
28answers
1k views
Is .NET a write once, run anywhere (WORA) platform like Java claims to be?
I remember Sun's slogan so vividly... "Write Once, Run Anywhere". The idea being that since programs are compiled into standard byte codes, any device with a Java Virtual Machine could run it. Over ...
4
votes
3answers
444 views
Does Android really exist on other platforms than ARM?
I want to port an aplication written in C++ to android. Converting the application from C++ to Java will take a lot of work that I would prefer to use on making the application better for that ...
4
votes
1answer
328 views
Compiling multi-platform Qt application for Symbian
I'm developing an Qt for Symbian application. I have to use certain platform specific APIs that are only available on certain S60 version. For example:
-S60 3rd edition FP1 libs: S60_common_lib, ...
4
votes
6answers
1k views
getting elapsed time since process start
I need a way to get the elapsed time (wall-clock time) since a program started, in a way that is resilient to users meddling with the system clock.
On windows, the non standard clock() implementation ...
3
votes
4answers
200 views
PowerBuilder Alternative
I'm looking for a multiplatform (or web-based) alternative to Powerbuilder.
I need an alternative to datawindows and the facility to create fast UI components.
3
votes
4answers
124 views
How can I copy files in C without platform dependency?
It looks like this question is pretty simple but I can't find the clear solution for copying files in C without platform dependency.
I used a system() call in my open source project for creating a ...
3
votes
7answers
172 views
Bash/sh - difference between && and ;?
I normally use ; to combine more than one command in a line, but some people prefer &&. Is there any difference? For example, cd ~; cd - and cd ~ && cd - seems to make the same thing. ...
3
votes
2answers
190 views
C# on OS X and Linux?
I have an application coded from Visual C# Express 2008. I want to port that application to a Mac OS X *.app and a Linux application. How do I go about doing that? Are there any compilers available on ...
3
votes
1answer
294 views
CMake multiple toolchains and target platforms
I am changing from plain make to CMake as a build system for a project. The project is supposed to run on different embedded Linux systems each with its own toolchain and also has quite a few ...
3
votes
3answers
408 views
KDE themes used to style Qt4 application
can kde themes be used to style multi platform (linux/windows) Qt4 applications ?
3
votes
2answers
211 views
Scan through directories c++
What would be the best way to recursively scan through a directory in c++? This is supposed to run on all operating systems so which api would work best?
3
votes
6answers
107 views
How are multi-platform applications developed?
I was wondering how multi platform appilcations are developed. Applicatiosn like Microsoft Office for MAC/Windows, FireFox for MAC/Windows/Linux etc.
If they have to code for different platforms ...
3
votes
2answers
129 views
Best/conventional method of dealing with PATH on multiple UNIX environments
The main question here is: is there a standard method of writing UNIX shell scripts that will run on multiple UNIX platforms.
For example, we have many hosts running different flavours of UNIX ...
3
votes
2answers
299 views
Best free Cross-Platform Library for higher level Matrix, Vector and esp. SparseMatrix operations?
Our Platforms:
Windows, Linux, Mac OSX.
Free:
LGPL compatible
Support high-level operations:
Eigensystems, SVD, QR, LU, inverse, pseudo inverse (aka Moore-Penrose inverse),...
Support many ...
3
votes
6answers
305 views
Generating C++ code at runtime, compilling and running it
is there a multiplatform c++ compiller that could be linked into any software ?
Lets say I want to generate c++ code at runtime, compile it and run it.
I'm looking for a compact solution (bunch of ...
3
votes
4answers
263 views
C commandline app : how to programatically move cursor
I am writing a commandline calculator in C, and it would be very useful if it had the ability to move the cursor each time you close (for example) a parenthesis highlighting the previous one, like in ...
3
votes
3answers
210 views
Difference between x86 and 64bit assembly in .NET
Could some tell me the difference between 32bit and 64bit .NET assemblies?
I understand when it is needed to be precise instead of selecting AnyCPU configuration.
Regards,
Mita
3
votes
6answers
664 views
cross-platform scripting for windows, Linux, MacOS X
I'm looking for cross-platform scripting (language) for windows, Linux, MacOS X.
I'm tired of .bat / bash .
I would like to do things like for example ,,lock workstation'' at automatic login (I had ...
3
votes
2answers
787 views
Conditional sections in AIX Makefiles
How do I make a makefile that works on AIX, Linux and SunOS and has the ability to provide different compiler options for each environment?
I have access to an environment variable which describes ...
3
votes
4answers
270 views
Mutliplatform application: (Automated) Testing for Mac OSX howto?
I have a firefox based application(ff extension) that is supposedly/allegedly working on Mac OSX too. I wish to make the application formally supported in Mac OSX. For that, I need to incorporate ...
2
votes
4answers
508 views
Audio Library C++ for a multicross platform use (iphone, android…)
i'm trying to make a C++ engine that will read a mp3 file, and make some image zoom/translation depending on the time of the reading sound file. I think I could use OpenGL ES to render what I want, ...
2
votes
3answers
118 views
How do i include different headers based on my OS?
I'm writing a portable C++ application. How do I include different headers based on the operating system its running on. Is there a way to do this in C++ or do i have to use the build system?
2
votes
8answers
815 views
How to write applications for different platforms? Linux, Mac, Windows and Mobile Platforms
We want to write a client for an online service which should be available on as many platforms as possible. This question is about what programming language and framework we should use to create this ...
2
votes
1answer
230 views
Using different references in Visual Studio 2010 for different build platforms?
How do I set up a VS2010 project so that it uses different references based on the chosen platform?
In practice, I would like to link a 32-bit library when I choose x86 as platform, but the 64-bit ...
2
votes
4answers
392 views
Porting blackberry application code in to Android platform
I have an Blackberry library written using JAVA as well Blackberry(RIM) specific API's. I would like to port the same library in to Android platform without making any code changes and make it run.
...
2
votes
7answers
493 views
Which continuous integration software do you use?
Google says there are:
Jenkins ( first impression: not lightweight )
Cruise control ( first impression: not lightweight )
Bitten ( seems to be dead, last ticket >8 months old)
BuildBot
But ...
2
votes
2answers
263 views
What is the best way to find wide string headaches such as L“%s”?
Here is an example of one of the headaches I mean:
We have a multiplatform project that uses mostly Unicode strings for rendering text to the screen. On windows in VC++ the line:
...
2
votes
3answers
612 views
C++ OpenGL Window and Context creation framework / library
I'm searching for an multi platform OpenGL framework that abstracts the creation of windows and gl contexts in C++.
I'd like to have an OO representation of Window, Context & co where i can ...
2
votes
5answers
989 views
Multi platform mobile application
I am willing to develop a mobile application. I wish to have something working for android, windows mobile, symbian and blackberry.
Which is the best way to do that?
I had read here:
You could ...
2
votes
5answers
589 views
Multiplatform Installer
I am looking for a recommendation on an installer program. The installer needs to support mulitple OS's - Solaris, Linux and Windows. I have three build machines each running one of the OS's. ...
2
votes
5answers
236 views
Choice of language for portable library
I want to write a library which will be dynamically linked from other programs running on modern operating systems like Windows, Linux and OS/X (i.e. it will be deployed as a .dll or .so module).
...
1
vote
1answer
86 views
Is it safe to use only Data and System scoped units to build mutiplatform
Since XE2 the Delphi units are scoped.
Unit Scope Names
Unit Names
Is is right to say that if I use only System and Data scoped units my code will be multiplatform and compiled for both Mac and ...
1
vote
1answer
91 views
How is it possible to make complex games cross platform?
I've been OS X user for about 11 months now, before that I used both Linux and Windows and I know how painful it is to do something with GUI that works well on all platforms (no Java).
What I don't ...
1
vote
2answers
92 views
How can I change the position of the mouse cursor in OpenGL/SFML?
I'm writing a simple FPS game and I'm going to have the mouse control the camera.
I'm using SFML library for C++.
How can i set mouse position to the center of the window.
Can you help me to find ...
1
vote
2answers
77 views
What's the difference between GTK+ and GTK# and which one is “more multiplatform”?
What's the difference between GTK+ and GTK# and which one is "more multiplatform" ?
Which one is best supported - with the least effort by a mac osx final user ?
Important for me to get out of ...
1
vote
1answer
102 views
Error!: Duplicate definition for 'javax.bluetooth.BluetoothConnectionException'
I have seen a similar problem here for example , but i am not trying to acces to Java SE features..
I have a .jar file with the code of a bluetooth functionality.. I try to make a .jar package that ...
1
vote
2answers
302 views
Web API design tips
I am currently developing a very simple web service and thought I could write an API for that so when I decide to expand it on new platforms I would only have to code the parser application. That ...
1
vote
1answer
122 views
How should I get Maven to deploy artifacts for all supported architectures at the same time?
I have a question that's probably pretty similar to this. I need to solve what I have to imagine to be a pretty common problem -- how to configure Maven to produce multiple variations on the same ...
1
vote
1answer
147 views
Deploy SWT applications for multiple platforms
We plan to add all swt.jar files to the Class-Path entry of the main application's MANIFEST file and only ship the platform-specific swt.jar in the platform-specific bundle. This most likely will ...
1
vote
1answer
313 views
Maximum Likelihood Estimation of a Poisson Distribution?
I have a table with observations (x, y) and need to estimate the mean of the Poisson distribution that more closely resembles them. It seems R and Octave can both do this on Linux, but I was wondering ...
1
vote
2answers
139 views
Multiplatform MSBuild project file
I'm currently working on a project which source code should be as portable as possible; that is, the project (in C#, but it is not very relevant) represent an application that should be executed on ...
1
vote
3answers
110 views
Unified assembly language
I wonder if there exists some kind of universal and easy-to-code opcode (or assembly) language which provides basic set of instructions available in most of today's CPUs (not some fancy CISC, ...
1
vote
2answers
59 views
How does the same source code generate binaries for different platforms?
Many multi-platform applications seem to have common source code. How do builds generate platform specific binaries?
Is it possible to build say, a windows binary on linux or mac?