error building SDL prog with CodeBlocks for Windows CE Programming Software Development by rhubarb65 … --disable-nls --enable-languages=c,c++ --disable-win32-registry --disable-multilib --disable-interwork --without-newlib --enable-checking --with-headers --disable-__cxa_atexit… GDB debugging of segfaults Programming Software Development by Kanoisa … --enable-languages=c,c++,objc,fortran --enable-threads=posix --disable-multilib --enable-c99 --enable-long-long --enable-symvers=gnu --enable-libstdcxx… Re: GCC is not working Hardware and Software Linux and Unix by JasonHippy … you probably need to install the gcc-multilib package: `sudo apt-get install gcc-multilib` If this doesn't fix the problem… Re: How many main()s? Programming Software Development by nezachem … --with-system-zlib --disable-checking --disable-werror --enable-secureplt --disable-multilib --enable-libmudflap --disable-libssp --disable-libgcj --with-arch=i686 --enable… Re: GCC is not working Hardware and Software Linux and Unix by last1devil I installed gcc-multilib and ia32-libs but it's still not working. My … Re: GCC is not working Hardware and Software Linux and Unix by JasonHippy … of them using `sudo apt-get remove ia32-libs gcc-multilib`. Perhaps followed up with `sudo apt-get autoremove` to remove… Re: I need help with Code::Blocks and wxWidgets Programming Software Development by Seba Sama … build) or "$(#wx.lib)\gcc_lib\mswu" (assuming a multilib Unicode build)to the compiler search paths." I'm… lib, lib64, and multilib installations Hardware and Software Linux and Unix by spetro3387 I recently received a new 64-bit laptop and is my first endeavor into 64-bit computing. I installed all my usual packages through yum (I am using fedora 64 bit) and it downloaded all the 64-bit versions of the packages. I went to install an rpm packaged by years ago by a colleague at my university and the installer notified me that I had to … Re: lib, lib64, and multilib installations Hardware and Software Linux and Unix by rubberman FM (Farking Magic). :-) On Red Hat (RHEL and Fedora) systems, 32-bit libraries are installed into /usr/lib, and 64-bit ones in /usr/lib64. The system knows when an application is 32-bit or 64-bit and will load the appropriate shared libraries. If your colleague provides an RPM file for installation, then the yum package manager will deal with … Re: error building SDL prog with CodeBlocks for Windows CE Programming Software Development by rhubarb65 Hi I solved it I was accidentally linking in non ARM libraries. Even if this built, it would obviously fail when I tried to run it on the ARM device. The fix was to remove some Linker search directories that pointed to non ARM libraries (eg cygwin) Peter Re: GDB debugging of segfaults Programming Software Development by Moschops You can trash your stack to the point that the bt information is lost. If you can build your programme to run on your Linux machine, run your programme under valgrind (be sure to have built a version with debug symbols) and if you're stomping all over your own memory, it'll tell you. Re: GDB debugging of segfaults Programming Software Development by Kanoisa Thanks for the response, i have valgrind on my arm system, would i be right to expect that i can use it on the arm platform to get the same effect?