From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Return-Path: From: kusumi.tomohiro@gmail.com Subject: [PATCH v2 1/7] configure: Drop default CONFIG_LITTLE_ENDIAN for Cygwin Date: Tue, 14 Feb 2017 17:19:42 +0200 Message-Id: <20170214151948.16460-2-tkusumi@tuxera.com> In-Reply-To: <20170214151948.16460-1-tkusumi@tuxera.com> References: <20170214151948.16460-1-tkusumi@tuxera.com> To: axboe@kernel.dk, fio@vger.kernel.org Cc: Tomohiro Kusumi List-ID: From: Tomohiro Kusumi It's a bit strange that Cygwin is assumed to be le by default when no other platforms have such assumption even if they only target a single or certain arch (e.g. non-Android Linux often runs on x86, DragonFlyBSD only runs on x86, and so on..). Endianness will be detected by pointer arithmetic anyway, and it's better to rely on it to handle any sort of newly supported archs in the future. Signed-off-by: Tomohiro Kusumi --- configure | 1 - 1 file changed, 1 deletion(-) diff --git a/configure b/configure index 4f17cf8..cba81af 100755 --- a/configure +++ b/configure @@ -306,7 +306,6 @@ CYGWIN*) fi fi fi - output_sym "CONFIG_LITTLE_ENDIAN" if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then output_sym "CONFIG_32BIT" else -- 2.9.3