OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.2 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../gcc/gcc47-libitm-pr52695-workaround.patch
  5. # Copyright (C) 2012 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. Description: Workaround to fix building on x86 systems
  17. http://gcc.gnu.org/PR52695
  18. --- a/libitm/config/x86/target.h
  19. +++ b/libitm/config/x86/target.h
  20. @@ -69,16 +69,4 @@
  21. } // namespace GTM
  22. // We'll be using some of the cpu builtins, and their associated types.
  23. -#ifndef __cplusplus
  24. -/* ??? It's broken for C++. */
  25. #include <x86intrin.h>
  26. -#else
  27. -# ifdef __SSE2__
  28. -# include <emmintrin.h>
  29. -# elif defined(__SSE__)
  30. -# include <xmmintrin.h>
  31. -# endif
  32. -# ifdef __AVX__
  33. -# include <immintrin.h>
  34. -# endif
  35. -#endif