Tagged Questions
x64 is a generic term for 64 bit extensions to the x86 architecture
400
votes
12answers
114k views
Android SDK installation doesn't find JDK
I'm tying to install the Android SDK on my Windows 7 x64 System. jdk-6u23-windows-x64.exe is installed, but the Android SDK setup refuses to proceed, because it doesn't find the JDK installation.
Is ...
72
votes
6answers
25k views
Visual Studio “Any CPU” target
I have some confusion related to the .NET platform build options in Visual Studio 2008.
What is the "Any CPU" compilation target, and what sort of files does it generate? I examined the output ...
55
votes
4answers
16k views
How to determine if a .NET assembly was built for x86 or x64?
I've got an arbitrary list of .NET assemblies.
I need to programmatically check if each DLL was built for x86. (As opposed to x64 or Any CPU.) Is this possible?
52
votes
6answers
43k views
C# - How to get Program Files (x86) on Vista x64
I'm using:
FileInfo(
System.Environment.GetFolderPath(
System.Environment.SpecialFolder.ProgramFiles)
+ @"\MyInstalledApp"
In order to determine if a program is detected on a users ...
28
votes
19answers
4k views
Porting 32 bit C++ code to 64 bit - is it worth it? Why?
I am aware of some the obvious gains of the x64 architecture (higher addressable RAM addresses, etc)... but:
What if my program has no real need to run in native 64 bit mode. Should I port it ...
24
votes
14answers
32k views
Detect whether current Windows version is 32 bit or 64 bit
Believe it or not my installer is so old that it doesn't have an option to detect the 64 bit version of Windows.
Is there a Win DLL call or (even better) an environment variable that would give that ...
22
votes
7answers
13k views
How to find if native dll is compiled as x64 or x86?
I want to if native assembly is complied as x64 or x86 from a managed code application (c#).
I think it must somewhere in the PE header since the OS loader needs to know this info
but I couldn't find ...
19
votes
4answers
11k views
check if unmanaged dll is 32-bit or 64-bit?
How can I programmatically tell in C# if an unmanaged dll is x86 or x64?
17
votes
3answers
378 views
How to debug unaligned accesses on amd64 using Visual Studio?
I would like to debug and profile some 64-bit software performing unaligned accesses, like in the following example:
int foo[2] = { 1, 2 };
*((int *)((char *)foo + 2)) = 3;
The gcc way
I know of ...
17
votes
2answers
2k views
Why doesn't Edit and Continue work on the x64 CLR?
Microsoft have explained that they won't be supporting Edit and Continue under the x64 CLR in Visual Studio 2010:
When creating a new Visual C# Console Application in VS2010 for .NET 4.0, the ...
16
votes
5answers
5k views
Nunit.exe cannot work on Vista 64bits if x86 build
I am on Vista 64 bits and I have a project built with x86 configuration. All work fine. Now, we are at the time to create test. We have NUnit 2.4.8 but we have a lot of problem.
The test are loading ...
15
votes
8answers
34k views
How to run Tomcat 6 on WinXP 64 bit?
Installed Tomcat 6 on WinXP 64. It installed just fine. But when I try to launch it ( from Windows Services) I get the following error :
"Can not start an the Apache Tomcat Service on Local ...
14
votes
6answers
7k views
Use 32bit “Program Files” directory in msbuild
In 64 bit versions of windows, 32 bit software is installed in "c:\program files (x86)". This means you cannot use $(programfiles) to get the path to (32 bit) software. So I need a $(ProgramFiles32) ...
14
votes
1answer
2k views
How do I run PartCover in x64 windows
I am trying to run PartCover to test the coverage of some tests with Gallio on windows x64. However trying to run it gives the following error.
Retrieving the COM class factory for component with ...
13
votes
3answers
990 views
Building 64-bit C Python extensions on Windows
I am asking this question because I need to build a specific module (aspell_python, http://wm.ite.pl/proj/aspell-python/) to work with my 64-bit Python 2.6 which runs on a Windows 7 (64-bit of course) ...
13
votes
3answers
3k views
Access x86 COM from x64 .NET
I have an x64 server which, since my libraries are compiled to AnyCPU, run under x64. We are needing to access a COM component which is registered under x86. I don't know enough about COM and my ...
13
votes
7answers
781 views
Are there any considerations needed to be taken running your .net program on x64 vs x86?
I believe the architecture type (x86 vs x64) is abstracted away for you when making .Net programs, but are there any other considerations that can cause problems?
13
votes
3answers
7k views
Calling 32bit Code from 64bit Process
I have an application that we're trying to migrate to 64bit from 32bit. It's .NET, compiled using the x64 flags. However, we have a large number of DLLs written in FORTRAN 90 compiled for 32bit. ...
13
votes
2answers
5k views
Using Side-by-Side assemblies to load the x64 or x32 version of a DLL
We have two versions of a managed C++ assembly, one for x86 and one for x64. This assembly is called by a .net application complied for AnyCPU. We are deploying our code via a file copy install, and ...
12
votes
2answers
235 views
Optimizing x64 assembler MUL loop
I'm writing math code which needs to multiply large numbers fast. It breaks down to multiplications of an array of integers with a single integer. In C++ this looks like this (on unsigned's):
void ...
12
votes
6answers
15k views
Windows 64-bit registry v.s. 32-bit registry
I heard on Windows x64 architecture, in order to support to run both x86 and x64 application, there is two separate/different sets of Windows registry -- one for x86 application to access and the ...
12
votes
2answers
6k views
System.BadImageFormatException “invalid format” when trying to install service with installutil.exe
I am trying to install a Windows service using InstallUtil.exe and am getting the error message
System.BadImageFormatException - invalid format
What gives?
11
votes
1answer
305 views
Why is an AnyCPU app running as x86 on a x64 machine
I have a AnyCPU app installed to Program Files (x86). On one Win7 x64 machine it runs as x64 as expected while on another Win7 x64 machine, it runs as x86!!
How can this be? I expected it to run as ...
11
votes
1answer
603 views
Configuring Visual Studio to create 32-bit and 64-bit configurations
I'm currently trying to configure Visual Studio to automatically set up the appropriate configurations for 32-bit and 64-bit compilation.
Ideally, I'd like to be able to have Visual Studio ...
11
votes
2answers
2k views
Can an x64 application use x86 assemblies - and vice versa?
My application is built as a x64 application. After moving to VS2010 I got some problems which seems to be related to some x64/x86 mismatch in referenced dlls. Now I'm moving to target .NET4, and I ...
11
votes
6answers
2k views
Delphi 7 forms, anchors not working in Vista
The software is built on Delphi 7.
On my XP machine, the form resizes as I expect. However, on two Vista machines, I have components with anchors set to [akLeft, akTop, akRight, akBottom], but when I ...
11
votes
3answers
4k views
Environment variable to force .NET applications to run as 32bit
I've been told there is an environment variable you can set to force .NET applications to run as 32bit applications on x64 versions of Windows. Do you know what it is, or know of a reference on it? ...
10
votes
3answers
648 views
Visual Studio loading the right (x86 or x64) dll!
I'm working on visual studio in an x86. I would like to build my application for both x32 and x64. But i need to use the sqlite .net connector wich has a dll for x86 apps and another dll for x64 apps. ...
10
votes
2answers
2k views
MSBUILD / csc: Cleanest way of handling x64 mscorlib warning 1607
I'm trying to use VS08SP1's default project system to invoke a C# compile in explicit x64 mode (as distinct from AnyCpu). When I explicitly mark a module as x64, I get a:
warning CS1607: Assembly ...
10
votes
7answers
12k views
Get HDD (and NOT Volume) Serial Number on Vista Ultimate 64 bit
I was once looking for getting the HDD serial number without using WMI, and I found it. The code I found and posted on StackOverFlow.com works very well on 32 bit Windows, both XP and Vista. The ...
10
votes
1answer
7k views
How do you build the x64 Boost libraries on Windows?
I've built the x86 Boost libraries many times, but I can't seem to build x64 libraries. I start the "Visual Studio 2005 x64 Cross Tools Command Prompt" and run my usual build:
bjam --toolset=msvc ...
9
votes
5answers
261 views
Why are complicated memcpy/memset superior?
When debugging, I frequently stepped into the handwritten assembly implementation of memcpy and memset. These are usually implemented using streaming instructions if available, loop unrolled, ...
9
votes
2answers
342 views
.NET garbage collector and x64 virtual memory
Running a .NET application on Windows Server 2008 x64 with 16GB of RAM. This application needs to fetch and analyze a very large amount of data (about 64GB), and keep it all in memory at one time.
...
9
votes
3answers
1k views
I've built a Windows service as “Any CPU”. Why does it run in 32-bit mode on my 64 bit machine?
I've built a Windows service as "Any CPU". However, when I run it on my 64 bit machine it runs in 32 bit. How can I fix it? I'm using .NET and C#, and my operating system is Windows 2008 R2.
If I ...
9
votes
6answers
429 views
Should I provide an x64 build of my application?
Perhaps I'm missing a major point of the x64 platform here, but my perception was that x64 applications were only better performing than x86 versions (on an x64 OS and hardware, obviously) when large ...
9
votes
4answers
5k views
Visual Studio reference x64 GAC
How can one get Visual Studio 2005/2008 to reference assemblies in the 64-bit GAC instead of the 32-bit GAC? We are settin the target platfom to x64 and the compiler is throwing the error of
Error ...
9
votes
7answers
2k views
How can I detect if I'm compiling for a 64bits architecture in C++
In a c++ function I need the compiler to choose a different block if it is compiling for a 64 bit architecture.
I know a way to do it for MSVC++ and g++, so i'll post it as an answer. However I would ...
8
votes
1answer
148 views
x64 Assembly: Is reserving stack space necessary for functions less than four arguments?
Just started learning x64 assembly and I have a question about functions, arguments, and the stack. As far as I understand it, the first four arguments in a function get passed to rcx, rdx, r8, and ...
8
votes
1answer
147 views
Operator precedence for “<<” and “++” in VS2008 with optimization
I'm stuck with a weird VS2008 C++ issue, that looks like operator precedence is not respected.
My question is what is the output of this:
int i = 0;
std::cout << ((i != 0) ? "Not zero " : ...
8
votes
2answers
4k views
Unable to launch onscreen keyboard (osk.exe) from a 32-bit process on Win7 x64
90% of the time I am unable to launch osk.exe from a 32bit process on Win7 x64. Originally the code was just using:
Process.Launch("osk.exe");
Which won't work on x64 because of the directory ...
8
votes
3answers
3k views
64 to 32 bit Interop - how?
I need to integrate some legacy 32-bit code - for which I don't have the source code, into a project in such a way that it can be called from a 64-bit .NET assembly. The original code is implemented ...
8
votes
9answers
4k views
How to Log Stack Frames with Windows x64
I am using Stackdumps with Win32, to write all return adresses into my logfile. I match these with a mapfile later on (see my article [Post Mortem Debugging][1]).
EDIT:: Problem solved - see my own ...
8
votes
4answers
1k views
TypeLoadException on x64 but is fine on x86 with structlayouts
Youll need a 64bit machine if you want to see the actuall exception. I've created some dummy classes that repro's the problem.
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public class ...
8
votes
8answers
777 views
What is the big deal with BUILDING 64-bit versions of binaries?
There are a ton of drivers & famous applications that are not available in 64-bit. Adobe for instance does not provider a 64-bit Flash player plugin for Internet Explorer. And because of that, ...
7
votes
2answers
442 views
x64 vs x86 Performance Considerations .Net
I am trying to understand what performance differences exist when running a native C# / .Net 4.0 app in x64 vs x86. I understand the memory considerations (x64 addressing all memory, x86 limited to ...
7
votes
1answer
220 views
Variable is not incrementing in C# Release x64
Could someone explain to me why this piece of code is doing well when I execute it on a x86 platform and why it fail on x64 ?
Results :
x86 Debug : 12345678910
x64 Debug : 12345678910
x86 Release : ...
7
votes
5answers
518 views
why .net assemblies differ for different architectures?
I can build my C# project for x86 and for x64. Why? I thought it generates a special code which is not platform specific at all.
7
votes
2answers
443 views
Visual Studio: Different DLLs for configurations
I'd like to make a x86 and x64 version of my application because some of the libraries I'm using have differences for x86 and x64 (e.g. SQLite).
I made a new configuration for release builds that has ...
7
votes
3answers
2k views
sgen.exe x64 .net c# fails with “assembly with an incorrect format”
I have ws2008 x64 with vs2008.
When I set my vs to x64 (because I have 64bit dlls) and run compilation sgen says that
An attempt was made to load an assembly with an incorrect format
VS takse ...
7
votes
5answers
423 views
Any tools available for packing 32bit/64bit executables together?
I really like the way the SysInternals utilities (e.g. Process Explorer) handle 64bit compatibility. It looks like the 32bit executable has the 64bit version embedded in it, and extracts it if ...