1. Challenge: Hauppauge WinTV PVR 350 on my AMD Athlon 3400+ 64bit PC/Linux - Linux
2. 32bit software on 64bit processor
I have Netra-T1 server which is 64bit architecture. I would expect that only 64bit sw can be used. I have some application that requires some TimesTen database to be installed first. And I nedd to install TT32 bit package (although 64bit also exists). I don't care which one is (as long as it works), but I don't understand how can it work ? Does that mean that all sparcs can simultaneously run 32bit and 64bit programs ? thanks, jmiklo
3. how to compile code on linux(32bit) for linux(64bit)
4. how to compile code on linux(32bit) for linux(64bit)
On 9 mei, 08:08, XXXX@XXXXX.COM wrote: > I am trying to create a shared library file of 64bit for linux. but > the problem is i have to compile its source on 32 bit linux. > > i am using option -m64 for the same but it is not workig. > > can anyone suggest me wht other option are availabe and also wht > option should be used for ld flags. > > please reply soon You will have to be specific about what cross-compiler you are using as well as what the target platform is. Merely stating that the option -m64 does not work is not enough. Consider this: - A lot of compilers will have no such option (they might call it differently or do not have the facility at all) - When a compiler running on Linux 32-bits does know how to compile for "a" Linux 64-bits system, it will probably need to know what processor this target system has. Regards, Arjen
5. backup/restore from 32bit linux db2 9.1 to 64bit linux 9.7
6. 64bit passwd program for solaris 10 (64bit) on AMD opteron
Hi ALL, Is there a 64bit 'passwd' program available for Solaris 10(64bit) AMD opteron. We Installed Solaris 10 (64bit) on AMD opteron. kernel is in 64bit. Both 32 and 64 bit libraries are available. But there is only 32bit 'passwd' program. We need use a 64bit pam module. This cannot be used with 32 bit passwd. Regards Kiran
7. "Fatal trap 12" kernel panics on AMD Athlon 1ghz (AMD-751) - FreeBSD
8. Detecting 64bit vs. 32bit Linux
I need to detect whether the operating system I am running on (not the
Python version) is 64bit or 32bit. One requirement is that I need to
include support for non-Intel/AMD architectures.
The 2 ways I have thought detecting 64bit are:
1. struct.calcsize("P") == 8
2. '64' in os.uname()[4]
I'm not convinced that either one of these is really adequate. Does
anybody have any other ideas on how to do this?
Thanks,
Don