I have an application written in C on Solaris that I have to port to Windows XP. I would like to know that what are the libraries availabe to achieve this task. Also what is the best GUI development tool for the same and what are the steps to follow to achieve this all.
Porting application written in C from Solaris to Windows XP
338 Views Asked by user219141 At
2
There are 2 best solutions below
0
AudioBubble
On
What compiler did you use on Solaris? The suncc compiler or the GCC compiler? In the latter case, your first bet would be to compile under Cygwin and see what errors and library it finds missing and try to install them in your Cygwin installation. You can proceed incrementally this way.
If you compiled it with suncc, still you should try and compiler on Windows under Cygwin and see what libraries and incompatibilities it says missing.
After you have got it ported to Cygwin succesfully, you should then look to make it run on Windows bare, without Cygwin.
HTH, Amit
Related Questions in C
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in WINDOWS-XP
- How to format dir command in cmd for XP and Win 2000
- Node.js not working on Windows XP machine
- Unable to launch a wpf application on windows XP machine
- Is there a programmatic way of determining which process is playing sound on Windows XP?
- .Net Framework 4.0 on Windows XP
- InstallShield 5.5 - Where to find boxed licensed copy
- Python error with install_lib: 'build\lib' does not exist
- Barcode scanner with USB port display wrong charactar on Windows 7 and XP
- How to delete registry key on XP while having control over platform-specific view of the registry
- '_WIN32_WINNT' / 'WINVER' : macro redefinition
- How to install pySerial on Windows XP
- System.Windows.Media.MediaPlayer playing sound twice
- Windows XP ETW FileDeleted events
- Where are Windows XP default regional format values stored?
- Getting information about the logical processors in windows XP SP0 (like GetLogicalProcessorInformation )
Related Questions in SOLARIS
- How to get Mouse support for dtterm terminal in solaris
- Tail command - follow by name on Solaris
- in Makefiles, how to test for gcc's --with-ld option?
- Configuring git and apache on solaris box
- How to find linux equivalent of solaris specific header files?
- How to match and remove the content preceding it from a file in unix
- writing device drivers for OpenIndiana
- How to convert Solaris MDB addresses into file names and line numbers?
- wheel group in OpenSolaris
- I want to update atime on large binary files
- Socket Descriptor closed from another thread on certain condition when accept() call on the same socket is going on in Linux?
- gzip and pipe to output (performance consideration)
- Setting LD_LIBRARY_PATH breaks my apache module, can rpath fix it?
- redirecting echo with undefined variable
- Can't take input from a terminal
Related Questions in PORTING
- Converting old C code
- How to find linux equivalent of solaris specific header files?
- Linux sendto implementation possibly adding extra padding to UDP message
- cannot boot-up openwrt for beagle bone black(BB-black)
- Converting from c++ to c
- Linux header files for Win32 typedefs like BOOL, LONG, and WCHAR
- Qt: Alternative to BitBlt in Qt5 Windows
- Porting Solutions from Visual Studio 2013 to Visual Studio 2017
- Porting Project Euler #8 to Go
- Porting C code between different "platforms"
- Visionmedia EJS on Client side ( Cordova / PhoneGap )?
- C++ Windows to Linux - what do I need to know?
- GRecMutex reference count in glib >= 2.31
- Is there any middleware/library that will convert your binary or text data from 64-bit to 32-bit?
- Porting C# TripleDESCryptoServiceProvider encryption to PHP
Related Questions in MOTIF
- Integrating XCB and libX11 event loops - hanging on select/poll inside Xt
- Remove close button from BulletinBoard widget in Motif
- MOTIF compiling error / X11/intrinsic.h missing
- Installing OpenMotif from CD to minimal CentOS OS
- How to hid title bar of Motif Dialog/widget
- Java Swing - Disappearing text in custom combobox renderer in Motif L&F
- What happens if you ignore a X11 BadWindow error?
- Xlib: sequence lost in reply type 0x2
- Warning: Cannot find callback list in XtAddCallback
- Need to get the toplevel widget from an XtAppContext
- Is there a way to restrict mouse movement within a certain region in X11?
- How to compile this code implementing Xm on Ubuntu 64 bit using Netbeans?
- Porting application written in C from Solaris to Windows XP
- Porting X/Motif GUI application to Windows using wxWidgets
- Is it safe to pass int using XtPointer?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Easiest way is to compile it under cygwin, and have it run in the Cygwin X server. If you port it to a cross-platform GUI toolkit like QT, then you can compile it natively for each platform. (Or maybe with mingw or even still cygwin on windows, if it does much besides being a GUI and needs POSIX library functions and system calls.)