Displaying 8 results from an estimated 8 matches for "host_cc".
2017 Jun 26
2
Install locks up my server
...mkdir $tmp) && echo "Warning:
creating insecure temp directory" >&2 ; } ||
{ echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ;
exit 1 ; } ;
dummy=$tmp/dummy ;
tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
case $CC_FOR_BUILD,$HOST_CC,$CC in
,,) echo "int x;" > $dummy.c ;
for c in cc gcc c89 c99 ; do
if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
CC_FOR_BUILD="$c"; break ;
fi ;
done ;
if test x"$CC_FOR_BUILD" = x ; then
CC_FOR_B...
2017 Aug 18
0
Install locks up my server
..."Warning:
> creating insecure temp directory" >&2 ; } ||
> { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ;
> exit 1 ; } ;
> dummy=$tmp/dummy ;
> tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
> case $CC_FOR_BUILD,$HOST_CC,$CC in
> ,,) echo "int x;" > $dummy.c ;
> for c in cc gcc c89 c99 ; do
> if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
> CC_FOR_BUILD="$c"; break ;
> fi ;
> done ;
> if test x"$CC_FOR_BUILD"...
2017 Aug 25
0
Install still locks up my server
..."Warning:
> creating insecure temp directory" >&2 ; } ||
> { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ;
> exit 1 ; } ;
> dummy=$tmp/dummy ;
> tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
> case $CC_FOR_BUILD,$HOST_CC,$CC in
> ,,) echo "int x;" > $dummy.c ;
> for c in cc gcc c89 c99 ; do
> if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
> CC_FOR_BUILD="$c"; break ;
> fi ;
> done ;
> if test x"$CC_FOR_BUILD"...
2017 Jun 26
2
Install locks up my server
Ever since 2.26 I haven't been able to upgrade. In fact the install
locks up my server.
I get into and infinite recursive loop where the config-guess program
calls itself until the server locks up from overload.
I'm running Centos 6 under OpenVZ.
What am I missing? I think there's a serious bug.
31233 pts/3 S 0:00 /bin/sh ./config.guess
31235 pts/3 S 0:00 \_
2003 Nov 29
1
[PATCH] ash not make -j safe, make spotless updates
...@ -12,6 +12,9 @@ OBJ2 = builtins.o cd.o dirent.o bltin/ec
OBJS = $(OBJ1) $(OBJ2)
+OBJ_NODES = cd.o eval.o exec.o expand.o jobs.o main.o nodes.o options.o parser.o redir.o show.o trap.o var.o
+
+
SRCROOT = ..
include ../MCONFIG
@@ -63,6 +66,8 @@ init.c: mkinit $(SRCS)
mkinit: mkinit.c
$(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) mkinit.c -o $@ $(HOST_LIBS)
+$(OBJ_NODES): nodes.h
+
nodes.h: mknodes nodetypes nodes.c.pat
./mknodes nodetypes nodes.c.pat
@@ -73,7 +78,7 @@ mknodes: mknodes.c
$(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) mknodes.c -o $@ $(HOST_LIBS)
clean:
- rm -f core $(C...
2013 Sep 18
5
[PATCH] qemu-traditional: do not strip binaries during make install
Signed-off-by: Olaf Hering <olaf@aepfle.de>
Acked-by: Matt Wilson <msw@amazon.com>
---
Makefile | 2 +-
Makefile.target | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 37c7066..594f0ef 100644
--- a/Makefile
+++ b/Makefile
@@ -243,7 +243,7 @@ endif
install: all $(if $(BUILD_DOCS),install-doc)
mkdir -p
2011 May 31
0
[XEN-NVIDIA] Update 270.41.06 Failed
...e/x11-drivers/nvidia-drivers-270.41.06/wo
> rk ...
> ^[[32;01m*^[[0m Preparing nvidia module
> make -j9 HOSTCC=x86_64-pc-linux-gnu-gcc CROSS_COMPILE=x86_64-pc-linux-gnu-
> LDFLA
> GS= IGNORE_CC_MISMATCH=yes V=1 SYSSRC=/usr/src/linux
> SYSOUT=/lib/modules/2.6.34-
> xen-r4/build HOST_CC=x86_64-pc-linux-gnu-gcc clean module
> The kernel you are installing for is a Xen kernel!
>
> The NVIDIA driver does not currently work on Xen kernels. If
> you are using a stock distribution kernel, please install
> a variant of this kernel without Xen support; if this is a
> cus...
2004 Sep 14
1
Re: got pointer wrong in shared klibc binary
...MCONFIG klibc/MCONFIG
--- klibc-0.173/MCONFIG 2004-07-02 09:09:19.000000000 +0930
+++ klibc/MCONFIG 2004-09-15 11:54:05.258092171 +0930
@@ -19,6 +22,7 @@ RANLIB = $(CROSS)ranlib
NM = $(CROSS)nm
PERL = perl
STRIP = $(CROSS)strip --strip-all -R .comment -R .note
+OBJCOPY = $(CROSS)objcopy
HOST_CC = gcc
HOST_CFLAGS = -g -O
diff -urpN klibc-0.173/klibc/Makefile klibc/klibc/Makefile
--- klibc-0.173/klibc/Makefile 2004-08-26 15:33:41.000000000 +0930
+++ klibc/klibc/Makefile 2004-09-15 11:54:06.301925693 +0930
@@ -57,6 +57,8 @@ SOHASH = klibc.so
CRT0 = crt0.o
LIB = libc.a
+INT...