Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

platform vs target

barakobama
Beginner
387 Views

I made 64bit version on Window XP 64 with Xeon successfully.

Now, Iam tryingto make 32bit version to run it on other 32bit machine.

So, I changed the target to Win32 under Tools>Option>Fortran and target machine under C/C++ project> Linker>Advanced to MachineX86 while leaving x64 for the platform.

But it did not seem to generate 32bit version.

What am I doing wrong here?

-BO

0 Kudos
1 Reply
Steven_L_Intel1
Employee
387 Views
That's not the way to change targets. Tools > Options > Fortran sets paths and selects compilers for builds using the various platforms. This has no effect at all on projects. To change the build target, since you've already added an x64 configuration, use the "Solution Platforms" dropdown in the project. This is usually just to the right of the dropdown that selects Debug vs. Release. Change that to Win32. Now it will use the compiler and paths specified under Tools > Options > Fortran for Win32.

You should not change the machine type at all - that will be set automatically.
0 Kudos
Reply