From owner-svn-src-all@freebsd.org Fri May 20 19:14:17 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E233B441BB; Fri, 20 May 2016 19:14:17 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 59A1F136C; Fri, 20 May 2016 19:14:17 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4KJEGAM018407; Fri, 20 May 2016 19:14:16 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4KJEFB8018399; Fri, 20 May 2016 19:14:15 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201605201914.u4KJEFB8018399@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Fri, 20 May 2016 19:14:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r300323 - in stable/10/lib/csu: amd64 arm i386-elf mips powerpc powerpc64 sparc64 X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 May 2016 19:14:17 -0000 Author: emaste Date: Fri May 20 19:14:15 2016 New Revision: 300323 URL: https://svnweb.freebsd.org/changeset/base/300323 Log: MFC r292000: Remove historical GNUC test The requirement is for a GCC-compatible compiler and not necessarily GCC itself. However, we currently expect any compiler used for building the whole of FreeBSD to be GCC-compatible and many things will break if not; there's no longer a need to have an explicit test for this in csu. Modified: stable/10/lib/csu/amd64/crt1.c stable/10/lib/csu/arm/crt1.c stable/10/lib/csu/i386-elf/crt1_c.c stable/10/lib/csu/mips/crt1.c stable/10/lib/csu/powerpc/crt1.c stable/10/lib/csu/powerpc64/crt1.c stable/10/lib/csu/sparc64/crt1.c Directory Properties: stable/10/ (props changed) Modified: stable/10/lib/csu/amd64/crt1.c ============================================================================== --- stable/10/lib/csu/amd64/crt1.c Fri May 20 19:10:29 2016 (r300322) +++ stable/10/lib/csu/amd64/crt1.c Fri May 20 19:14:15 2016 (r300323) @@ -27,12 +27,6 @@ #include __FBSDID("$FreeBSD$"); -#ifndef lint -#ifndef __GNUC__ -#error "GCC is needed to compile this file" -#endif -#endif /* lint */ - #include #include "libc_private.h" Modified: stable/10/lib/csu/arm/crt1.c ============================================================================== --- stable/10/lib/csu/arm/crt1.c Fri May 20 19:10:29 2016 (r300322) +++ stable/10/lib/csu/arm/crt1.c Fri May 20 19:14:15 2016 (r300323) @@ -42,12 +42,6 @@ #include __FBSDID("$FreeBSD$"); -#ifndef lint -#ifndef __GNUC__ -#error "GCC is needed to compile this file" -#endif -#endif /* lint */ - #include #include "libc_private.h" Modified: stable/10/lib/csu/i386-elf/crt1_c.c ============================================================================== --- stable/10/lib/csu/i386-elf/crt1_c.c Fri May 20 19:10:29 2016 (r300322) +++ stable/10/lib/csu/i386-elf/crt1_c.c Fri May 20 19:14:15 2016 (r300323) @@ -29,12 +29,6 @@ #include __FBSDID("$FreeBSD$"); -#ifndef lint -#ifndef __GNUC__ -#error "GCC is needed to compile this file" -#endif -#endif /* lint */ - #include #include "libc_private.h" Modified: stable/10/lib/csu/mips/crt1.c ============================================================================== --- stable/10/lib/csu/mips/crt1.c Fri May 20 19:10:29 2016 (r300322) +++ stable/10/lib/csu/mips/crt1.c Fri May 20 19:14:15 2016 (r300323) @@ -36,10 +36,6 @@ #include __FBSDID("$FreeBSD$"); -#ifndef __GNUC__ -#error "GCC is needed to compile this file" -#endif - #include #include "libc_private.h" #include "crtbrand.c" Modified: stable/10/lib/csu/powerpc/crt1.c ============================================================================== --- stable/10/lib/csu/powerpc/crt1.c Fri May 20 19:10:29 2016 (r300322) +++ stable/10/lib/csu/powerpc/crt1.c Fri May 20 19:14:15 2016 (r300323) @@ -42,12 +42,6 @@ #include __FBSDID("$FreeBSD$"); -#ifndef lint -#ifndef __GNUC__ -#error "GCC is needed to compile this file" -#endif -#endif /* lint */ - #include #include "libc_private.h" Modified: stable/10/lib/csu/powerpc64/crt1.c ============================================================================== --- stable/10/lib/csu/powerpc64/crt1.c Fri May 20 19:10:29 2016 (r300322) +++ stable/10/lib/csu/powerpc64/crt1.c Fri May 20 19:14:15 2016 (r300323) @@ -42,12 +42,6 @@ #include __FBSDID("$FreeBSD$"); -#ifndef lint -#ifndef __GNUC__ -#error "GCC is needed to compile this file" -#endif -#endif /* lint */ - #include #include "libc_private.h" Modified: stable/10/lib/csu/sparc64/crt1.c ============================================================================== --- stable/10/lib/csu/sparc64/crt1.c Fri May 20 19:10:29 2016 (r300322) +++ stable/10/lib/csu/sparc64/crt1.c Fri May 20 19:14:15 2016 (r300323) @@ -33,12 +33,6 @@ #include __FBSDID("$FreeBSD$"); -#ifndef lint -#ifndef __GNUC__ -#error "GCC is needed to compile this file" -#endif -#endif /* lint */ - #include #include "libc_private.h"