Tagged Questions
Issues related to the use of a 64bit vs a 32bit architecture
44
votes
8answers
59k views
Retrieving the COM class factory for component with CLSID {XXXX} failed due to the following error: 80040154
I developed a Windows service using C#.NET to generate PDF report. To generate PDF file I am using a third party dll. The application is running in my Windows XP platform. When I deployed the service ...
41
votes
9answers
5k views
How should I prepare my 32-bit Delphi programs for an eventual 64-bit compiler?
Possible Duplicate:
How to also prepare for 64-bits when migrating to Delphi 2010 and Unicode
Since I believe that 64bit Delphi compiler will appear soon,
I am curious if anybody knows what ...
25
votes
6answers
22k views
How to determine whether a given Linux is 32 bit or 64 bit?
When I type uname -a, it gives the following output.
Linux mars 2.6.9-67.0.15.ELsmp #1 SMP Tue Apr 22 13:50:33 EDT 2008 i686 i686 i386 GNU/Linux
How can I know from this that the given OS is 32 or ...
19
votes
8answers
5k views
Determining 32 vs 64 bit in C++
I'm looking for a way to reliably determine whether C++ code is being compiled in 32 vs 64 bit. We've come up with what we think is a reasonable solution using macros, but was curious to know if ...
16
votes
2answers
305 views
Have a static lib, is there a simple way to know it is for 32 bit or 64 bit?
Is there any tool that can directly test if a library is made for 32 or 64 bit?
16
votes
4answers
28k views
Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine
I created a windows application developed in .NET 3.5 in a 32 bit Windows 2008 server. When deployed the application in a 64 bit server it shows the error "Microsoft.Jet.OLEDB.4.0' provider is not ...
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 ...
15
votes
8answers
23k views
Detect whether Office 2010 is 32bit or 64bit via the registry
Now that Office 2010 also comes in a 64bit install, where in the registry do you find out if the version of Office installed is 32bit or 64bit?
15
votes
3answers
2k views
printf with sizeof on 32 vs 64 platforms: how do I handle format code in platform independant manner?
Very easy question for you Gurus but I haven't found the answer yet with about a good amount of searching.
I have some code that prints the amount of memory used by the program. The line is similar ...
14
votes
2answers
13k views
NUnit “missing” GPSVC.DLL on Windows 7/64
I recently upgraded from Vista/32 to Win7/64. On my old machine, everything was working fine.
Unfortunately, on my new machine NUnit won't load my unit tests, with the error message ...
12
votes
4answers
2k views
Is it safe to use sys.platform=='win32' check on 64-bit Python?
The usual check to differentiate between running Python-application on Windows and on other OSes (Linux typically) is to use conditional:
if sys.platform == 'win32':
...
But I wonder is it safe ...
12
votes
4answers
4k views
Is Visual Studio 2010 WebDev WebServer (Cassini) 64-bit compatible?
I'm now developing on Visual Studio 2008 on a 64-bit OS (Windows Server 2008 64-bit).
While the apps I write are 64-bit capable, as is IIS7, the built-in ASP.NET Development Server (aka Cassini aka ...
11
votes
3answers
171 views
64-bit Linux performance issue with memset
I'm debugging an application that is running quite a bit slower when built as a 64-bit Linux ELF executable than as a 32-bit Linux ELF executable. Using Rational (IBM) Quantify, I tracked much of the ...
11
votes
6answers
604 views
Performance problem with Euler problem and recursion on Int64 types
I'm currently learning Haskell using the project Euler problems as my playground.
I was astound by how slow my Haskell programs turned out to be compared to similar
programs written in other ...
11
votes
2answers
985 views
Should I use Python 32bit or Python 64bit
I have a win7 64bit installation. Must I use Python 64bit? What are the differences between the 32bit and 64bit Python versions anyway? Do different Python packages (such as south, django, mysqldb ...
11
votes
4answers
10k views
How do I force Python to be 32-bit on Snow Leopard and other 32-bit/64-bit questions
When I run the following from a bash shell on my Mac:
$ file /usr/bin/python
I get the following three lines:
/usr/bin/python (for architecture x86_64): Mach-O 64-bit executable x86_64
...
10
votes
2answers
255 views
Is “0xffffffff00000000” an indication of a mix-up between 32-bit and 64-bit compilations?
I compiled Qt in 64 bit. My code is also compiled in 64 bit. I initialize a (pointer) member variable to zero. When I inspect it, XCode tells me that its value is not 0 but 0xffffffff00000000.
Is ...
10
votes
6answers
2k views
int vs size_t on 64bit
Porting code from 32bit to 64bit. Lots of places with
int len = strlen(pstr);
These all generate warnings now because strlen() returns size_t which is 64bit and int is still 32bit. So I've been ...
10
votes
6answers
1k views
how to find if the machine is 32bit or 64bit
Is there anyway from a C prog to find whether the OS is currently running in 32bit or 64bit mode. I am using a simple program as below
int main(void){
switch(sizeof(void*)){
case 4: ...
10
votes
12answers
7k views
How should I handle “cast from ‘void*’ to ‘int’ loses precision” when compiling 32-bit code on 64-bit machine?
I have a package that compiles and works fine on a 32-bit machine. I am now trying to get it to compile on a 64-bit machine and find the following error-
error: cast from ‘void*’ to ‘int’ loses ...
9
votes
2answers
127 views
nUnit Exception on a 64 bit Machine
I have an MVC 3.0 app. My testing framework is nUnit 2.4.8.0. I started this code on a 32 bit machine, and recently started using a 64 bit machine. I just as recently upgraded the project to .NET ...
9
votes
3answers
463 views
Bitwise Operations On Large Strings In PHP
Here's my problem. I'm currently trying to implement a few Cryptography standards in PHP for compatibility reasons. The one I'm working on now is SHA256 and SHA512. They are both reasonably ...
9
votes
2answers
1k views
C# compiling for 32/64 bit, or for any cpu? [closed]
Possible Duplicate:
Visual Studio “Any CPU” target
I've noticed that when compiling C# code in VS, there's typically options for compiling for 32/64 bit systems, and there's ...
9
votes
5answers
2k views
Can PHP tell if the server os it 64-bit?
I am dealing with Windows here.
I know you can use the $_SERVER['HTTP_USER_AGENT'] variable to detect the OS of the browser viewing the page, but is the any way that PHP can detect the server's OS?
...
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 ...
8
votes
1answer
172 views
Algorithm C/C++ : Fastest way to compute (2^n)%d with a n and d 32 or 64 bit integers
I am searching for an algorithm that allow me to compute (2^n)%d with n and d 32 or 64 bits integers.
The problem is that it's impossible to store 2^n in memory even with multiprecision libraries, ...
8
votes
2answers
266 views
Forcing a Cocoa application to start in 32-bit mode programatically
I have a Cocoa application that usually runs in full 64-bit mode on any Mac that supports this architecture.
Now I have an external API that is only available as a 32-bit plug-in to be loaded into ...
8
votes
4answers
181 views
Using C#, how to get whether my machine is 64bit or 32bit?
Using C#, I would like to create a method that retunrs whether my machine is 64 or 32-bit.
Is there anybody who knows how to do that?
8
votes
2answers
1k views
Best way to call 32-bit unmanaged code from 64-bit Managed Code using a managed code wrapper
The frequency with which I am coming across the situation where I have to call native 32-bit code from a managed 64-bit process is increasing as 64-bit machines and applications become prevalent. I ...
8
votes
9answers
423 views
I am developing a 64 bit application. Is it possible to run the 64 bit application on a 32 bit OS?
I am developing a 64 bit application. Is it possible to run the 64 bit application on a 32 bit OS?
Please note that the question is generic and not specific to Windows OS. Infact the application in ...
7
votes
3answers
171 views
How can I build a 32bit (i386) .deb on a 64bit box?
I have applications which successfully compile with the -m32 switch (in DMD and/or GCC) to produce:
appname: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked
(uses shared ...
7
votes
1answer
138 views
Using Matlab 32 and 64 bit on the same machine, how do you store settings in a different place?
For various reasons I need to do things in 64 bit and 32 bit Matlab.
Much to my chagrin... I found out recently that settings for both 32 and 64 bit Matlab are both stored in the same folder:
...
7
votes
4answers
249 views
32/64 bit confusion with a .NET executable
I have an executable build with Visual Studio 2005 using C#. dumpbin reports that it is x86 and it is claimed that it was built as a x86 target. However, when I try executing it, it somehow becomes ...
7
votes
3answers
334 views
Should I use 'long' instead of 'int' on 64-bits in langs with fixed type size (like Java, C#)
In 10, or even 5 years there will be no [Edit2: server or desktop] 32-bit CPUs.
So, are there any advantages in using int (32bit) over long (64bit) ?
And are there any disadvantages in using int ?
...
7
votes
3answers
6k views
Is it possible to install both 32bit and 64bit Java on Windows 7?
Is it possible to install both 32bit and 64bit Java on Windows 7?
I have some applications that I can run under 64bit, but there are some that only run under 32bit.
7
votes
5answers
272 views
Find out the largest native integer type on the current platform
The problem I have is to create a sort of big integer library. I want to make it both cross platform and as fast as possible. This means that I should try to do math with as large data types as are ...
7
votes
2answers
570 views
app.config and 64-bit machines
I have an app that works fine on 32-bit systems, but fails on XP 64 bit systems. I've tracked it down to the connection string defined in my app.config thus:
<connectionStrings>
...
7
votes
2answers
2k views
How to start a 64-bit process from a 32-bit process
I am trying to run a 64 bit executable (java.exe) from our 32-bit .NET application. I am using Process class and invoking cmd /c <command name> in order to support all possible commands (like ...
7
votes
3answers
11k views
Mac OSX 10.6 compiler: a puzzling experience with 32 vs 64 bit
I have trouble understanding the gcc compiler provided by OSX 10.6 snow leopard, mainly because of my lack of experience with 64 bits environments.
$ cat >foo.c
main() {}
$ gcc foo.c -o foo
$ file ...
7
votes
4answers
308 views
How to develop to take advantage of 64 bit systems?
Is there any specific sectors of Software Engineer/Computer Science where there's a marked difference when developing for 64 bit systems? I've been coding for around 10 years now, and since the break ...
6
votes
3answers
62 views
Utilizing a 32-bit DLL in a 64-bit process via COM
So some time ago I was investigating an issue that I knew would be coming up soon. We have a DLL that links to 32-bit versions of a certain library. There is no x64 version of this library available ...
6
votes
2answers
190 views
How can I compile 32- and 64-bit DCUs into separate directories?
I'm trying to maintain one repository, most everything in my code base is source, but we've got the QuickPDF library which is a bunch of precompiled DCU's. I'd like to put them in version control ...
6
votes
2answers
174 views
Why is fPIC absolutely necessary on 64 and not on 32bit platforms?
I recently received a:
...relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with -fPIC
error while trying to compile a program as a shared ...
6
votes
2answers
2k views
How to find out if an installed Eclipse is 32 or 64 bit version?
How can I find out if a specific Eclipse instance on my (Windows 7) PC is the 32-bit or 64-bit version?
I've checked the About screen and the maze of dialogs one can call from there, but I didn't ...
6
votes
3answers
294 views
What static analysis tools are available to assist in porting a Linux app to 64-bit?
Is there any static analysis tool which would help in pointing out particular sections of code where changes would need to be made when porting the application to 64-bit? I want the tool to run on ...
6
votes
2answers
377 views
What performance can I expect from Int32 and Int64?
I often see pprograms like this, where Int64 is an absolute performance killer on 32-bit platforms. My question is now:
If I need a specific word length for my task (in my case a RNG), is Int64 ...
6
votes
3answers
221 views
Adding 64 bit support to existing 32 bit code, is it difficult?
There is a library which I build against different 32-bit platforms. Now, 64-bit architectures must be supported. What are the most general strategies to extend existing 32-bit code to support 64-bit ...
6
votes
2answers
285 views
Why does Math.Exp give different results between 32-bit and 64-bit, with same input, same hardware
I am using .NET 2.0 with PlatformTarget x64 and x86. I am giving Math.Exp the same input number, and it returns different results in either platform.
MSDN says you can't rely on a literal/parsed ...
6
votes
2answers
232 views
Ho to use the correct unmanaged dll according CPU architecure? (32 / 64bits)
I have to use a c++ dll from an asp .net site. The site will be hosted on both 32 and 64bits environments.
I have a 32 and 64 bits version of the unmanaged dll. How do I import the methods from the ...
6
votes
3answers
207 views
Can we create a VC++ executable which will work natively on both 32 bit and 64 bit Windows?
Is there any way to build a VC++ project so that the dll/exe created by it will work as a 32 bit application on a 32 bit Windows OS and as a 64 bit application on a 64 bit Windows OS (not in WOW64).
...