[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Ajuda com o plex86 (mais informacoes)



Olá,

Com dificuldade cheguei até este ponto na configuração do plex86:

cd /usr/src
tar zxpvf plex86.tar.gz
cd /usr/src/modules/plex86
./configure

A partir daí apareceu o erro, vejam a saída do make:

debian:/usr/src/modules/plex86# make
make: *** Nenhum alvo indicado e nenhum arquivo make encontrado.  Pare.
debian:/usr/src/modules/plex86#

Espero ansiosamente por alguma ajuda...


Abaixo o resultado do ./configure

E mais abaixo ainda o conteúdo do Makefile.in


debian:/usr/src/modules/plex86# ./configure
checking for gcc... gcc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... no
checking whether g++ accepts -g... no
checking whether make sets $(MAKE)... yes
checking for ranlib... ranlib
checking how to run the C preprocessor... gcc -E
checking for X... no
checking for inline... inline
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for unsigned char... yes
checking size of unsigned char... 1
checking for unsigned short... yes
checking size of unsigned short... 2
checking for unsigned int... yes
checking size of unsigned int... 4
checking for unsigned long... yes
checking size of unsigned long... 4
checking for unsigned long long... yes
checking size of unsigned long long... 8
checking for select... yes
checking for dlopen in -ldl... yes
checking for instrumentation support... yes
checking for CDROM support... yes
checking for Sound Blaster 16 support... no
checking for split hard disk image support... yes
checking for NE2000 support... no
checking for i440FX PCI support... no
checking for VBE support... yes
configure: creating ./config.status
config.status: creating kernel/Makefile
config.status: creating kernel/emulation/Makefile
config.status: creating kernel/dt/Makefile
config.status: creating kernel/iodev/Makefile
config.status: creating config.h
config.status: config.h is unchanged


Conteúdo do Makefile.in

#  plex86: run multiple x86 operating systems concurrently
#  Copyright (C) 1999-2000  Kevin P. Lawton
#
#  This library is free software; you can redistribute it and/or
#  modify it under the terms of the GNU Lesser General Public
#  License as published by the Free Software Foundation; either
#  version 2 of the License, or (at your option) any later version.
#
#  This library is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
#  Lesser General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public
#  License along with this library; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
.PHONY: all clean dist-clean
 
 
# Get variables from shell, or override if specified to make
CC      = @CC@
CFLAGS  = @CFLAGS@
LDFLAGS = @LDFLAGS@
 
srcdir  = @srcdir@
VPATH   = @srcdir@
 
MDEFINES = CC="$(CC)" CFLAGS="$(CFLAGS)" \
           LDFLAGS="$(LDFLAGS)"
 
# By default, 'all' doesnt make in the bios directory.  This
# is so people who don't need to compile a BIOS (just a precompiled
# one) don't have to get the tools to compile plex86.  Cd to
# bios and type 'make' if you want to compile your own.
all:
        $(MAKE) -C user   $(MDEFINES)
        $(MAKE) -C kernel $(MDEFINES)
        $(MAKE) -C guest  $(MDEFINES)
 
 
clean:
        $(MAKE) -C user clean
        $(MAKE) -C kernel clean
        $(MAKE) -C guest clean
        $(MAKE) -C bios  clean
        $(MAKE) -C dt-testbed  clean
 
dist-clean:
        $(MAKE) -C user dist-clean
        $(MAKE) -C kernel dist-clean
        $(MAKE) -C guest dist-clean
        $(MAKE) -C bios  dist-clean
        $(MAKE) -C docs dist-clean
        $(MAKE) -C dt-testbed dist-clean
        /bin/rm -f config.status config.cache config.log
        /bin/rm -f Makefile config.h
 
Makefile:       Makefile.in config.status
                CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) config.status




Reply to: