Re: [Mingw-w64-public] [PATCH] normalise x86 (i686 vs i386) detection

2017-11-06 Thread Kai Tietz via Mingw-w64-public
Patch is okay. Please commit.
Thanks
Kai

Am 07.11.2017 08:42 schrieb "Martin Storsjö" :

> On Tue, 7 Nov 2017, Martell Malone wrote:
>
> ping. :)
>> I think this is being lost between all the different patches being
>> submitted atm.
>>
>
> The patch looks good to me although I'm not very familiar with those
> areas. Assuming you've tested it, it looks good to me.
>
> // Martin
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Mingw-w64-public mailing list
> Mingw-w64-public@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public


Re: [Mingw-w64-public] [PATCH] normalise x86 (i686 vs i386) detection

2017-11-06 Thread Martin Storsjö

On Tue, 7 Nov 2017, Martell Malone wrote:


ping. :)
I think this is being lost between all the different patches being
submitted atm.


The patch looks good to me although I'm not very familiar with those 
areas. Assuming you've tested it, it looks good to me.


// Martin

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public


Re: [Mingw-w64-public] [PATCH] normalise x86 (i686 vs i386) detection

2017-11-06 Thread Martell Malone
ping. :)
I think this is being lost between all the different patches being
submitted atm.

On Sun, Nov 5, 2017 at 3:07 AM, Martell Malone 
wrote:

> different variations of -march can be passed to the compiler.
> this fixes mingw-w64 when __i686__ is not present.
>
> Please Review.
>
> diff --git a/mingw-w64-headers/crt/_mingw_mac.h b/mingw-w64-headers/crt/_
> mingw_mac.h
> index eeb59c69..115e58a5 100644
> --- a/mingw-w64-headers/crt/_mingw_mac.h
> +++ b/mingw-w64-headers/crt/_mingw_mac.h
> @@ -47,10 +47,10 @@
>  #define _M_IX86 400
>  #  elif defined(__i586__)
>  #define _M_IX86 500
> -#  else
> - /* This gives wrong (600 instead of 300) value if -march=i386 is
> specified
> -  but we cannot check for__i386__ as it is defined for all 32-bit
> CPUs. */
> +#  elif defined(__i686__)
>  #define _M_IX86 600
> +#  else
> +#define _M_IX86 300
>  #  endif
>  #endif /* if defined(_X86_) && !defined(_M_IX86) && !defined(_M_IA64) ...
> */
>
> diff --git a/mingw-w64-libraries/winpthreads/src/thread.c
> b/mingw-w64-libraries/winpthreads/src/thread.c
> index fd213ccf..2e6fe610 100644
> --- a/mingw-w64-libraries/winpthreads/src/thread.c
> +++ b/mingw-w64-libraries/winpthreads/src/thread.c
> @@ -1457,7 +1457,7 @@ pthread_setcanceltype (int type, int *oldtype)
>return 0;
>  }
>
> -#if defined(__i686__)
> +#if defined(__i386__)
>  /* Align ESP on 16-byte boundaries. */
>  #  if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)
>  __attribute__((force_align_arg_pointer))
>
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public


[Mingw-w64-public] [PATCH] normalise x86 (i686 vs i386) detection

2017-11-04 Thread Martell Malone
different variations of -march can be passed to the compiler.
this fixes mingw-w64 when __i686__ is not present.

Please Review.

diff --git a/mingw-w64-headers/crt/_mingw_mac.h
b/mingw-w64-headers/crt/_mingw_mac.h
index eeb59c69..115e58a5 100644
--- a/mingw-w64-headers/crt/_mingw_mac.h
+++ b/mingw-w64-headers/crt/_mingw_mac.h
@@ -47,10 +47,10 @@
 #define _M_IX86 400
 #  elif defined(__i586__)
 #define _M_IX86 500
-#  else
- /* This gives wrong (600 instead of 300) value if -march=i386 is
specified
-  but we cannot check for__i386__ as it is defined for all 32-bit
CPUs. */
+#  elif defined(__i686__)
 #define _M_IX86 600
+#  else
+#define _M_IX86 300
 #  endif
 #endif /* if defined(_X86_) && !defined(_M_IX86) && !defined(_M_IA64) ...
*/

diff --git a/mingw-w64-libraries/winpthreads/src/thread.c
b/mingw-w64-libraries/winpthreads/src/thread.c
index fd213ccf..2e6fe610 100644
--- a/mingw-w64-libraries/winpthreads/src/thread.c
+++ b/mingw-w64-libraries/winpthreads/src/thread.c
@@ -1457,7 +1457,7 @@ pthread_setcanceltype (int type, int *oldtype)
   return 0;
 }

-#if defined(__i686__)
+#if defined(__i386__)
 /* Align ESP on 16-byte boundaries. */
 #  if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)
 __attribute__((force_align_arg_pointer))
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public