32bit

What is com.apple.FinderInfo in `ls -l@` at Home?

I run ~ master $ ls -l@ I get total 3 drwx------+ 41 Masi staff 1.4K Jul 18 03:20 Downloads drwxr-xr-x@ 18 Masi staff 612B Jul 14 10:41 Dropbox com.apple.FinderInfo 32B drwx------+ 54 Masi staff 1.8K Jul 4 20:35 Library com.apple.FinderInfo seems to be some data-structure. ls' option @ should display only ...

Can I deploy SharePoint solutions with 32 bit assemblies on a 64 bit SharePoint farm?

Our development environment is all 32 bit, but our production SharePoint farms are all 64 bit. Can we just deploy the SharePoint solutions straight to the 64 bit platform, or do we need to recompile everything? ...

Getting Embedded with D (the programming language)

I like a lot of what I've read about D. Unified Documentation (That would make my job a lot easier.) Testing capability built in to the language. Debug code support in the language. Forward Declarations. (I always thought it was stupid to declare the same function twice.) Built in features to replace the Preprocessor. Modules Typedef ...

Import 32-bit dsn into 64-bit window server

We are in process of upgrading from 32-bit windows 2003 server to 64-bit windows 2003 server. We have hundreds of ODBC DSN's created on the 32-bit, which we now want to work on the 64-bit box. Using the registry export and importing into the 64-bit box results in those entries ending up on the 32-bit part of the odbc windows registry tre...

32 and 64 bits libraries: separate file or a single one?

Hi all, I need to provide 32 and 64 bits version of my .dll for a customer. Do I need to generate 2 files? Or can a single one contain code for both architectures? And for extra brownie points: does the same question apply for Mac libraries? Or the Universal Binary approach solve that issue? Thanks in advance Alex ...

Getting started with 32-bit assembly

I routinely compile my C code to assembly to read the output and learn about how the compiler interprets my code. While doing this, I often think, "maybe I should just write my software in assembly!" But in all honesty I don't know how to begin. I've written 16 bit assembly compiled with tasm before and it was sorta fun. But I want to s...

32 bit lampp with 64 bit libmemcached

I am running lampp on a 64 bit machine by installing ia32-libs. Problem is when I try to install libmemcached on the same machine, it gets compiled as 64 bit. I changed the script and got it to compile for 32 bit but when I restart apache, it complains about openssl not being 32 bit. Looks like I'll have to compile the entire world as 32...

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 of 64 bit systems, my code hasn't changed one bit. What applications that a single coder can code as a side project require you to use 64...

Should I use a 32-bit or 64-bit OS for a development machine?

I remember hearing that for performance a development machine should be 32 bit, while servers should be 64 bit. I think it was Richard Campell on Dot Net Rocks! that mentioned this. Why would 32-bit be faster than the 64-bit for a development box and vice versa for servers? ...

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, just setting LD_LIBRARY_PATH to find the linked libraries in ~/tools/lib it seems to ignore it and only look in subdirectories named lib64....

What are the lower level advantages and disadvantages of 64-bit/32-bit?

I'm sure we've all heard the terms 64bit and 32bit thrown around, but what do they actually mean? I'm pretty sure they have to do with the size of a memory address. On a 64bit machine, a reference to an object is 64 bits. But I want to dig a little deeper.... One often hears the phrase "64bit machine." What part of the computer is act...

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 processor and based on which a program can have maximum memory. How it affects the speed of a program. There are lot more questions which k...

.NET GDI bug between 32 and 64 bit?

I have a strange problem with a .NET application. I run the application (a Windows Forms app) on a 64 bit Windows 2008 Server. I run it remotely using Remote Desktop. My application does its own drawing ( i.e. g.DrawString("hello world"...) ) on the app. If I build the app with the Platform Target (in the Build tab of the application pr...

build program and install software under Network File System for different machines

Hi, Although having a little experience, I am still confused with the question of whether it is necessary to install an application and/or build a C++ program or C++ library under Network File System shared by machines, which have different Linux version (e.g. CentOS release 4.7, Ubuntu 8.10), possibly different bit (e.g. 32-bit, 64-bit)...

32bit 64bit compatible

Hello, I am developing an application that will run on 64 bit computers. However, we are using a library that has 32 bit integers that we cannot change. And we will need to compile and run on a 64 bit computer. What would the implications be when the application is running? Is there any work around? Many thanks for any advice, ...

Identifying Application from Extension

Can we identify an application is how much bit ie 16/32/64 bit from its extension. .com,.exe,.bin specifies anything like that? ...

How do I force a 32 bit build of boost with gcc?

How do I force a 32 bit build of boost with gcc? Currently attempting by putting this line in my user-config.jam, but it does not work. using gcc : 4.1.2 : g++ : compileflags="-m32" ; Chenz ...

Setting 32-bit x86 build target in Visual C# 2008 Express Edition?

I'm building a C# application that loads a 32-bit COM dll. The compiled application runs fine on 32-bit Windows but barfs on 64 bit Windows because it can't load the 32-bit COM. Is there a way to set a 32-bit build target in VC# 2008 Express Edition? Alternatively, is there a way to force a .NET application compiled to the AnyCPU build ...

Can someone provide me a specification of 32 bit BMP image format?

My application have some problem on opening 32bit BMP images. some image has alpha channel and with certain value, but window image viewer, picasa photoshop seems ignore the alpha channel. how can I know whether I should take the alpha channel into account. So I need a specification of 32bit BMP Image. Can anyone help? Many thanks! ...

Accessing Registry using .Net?

Hello Everyone, I am finding a strange behavior with a .Net module accessing registry using RegistryKey class. For eg I have written .Net module testcom.dll which access registry. This testcom.dll is used both by native 32 bit application and 64 bit application. My requirement is to get the value of a regkey (path being HKEY_LOCAL_MACHIN...