Tagged Questions
64bit is a computer architecture with addresses and other data units 64 bits wide
69
votes
17answers
35k views
How to detect Windows 64 bit platform with .net?
In a .net 2.0 C# application I use the following code to detect the operating system platform:
string os_platform = System.Environment.OSVersion.Platform.ToString();
This returns "Win32NT". The ...
58
votes
6answers
43k views
Targeting both 32bit and 64bit with Visual Studio in same solution/project
Greetings.
I have a little dilemma on how to set up my visual studio builds for multi-targeting.
Background: c# .NET v2.0 with p/invoking into 3rd party 32 bit DLL's, SQL compact v3.5 SP1, with a ...
42
votes
4answers
40k views
How can I tell if I'm running in 64-bit JVM or 32-bit JVM?
How can I tell if the JVM my application runs in is 32 bit or 64-bit? Specifically, what function or preference do I access to detect this within the program?
42
votes
13answers
15k views
Memcached on Windows (x64)
Does anyone know IF, WHEN or HOW I can get Memcached running on a Windows 64bit environment?
I'm setting up a new hosting solution and would much prefer to run a 64bit OS, and since it's an ASP.Net ...
35
votes
4answers
32k views
“An attempt was made to load a program with an incorrect format” even when the platforms are the same
I'm calling functions from a 32-bit unmanaged DLL on a 64-bit system. What I get is:
BadImageFormatException: An attempt was made to load a program with an incorrect format. (Exception from ...
34
votes
12answers
58k views
Can I run a 64-bit VMWare image on a 32-bit machine?
Can I run a 64-bit VMWare image on a 32-bit machine?
I've Googled this but there doesn't seem to be a conclusive answer.
I know that it would have to be completely emulated and would run like a dog ...
30
votes
6answers
14k views
How to compile a 64-bit application using Visual C++ 2010 Express?
Is there a simple way to compile a 64 bit app with the 32-bit edition of Visual C++ 2010 Express? What configurations, if any, are necessary?
30
votes
7answers
36k views
Java 32-bit vs 64-bit compatibility
Will Java code built and compiled against a 32-bit JDK into 32-bit byte code work in a 64-bit JVM? Or does a 64-bit JVM require 64-bit byte code?
To give a little more detail, I have code that was ...
27
votes
4answers
18k views
How can I test a windows dll to determine if it is 32bit or 64bit?
I'd like to write a test script or program that asserts that all dlls in a given directory are of a particular build type.
I would use this as a sanity check at the end of a build process on an sdk ...
24
votes
4answers
8k views
Force x86 CLR on 'Any CPU' .NET assembly
In .NET, the 'Platform Target: Any CPU' compiler option allows a .NET assembly to run as 64bit on a x64 machine, and 32bit on an x86 machine. It is also possible to force an assembly to run as x86 on ...
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
1answer
440 views
Delphi XE2: Debug a 64 bit dll through a 64 bit app
Has anyone had success in debugging a 64 bit dll by running/attaching to a 64 bit application? I have Delphi code for both the application and the dll. I can debug the application in 32 bit and 64 ...
22
votes
8answers
969 views
Why is creating a 64bit Delphi so hard?
The Internet is full of developers requesting a 64bit Delphi, and users of Delphi software requesting 64 versions.
delphi 32bit : 1.470.000 pages
delphi 64bit : 2.540.000 pages :-)
That's why ...
21
votes
11answers
2k views
0xDEADBEEF equivalent for 64-bit development?
For C++ development for 32-bit systems (be it Linux, Mac OS or
Windows, PowerPC or x86) I have initialised pointers that
would otherwise be undefined (e.g. they can not immediately
get a proper ...
21
votes
7answers
21k views
How do I detect which kind of JRE is installed — 32bit vs. 64bit
During installation with an NSIS installer, I need to check which JRE (32bit vs 64bit) is installed on a system. I already know that I can check a system property "sun.arch.data.model", but this is ...
20
votes
4answers
73k views
Java JRE 64-bit download for Windows?
I'm working on a web site project with a Java component and am currently testing for cross-browser compatibility. Most is fine but the Java part won't load on 64-bit browsers. Looks like I need a ...
19
votes
7answers
840 views
Delphi 64 bits?
Delphi 64 bits is on its way as everybody knows (every delphi programmer at least) . Apart from what codegear says about the benefits of a 64 bits Delphi app (and codegear does not say much about), ...
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?
18
votes
7answers
24k views
Can't display PDF from HTTPS in IE 8 (on 64-bit Vista)
I have a home-grown HTTPS server that serves up simple files (it's embedded within my app). It works great -- been using it forever.
Recently added SSL support -- Chrome, FireFox and IE all like it ...
18
votes
4answers
10k views
How do I enable Edit and Continue on a 64-bit application and VB2008 Express?
When I try to do that I get the following error:
Changes to 64-bit applications are not allowed.
@Wilka: That option wasn't available until I selected Tools > Options > Projects and Solutions ...
17
votes
2answers
2k views
How well does D support 64 bit?
I'd like to try out the D programming language. I have simple pet project I've been meaning to finish and I thought it would be good opportunity to learn D 2.0.
However, my primary OS is kubuntu ...
17
votes
7answers
4k views
What is a good 64bit hash function in Java for textual strings?
I'm looking for a hash function that:
Hashes textual strings well (e.g. few collisions)
Is written in Java, and widely used
Bonus: works on several fields (instead of me concatenating them and ...
17
votes
3answers
17k views
Can I load a 32 bit DLL into a 64 bit process on Windows?
I recently upgraded a c# windows service to run as a 64 bit .net process. Normally, this would be trivial, but the system makes use of a 32-bit DLL written in C++. It is not an option to convert this ...
16
votes
2answers
4k views
If I compile a VB6 app on win7, ADODB.Connection errors with “Class does not support Automation or does not support expected interface”
I compiled some VB6 code on my Win7 x64 machine and the result .exe will not run correctly on any other machine.
VB6 code is just a new template .exe file with one button, a reference to "Microsoft ...
16
votes
4answers
963 views
XmlSerializer startup HUGE performance loss on 64bit systems
I am experiencing a really HUGE performance loss while calling a simple XmlSerializer.Deserizlize() on a class with lots of fields.
NOTE: I'm writing the code without Visual Studio, at home, so it ...
16
votes
7answers
1k views
What are 16, 32 and 64-bit architectures?
What do 16-bit, 32-bit and 64-bit architectures mean in case of Microprocessors and/or Operating Systems?
In case of Microprocessors, does it mean maximum size of General Purpose Registers or size of ...
16
votes
6answers
1k views
What is the maximum value of an unsigned 64-bit integer in English? [closed]
What is the maximum value of an unsigned 64-bit integer in English?
16
votes
8answers
11k views
Internet Explorer 8 64bit and Selenium Not working
I am trying to get selenium tests to run. Yet every time I try to run a tests that should run IE I get a error on line 863 of htmlutils.js It says that I should disable my popup blocker. The thing is ...
16
votes
15answers
3k views
Processor, OS : 32bit, 64 bit
I am new to programming and come from a non-CS background (no formal degree). I mostly program winforms using C#.
I am confused about 32 bit and 64 bit.... I mean, have heard about 32 bit OS, 32 bit ...
16
votes
6answers
4k views
sizeof(int) on x64?
When I do sizeof(int) in my C#.NET project I get a return value of 4. I set the project type to x64, so why does it say 4 instead of 8? Is this because I'm running managed code?
16
votes
8answers
2k views
As a programmer, what do I need to worry about when moving to 64-bit windows?
Most of my recent programming has been on 32-bit Windows using C/C++/C#/VB6 . Lately, my customers are asking if my code will run on 64-bit Windows.
I'm wondering what legacy features I might be ...
16
votes
4answers
2k views
How do I tell if my application is running as a 32 or 64 bit application?
I'm trying to figure out how to tell if my application (compiled in VS2008 as Any CPU) is running as a 32 or 64 bit app.
16
votes
6answers
4k views
How come a 32 bit kernel can run a 64 bit binary?
On my OS X box, the kernel is a 32 bit binary and yet it can run a 64 bit binary.
How does this work?
cristi:~ diciu$ file ./a.out
./a.out: Mach-O 64-bit executable x86_64
cristi:~ diciu$ file ...
15
votes
7answers
8k views
Detect 64-bit or 32-bit Windows from User Agent or Javascript?
I want to offer the right version of a download. The versions I have are:
32-bit Windows
64-bit Windows
Linux
Detecting Linux using the User Agent field is easy; but is it possible to reliably ...
15
votes
4answers
18k views
How to compile a 32-bit binary on a 64-bit linux machine with gcc/cmake
Is it possible to compile a project in 32-bit with cmake and gcc on a 64-bit system? It probably is, but how do I do it?
When I tried it the "ignorant" way, without setting any parameters/flags/etc, ...
15
votes
8answers
2k views
What are the advantages of a 64-bit processor?
Obviously, a 64-bit processor has a 64-bit address space, so you have more than 4 GB of RAM at your disposal. Does compiling the same program as 64-bit and running on a 64-bit CPU have any other ...
15
votes
3answers
6k views
NUnit "could not load file or assemby 'MyTestProject'
I'm setting up a new 64 bit machine to run as a build server. When I try to load my NUnit test assembly into NUnit GUI I get the following error.
There is nothing obvious missing, all the ...
14
votes
1answer
249 views
How add Delphi XE2 64bit support to a simple Delphi XE2 32bit VCL component?
I need convert a VCL component from 32bit to 64bit (Delphi XE2). Now infact I can install it only if I select "32bit Platform", if I select "64bit Platform" I can compile it but not install (there is ...
14
votes
4answers
7k views
Can't edit and continue when using Visual Studio 2010 on a 64 bit machine, app targets x86
I'm having some problems with Edit and Continue when using Visual Studio 2010 on a Windows 7 64 bit machine. I've ensured the following
Edit and Continue is enabled under ...
14
votes
8answers
12k views
Python: how do I install SciPy on 64 bit Windows?
How do I install SciPy on my system?
Update 1: for the NumPy part (that SciPy depends on) there is actually an installer for 64 bit Windows: numpy-1.3.0.win-amd64-py2.6.msi (is direct download URL, ...
14
votes
4answers
5k views
“Changes to 64-bit applications are not allowed” when debugging in Visual Studio 2008
I'm using Visual Studio 2008, C#. I try to use edit-and-continue (edit the code while debugging), and get this exception:
"Changes to 64-bit applications are not allowed"
Why is that? Is there a ...
14
votes
6answers
19k views
What is the bit size of long on 64-bit Windows?
Not to long ago someone told me that long are not 64 bits on 64 bit machines and i should always use int. This did not make sense to me. I seen docs (such as the one on apples official site) say that ...
14
votes
13answers
9k views
Best Subversion clients for Windows Vista (64bit)
I've been using TortoiseSVN in a Windows environment for quite some time. It seems very feature-complete and nicely integrated into the Windows shell, and more importantly, it's fairly painless to ...
13
votes
2answers
532 views
Will Delphi be available as both EM64 and IA64?
I have seen many 64-bit applications come in two 64-bit versions. One is x86-64 and other is IA64. Will Delphi's 64-bit version also have this?
13
votes
3answers
988 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
12answers
722 views
Is there any real point compiling a Windows application as 64-bit?
I'd confidently say 99% of applications we write don't need to address more than 2Gb of memory. Of course, there's a lot of obvious benefit to the OS running 64-bit to address more RAM, but is there ...
13
votes
2answers
8k views
Forcing a .Net Windows service to run as 32-bit on a 64-bit machine
I've been given a windows service which references a COM component that only runs on 32-bit.
My machine is x64, so the service tries to start, fails to create the COM component, and dies.
I don't ...
13
votes
3answers
3k views
Reading 64bit Registry from a 32bit application
I have a c# unit test project that is compiled for AnyCPU. Our build server is a 64bit machine, and has a 64bit SQL Express instance installed.
The test project uses code similar to the following to ...
13
votes
9answers
11k views
64 bit ntohl() in C++?
The man pages for htonl() seem to suggest that you can only use it for up to 32 bit values. (In reality, ntohl() is defined for unsigned long, which on my platform is 32 bits. I suppose if the ...
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 ...