From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7680 invoked by alias); 27 Oct 2011 00:55:25 -0000 Received: (qmail 7659 invoked by uid 22791); 27 Oct 2011 00:55:23 -0000 X-SWARE-Spam-Status: No, hits=-2.7 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-iy0-f169.google.com (HELO mail-iy0-f169.google.com) (209.85.210.169) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 27 Oct 2011 00:55:07 +0000 Received: by iagf6 with SMTP id f6so3240663iag.0 for ; Wed, 26 Oct 2011 17:55:06 -0700 (PDT) Received: by 10.42.154.132 with SMTP id q4mr8892736icw.54.1319676906149; Wed, 26 Oct 2011 17:55:06 -0700 (PDT) Received: from [222.205.27.173] ([222.205.27.173]) by mx.google.com with ESMTPS id ge16sm5695382ibb.2.2011.10.26.17.55.02 (version=SSLv3 cipher=OTHER); Wed, 26 Oct 2011 17:55:05 -0700 (PDT) Message-ID: <4EA8AA90.40806@gmail.com> Date: Thu, 27 Oct 2011 02:31:00 -0000 From: Asmwarrior User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.19) Gecko/20081209 Thunderbird/2.0.0.19 Mnenhy/0.7.6.0 MIME-Version: 1.0 To: Pedro Alves CC: gdb@sourceware.org, MinGW Users List , Chris Sutcliffe , Xun Xun Subject: Re: gdb (gdbserver.exe) build problem under msys References: <4EA7FCF2.7050402@gmail.com> <201110261536.18038.pedro@codesourcery.com> In-Reply-To: <201110261536.18038.pedro@codesourcery.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2011-10/txt/msg00191.txt.bz2 The strange thing is that at the bottom of the file: build\gdb\gdbserver\config.log, there are some thing like: ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define PACKAGE_STRING "" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_UNISTD_H 1 #define __EXTENSIONS__ 1 #define _ALL_SOURCE 1 #define _GNU_SOURCE 1 #define _POSIX_PTHREAD_SEMANTICS 1 #define _TANDEM_SOURCE 1 #define STDC_HEADERS 1 #define HAVE_DIRENT_H 1 #define HAVE_ALLOCA 1 #define HAVE_STRING_H 1 #define HAVE_STDLIB_H 1 #define HAVE_UNISTD_H 1 #define HAVE_ERRNO_H 1 #define HAVE_FCNTL_H 1 #define HAVE_SIGNAL_H 1 #define HAVE_SYS_FILE_H 1 #define HAVE_MALLOC_H 1 #define HAVE_VSNPRINTF 1 #define HAVE_ERRNO 1 #define HAVE_DECL_STRERROR 1 #define HAVE_DECL_PERROR 1 #define HAVE_DECL_MEMMEM 0 #define HAVE_DECL_VASPRINTF 0 #define HAVE_DECL_VSNPRINTF 1 #define PKGVERSION "(GDB) " #define REPORT_BUGS_TO "" #define USE_WIN32API 1 #define HAVE_LIBDL 1 #define USE_XML 1 #define HAVE_SYNC_BUILTINS 1 #define HAVE_DECL_ADDR_NO_RANDOMIZE 0 configure: exit 0 So, the value: USE_WIN32API is defined. But I'm not sure why the generated config.h was not respect the value in config.log. asmwarrior