compiling xf86videointel and xorgmacros 1.1.3
location:
linuxquestions.com - date:
February 23, 2008
I tried to compile the Xorg 2D driver with xf86-video-intel source code
according to http://intellinuxgraphics.org/install.html
I have made use of
xorg-x11-server-Xorg-1.3.0.0-5.fc7.x86_64.rpm
xorg-x11-server-sdk-1.3.0.0-5.fc7.x86_64.rpm
and several other rpms
on my CentOS5.1 to upgrade my xorg-x11-server.
(I am still worry that the intel web says I need >=1.3.0.0-6, but
I cannot find that, so I just continue with building.
I hit the following problem:
[
[email protected] xf86-video-intel]# ./autogen.sh
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal
configure.ac:219: error: must install xorg-macros 1.1.3 or later before running autoconf/autogen
configure.ac:219: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
aclocal: autom4te failed with exit status: 1
autoreconf: aclocal failed with exit status: 1
Question: Do I have to install xorg-macros (how?) or
I need to put choose a right --pr
Compiling for arm? configure: error: cannot run C compiled programs
location: ubuntuforums.com - date: February 10, 2008
I've tried compiling a few things today, and nothing is working anymore. When I do the typical ./configure, I get the following error:
Code:
checking for C compiler default output file name... a.out
checking whether the C compiler works... configure: error: cannot run C compiled programs.
If you meant to cross compile, use `--host'.
See `config.log' for more details.
config.log says:
Code:
configure:2523: result: GNU
configure:2596: checking for gcc
configure:2623: result: ccache arm-angstrom-linux-gnueabi-gcc -march=armv4t -mtune=arm920t
configure:2861: checking for C compiler version
configure:2868: ccache arm-angstrom-linux-gnueabi-gcc -march=armv4t -mtune=arm920t --version >&5
arm-angstrom-linux-gnueabi-gcc (GCC) 4.1.2
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:2871: $? = 0
config
real time kernel for Debian, WITHOUT compiling it yourself. Ubuntu repos?
location: linuxquestions.com - date: July 26, 2009
Hi
I am looking to install a Ubuntu Real time kernel for Debian and am looking for the one from Hardy (8.04), but cannot find the package it anywhere.
So I have read that Hardy does not have a rt kernel at all, that Ubuntu Studio has. Does anybody know the repositories for Studio 8.04 that I can add it temporary to Debian to get myself a real time kernel?
Compiling it myself is not an option, because I have done that and it is way too fiddly for my taste. I also don't get why I have to go to such great lenghts, when Ubuntu has it ready and finshed.
(the sad story is that although I love Debian, the kernel that they ship with it is surely meant for server use:
My Ubuntu eee 901 (1.6 ghz "small posterior" CPU) and shared graphics gets about 5 times the 3d Desktop performance than my Lenovo (2.4 ghz Dual Core "big posterior" CPU and I got a shining fast GFX card in that one. And yet... 3d Desktop is jerky as hell, Jackd (in audio production) is doing millio
Cross compiling for mac os x on ubuntu
location: ubuntuforums.com - date: June 23, 2008
Hi,
I have a c program I'd like to compile for mac os x. Sadly I don't have a mac, but a mac user have told me that my program compiles without a problem on his mac.
I've been cross compiling for windows using mingw, but there seems to be no such package for mac os x as well, and nothing I've found on the web was very helpful thus far.
Can anyone here guide me to an easy to follow tutorial/howto?
compiling 32 bit application on 64 bit linux(x8664)
location: linuxquestions.com - date: December 13, 2007
hi all,
i have a 64 bit linux machine.
$uname -a
Linux SVRDELLD30 2.6.9-42.ELsmp #1 SMP Tue Aug 15 10:35:26 BST 2006 x86_64 x86_64 x86_64 GNU/Linux
here by default gcc creates 64 bit executable. but for some reason i want to create 32bit executable.
first i want to create 32 bit object files(.o files) and then i want to link those object files.
Please suggest me suitable gcc options.
Thanks and Regards,
uttam hoode
cross compiling for x86 x8664, for RHEL, Ubuntu, SLES
location: linuxquestions.com - date: April 15, 2010
Hi all,
I wonder if there is an easy way to accomplish the following:
I made a tool and part of it needs to be compiled.
It would be easy if I can automate compilation for multiple platforms (x86 / x86_64 / RHEL / SLES / Ubuntu).
Is there a way to do this automated on a single host?
Or should I set up an os for each distro?
Anyone has good references on how to do something like this?
Also is there a way to generate RPM and deb files also on the same host without having to edit the meta files each time a version changes?
I did put something together but it is not really clean.
[SOLVED] Problems while compiling ZSnes
location: linuxquestions.com - date: October 18, 2011
Hi there.
I've downloaded the ZSnes source code from here: http://www.zsnes.com/index.php?page=files (the latest version) and the I've tried to compile those, but I received the following error:
Quote:
Compiling with error on Ubuntu 10.10
location: linuxquestions.com - date: November 9, 2010
Hi,
I m trying to compile yasss-0.4.7.2, source downloaded from sourceForge
and getting these errors (attached the rar file of source code, just renamed as txt as rar was not supported)
-Wall: command not found
.SUFFIXES:: command not found
.cpp.o:: command not found
bash: ./Makefile: line 11: syntax error near unexpected token `newline'
bash: ./Makefile: line 11: ` $(CC) $(CFLAGS) -c $< '
here is the content of make file
CC=g++
LDFLAGS=
#CFLAGS=-pipe -Wall -ansi -pedantic -Werror -O3 -march=i686
CFLAGS=-pipe -Wall #-O2
OBJECTS=sudoku.o
BIN=yasss
.SUFFIXES: .cpp
.cpp.o: .hpp
$(CC) $(CFLAGS) -c $<
$(BIN): $(OBJECTS) main.cpp sudoku.hpp Makefile
$(CC) $(CFLAGS) $(LDFLAGS) -o $(BIN) main.cpp $(OBJECTS)
gui: gui.cpp sudoku.cpp sudoku.hpp perm.h
g++ $(CFLAGS) gui.cpp sudoku.o `pkg-config --cflags --libs gtk+-2.0` -o gui
yasss-curses: tui.cpp sudoku.o sudoku_nosane.o
g++ $(CFLAGS) -lncurses tui.cpp sudoku.o sudoku_nosane.o -o yass
[SOLVED] Problem compiling BASIC256 from source
location: linuxquestions.com - date: September 13, 2010
This is my first time compiling a software, I have successfully downloaded and extracted the "basic256_0.9.6.32.tgz" file,but There is no configure file present in the extracted contents,also make and checkinstall exit with error.What seems to be the problem
Here is the output of errors I got during Installation
Quote:
Error " kernel panic not syncing " after compiling new kernel
location: ubuntuforums.com - date: September 12, 2009
Yesterday i tryed to do my first kernel compilation, and when i try to load it i get the error:
[ 0.624435] Kernel panic - not syncing: VFS : Unable to mount root fs on unknown-block (0,0)
The steps i followed are the next:
1-Download the kernel and place it in /usr/src/linux-headers-2.6.31/
2-make menuconfig and load the old configuration
3-Make
4-make modules
5-make modules_install
6-make install
So i go to the /boot/ folder and i found the new files System.map-2.6.31, vmlinuz-2.6.31 and config-2.6.31.
I noticed that the other kernel i have already installed ( 2.6.24 ) have an initrd.img-2.6.24-generic file, i tryed yaird to generate it, but it throws me the following errors:
mkinitrd.yaird -o/boot/initrd.img-2.6.31-generic 2.6.31
yaird error: unrecognised device: /sys/devices/platform/i8042/serio0/input
yaird error: unrecognised device: /sys/devices/platform/i8042/serio0/input/input1
yaird error: unrecognised device: /sys/devices/virtual
yaird error: unrecognised device: /
please wait...
Page: 1 2 3 4 5 6 7 8 9 10