Chopper
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
Functions
Variables
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
w
~
Functions
b
c
e
f
g
h
i
o
p
r
s
t
w
~
Variables
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
w
Typedefs
Enumerations
Related Functions
Files
File List
File Members
All
Functions
Typedefs
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
include
chopper
workarounds.hpp
Go to the documentation of this file.
1
// ---------------------------------------------------------------------------------------------------
2
// Copyright (c) 2006-2023, Knut Reinert & Freie Universität Berlin
3
// Copyright (c) 2016-2023, Knut Reinert & MPI für molekulare Genetik
4
// This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
5
// shipped with this file and also available at: https://github.com/seqan/chopper/blob/main/LICENSE.md
6
// ---------------------------------------------------------------------------------------------------
7
8
#pragma once
9
10
#if defined(__GNUC__) && !defined(__llvm__) && !defined(__INTEL_COMPILER)
11
# define CHOPPER_COMPILER_IS_GCC 1
12
#else
13
# define CHOPPER_COMPILER_IS_GCC 0
14
#endif
15
19
#ifndef CHOPPER_WORKAROUND_GCC_BOGUS_MEMCPY
20
# if CHOPPER_COMPILER_IS_GCC && (__GNUC__ == 12)
21
# define CHOPPER_WORKAROUND_GCC_BOGUS_MEMCPY 1
22
# else
23
# define CHOPPER_WORKAROUND_GCC_BOGUS_MEMCPY 0
24
# endif
25
#endif
26
29
#ifndef CHOPPER_WORKAROUND_GCC_BOGUS_MEMMOV
30
# if CHOPPER_COMPILER_IS_GCC && (__GNUC__ == 13)
31
# define CHOPPER_WORKAROUND_GCC_BOGUS_MEMMOV 1
32
# else
33
# define CHOPPER_WORKAROUND_GCC_BOGUS_MEMMOV 0
34
# endif
35
#endif
Generated by
1.9.4