Developing for Windows on Linux
- « first
- ‹ previous
- 1
- 2
- 3
Joey Bernard has a background in both physics and computer science. This serves him well in his day job as a computational research consultant at the University of New Brunswick. He also teaches computational physics and parallel programming.
Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.
Sponsored by AMD
Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6
Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.
Learn more about catching the bad guy in this free white paper.
Sponsored by DLT Solutions
| Dynamic DNS—an Object Lesson in Problem Solving | May 21, 2013 |
| Using Salt Stack and Vagrant for Drupal Development | May 20, 2013 |
| Making Linux and Android Get Along (It's Not as Hard as It Sounds) | May 16, 2013 |
| Drupal Is a Framework: Why Everyone Needs to Understand This | May 15, 2013 |
| Home, My Backup Data Center | May 13, 2013 |
| Non-Linux FOSS: Seashore | May 10, 2013 |
- RSS Feeds
- Dynamic DNS—an Object Lesson in Problem Solving
- Making Linux and Android Get Along (It's Not as Hard as It Sounds)
- Using Salt Stack and Vagrant for Drupal Development
- New Products
- A Topic for Discussion - Open Source Feature-Richness?
- Validate an E-Mail Address with PHP, the Right Way
- Drupal Is a Framework: Why Everyone Needs to Understand This
- What's the tweeting protocol?
- Tech Tip: Really Simple HTTP Server with Python
- Kernel Problem
32 min 31 sec ago - BASH script to log IPs on public web server
4 hours 59 min ago - DynDNS
8 hours 35 min ago - Reply to comment | Linux Journal
9 hours 7 min ago - All the articles you talked
11 hours 31 min ago - All the articles you talked
11 hours 34 min ago - All the articles you talked
11 hours 35 min ago - myip
16 hours 30 sec ago - Keeping track of IP address
17 hours 51 min ago - Roll your own dynamic dns
23 hours 4 min ago
Enter to Win an Adafruit Pi Cobbler Breakout Kit for Raspberry Pi

It's Raspberry Pi month at Linux Journal. Each week in May, Adafruit will be giving away a Pi-related prize to a lucky, randomly drawn LJ reader. Winners will be announced weekly.
Fill out the fields below to enter to win this week's prize-- a Pi Cobbler Breakout Kit for Raspberry Pi.
Congratulations to our winners so far:
- 5-8-13, Pi Starter Pack: Jack Davis
- 5-15-13, Pi Model B 512MB RAM: Patrick Dunn
- 5-21-13, Prototyping Pi Plate Kit: Philip Kirby
- Next winner announced on 5-27-13!
Free Webinar: Hadoop
How to Build an Optimal Hadoop Cluster to Store and Maintain Unlimited Amounts of Data Using Microservers
Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.
Some of key questions to be discussed are:
- What is the “typical” Hadoop cluster and what should be installed on the different machine types?
- Why should you consider the typical workload patterns when making your hardware decisions?
- Are all microservers created equal for Hadoop deployments?
- How do I plan for expansion if I require more compute, memory, storage or networking?




Comments
More recent howto
The rather new MinGW-w64 project allows for creation of native 32- and 64-bit executables.
See compile Windows binaries under Linux for a quick howto.
Door number one, Door number two... Door number 36...
I've used MinGW and MSYS before <microsoft bashing> my store-bought copy of vista suddenly decided it wasn't a valid licensed copy (which, to be fair, was resolved quickly and with lukewarm courtesy by tech support, and my copy did decide it was licensed after all, and I did not give it a fair chance to screw up again), and I decided it was a good time to wash my hands of the OS forever and stopped putzing around with cygwin in order to do my job without going into debt </microsoft bashing>
That said, though, the number of programs to choose from on the MinGW website is dizzying. Which program, specifically, did you grab and compile on your machine? Did you grab one of the .exe files and install it through wine, or is there a source distribution that I can build using the cozy make, su, make install procedure without invoking wine?
Just trying to navigate my way through a maze of identical-looking binaries, and I'm hoping that asking someone who actually got something working can shed a little bit of light on things for me.
Re: Developing for Windows on Linux
(Replied to the wrong message earlier)
After reading this article, I immediately tried to apply it by compiling a couple of simple programs. My goal is to build Windows binaries and I want to include the Linux machines in the build process as well (using distcc). I built a cross compiler from the sources and everything seemed to build successfully. (The information for this came from this link: http://ranjitmathew.tripod.com/phartz/gcj/bldgcj.html
As a first test, I tried to compile a simple "Hello" file (hello.c) using the newly-created mingw32-gcc executable:
#include
int main(void) {
printf("Hello
");
return 0;
}
This worked and I was able to link hello.o on a Windows computer. Next, I tried to compile the C++ version (hello.cpp):
#include
using namespace std;
int main(void) {
cout
But this gave many errors. I knew it was that the include files were not being found, so I manually added them to the command line. I simply included all of the paths that the Linux g++ was using. (I discovered those paths by using the -v switch when compiling.) I even tried different variations with the include files that came with the mingw32 sources. I've been able to remove most of the errors, but a few still remain. The first one is this:
/usr/include/g++/i486-suse-linux/bits/c++locale.h:59: error: syntax error
which is complaining about this typedef:
typedef __locale_t __c_locale;
apparently, __locale_t is not defined anywhere (as far as I could tell.) Incidently, the same .h file under Windows looks like this:
typedef int* __c_locale;
I'm not an expert with Linux or g++, but I'm guessing there's some configuration issues as to why the new mingw32-g++ can't find the right header files. Even moving the mingw32-* binaries into /usr/bin doesn't help. Am I missing some header files or something else?
--Dig
Re: Developing for Windows on Linux
Well, I missed that the angle brackets ( C++ insertion operator) confused the HTML reader (even after preview...). This is the HTML-friendly C++ code:
#include [iostream]
using namespace std;
int main(void) {
cout [[ "Hello" [[ endl;
return 0;
}
Replace [ and ] with less-than and greater-than.
--Dig
Re: Developing for Windows on Linux
The first part of the section Win32 programming is simply dead wrong (well, almost). No proofreading?
Quote1: "All processes are considered threads by the operating system."
- No, processes are not considered threads. A process is a set of resources (private virtual address space, file handles, etc, etc). Each process has at least one thread though - the main thread of execution.
Quote2: "This makes the process context slightly lighter than the traditional heavyweight process model used in UNIX-like operating systems."
- The process context is not any lighter than UNIX - at least not because of the non-existing "everything-is-a-thread model".
Quote3: "With the correct permissions and the correct address, one program could twiddle another program's bits."
- No. Nope. Simply not possible without writing a kernel-mode driver. Unless one of the program exposed its data through named memory-mapped files (similar to mmap) with incorrect permissions set.
Articles like this only help to spread the many misconceptions on the NT family of operating systems. I seriously hope you haven't written any commercial applications for Windows ;-)
Whenever you have time, buy and read the latest edition of "Inside Windows NT". You won't regret it.
// Dev Anonymous
Re: Developing for Windows on Linux
I do stand corrected on these issues. It was a combination of a lame attempt at humour/Microsoft bashing, combined with my working with mythology rather than going to sources and checking what I assumed was "common knowledge". While I did not have the money or inclination to get the book anonymous suggested, I did check out the great information on the sysinternals site (http://www.sysinternals.com). I claim temporary stupidity, simply because I never had to deal with systems level programming in Windows. Please accept my apologies.
Re: Developing for Windows on Linux
After reading this article, I immediately tried to apply it by compiling a couple of simple programs. My goal is to build Windows binaries and I want to include the Linux machines in the build process as well (using distcc). I built a cross compiler from the sources and everything seemed to build successfully. (The information for this came from this link: http://ranjitmathew.tripod.com/phartz/gcj/bldgcj.htm)
As a first test, I tried to compile a simple "Hello" file (hello.c) using the newly-created mingw32-gcc executable:
#include
int main(void) {
printf("Hello
");
return 0;
}
This worked and I was able to link hello.o on a Windows computer. Next, I tried to compile the C++ version (hello.cpp):
#include
using namespace std;
int main(void) {
cout
But this gave many errors. I knew it was that the include files were not being found, so I manually added them to the command line. I simply included all of the paths that the Linux g++ was using. (I discovered those paths by using the -v switch when compiling.) I even tried different variations with the include files that came with the mingw32 sources. I've been able to remove most of the errors, but a few still remain. The first one is this:
/usr/include/g++/i486-suse-linux/bits/c++locale.h:59: error: syntax error
which is complaining about this typedef:
typedef __locale_t __c_locale;
apparently, __locale_t is not defined anywhere (as far as I could tell.) Incidently, the same .h file under Windows looks like this:
typedef int* __c_locale;
I'm not an expert with Linux or g++, but I'm guessing there's some configuration issues as to why the new mingw32-g++ can't find the right header files. Even moving the mingw32-* binaries into /usr/bin doesn't help. Am I missing some header files or something else?
-- Dig
Re: Developing for Windows on Linux (Ignore previous post)
Ignore the above, I replied to the wrong message. I've reposted it. D'oh!
--Dig