Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for __GNUC_PREREQ (0.18 sec)

  1. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -   last copied.  */
    -#ifdef __USE_GNU
    -# if !defined _HAVE_STRING_ARCH_mempcpy || defined _FORCE_INLINES
    -#  ifndef _HAVE_STRING_ARCH_mempcpy
    -#   if __GNUC_PREREQ (3, 4)
    -#    define __mempcpy(dest, src, n) __builtin_mempcpy (dest, src, n)
    -#   elif __GNUC_PREREQ (3, 0)
    -#    define __mempcpy(dest, src, n) \
    -  (__extension__ (__builtin_constant_p (src) && __builtin_constant_p (n)      \
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 42.9K bytes
    - Viewed (1)
  2. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

    index d1cb3dd..30482a1 100644
    --- a/misc/sys/cdefs.h
    +++ b/misc/sys/cdefs.h
    @@ -423,4 +423,14 @@
     # endif
     #endif
     
    +/* Undefine (also defined in libc-symbols.h).  */
    +#undef __attribute_copy__
    +#if __GNUC_PREREQ (9, 0)
    +/* Copies attributes from the declaration or type referenced by
    +   the argument.  */
    +# define __attribute_copy__(arg) __attribute__ ((__copy__ (arg)))
    +#else
    +# define __attribute_copy__(arg)
    +#endif
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 8.9K bytes
    - Viewed (0)
Back to top