-
Gilles
libraries ffmpeg 32bit
I’m on Ubuntu 12.04 64 bits and I’m trying to get a game (GTA SA) working in wine, but it keeps crashing. After reading error logs it seems I needed some 32 bit versions of gstreamer, probably to play the intro video. I already have ia32-libs, because I read somewhere I will need that in order to run 32 bit software. I first tried:sudo apt-get install gstreamer0.10-ffmpeg:i386Which returns:gstreamer0.10-ffmpeg:i386 : Depends: libavcodec53:i386 (>= 4:0.7.3-1) but it is not going to be installe
-
MountainX
compiling drivers video 64bit 32bit
I want to install SimpleScreenRecorder (SSR) from git as recommended by the developer. The binary version crashes while the git version fixes my crash problem. Unfortunately, to build the git version I have to resort to a work-around — and now I’ve run into side effects from that.Main page – SimpleScreenRecorder – Maarten Baert’s websiteThe instructions are found here: https://github.com/MaartenBaert/ssrThe dev says, “I don’t know whether this is the right way to do it, but it works for me.”It
-
Grant
xorg system-installation 64bit 32bit
I have a home server that was running 64bit Linux Mint with Core 2 Duo, 4GB ram, nvidia 7950GT, and RAID 0 two 150GB drives. It was running fine til the power supply failed and I had to replace it. When the power supply failed the video card also got fried unfortunately so I had to switch to an ATI card. I’ve tried an old Radeon X800 as well as a Radeon HD 4600. Both of these video cards have hard problems with X server in 64bit mode. Even trying to run a liveCD version of different distros they
-
alexj
windows cygwin mingw 32bit gmp
Hello I am trying to compile gmp because I need it for a Perl Module. I have to install eveyrthing manually because the machine doesent have access to the Internet. I runned configure and used this command in cygwin in the GMP Folder:./configure –prefix=C:\gmp –disable-static –enable-sharedNow that also worked without problems and created the MAKEFILE now when I run make this happens:$ make gcc -std=gnu99 `test -f ‘gen-fac.c’ || echo ‘./’`gen-fac.c -o gen-fac.exe ./gen-fac 32 0 >fac_table.
-
veefu
c++ c gcc 64bit 32bit
In an application I maintain, we’ve encountered a problem with file descriptor limitations affecting the stdlib. This problem only affects the 32-bit version of the standard lib.I have devised a fix for my code and would like to implement it, but only when compiling for 32-bit executable. What pre-processor symbol can I #ifdef for to determine whether the code is being compiled for a 32 or 64-bit target?EDITSorry, didn’t mention, the code is cross-platform, linux, windows, solaris and a few othe
-
Mysticial
java windows-7 32bit java-7 java-web-start
Java 7 on 32-bit Windows 7 – Java Webstart – Unable to load resourceI can’t launch any java webstart application on a 32-bit Windows 7 system. E.g. ArgoUML – http://argouml-downloads.tigris.org/jws/argouml-latest-stable.jnlp Everything works fine with Java 6, but with Java 7 I get this kind of errors:Unable to load resource: java.io.IOException: Error writing toserver or java.net.SocketException: Connection resetJava version: Java Web Start 10.7.2.11 Using JRE version 1.7.0_07-b11 Java HotSpot(T
-
szx
c windows-8 32bit stat
I have a 4 GB (exactly) file on an NTFS partition and a program that tries to get its size with stat() but it always fails with Unknown error (stat returns -1).Does this mean that NTFS doesn’t support 4 GB files? Or I have to use a different (Win32?) API?Edit:struct stat st;if (stat(path.c_str(), &st) == -1) {printf(“stat: %s\n”, strerror(errno));}outputs:stat: Unknown error