diff options
author | Jack Lloyd <[email protected]> | 2016-10-17 03:11:14 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-10-17 03:11:14 -0400 |
commit | 0b353965a56dabf7528eecf672cc627304dbb8e1 (patch) | |
tree | dedfd4db3cc140f4a4c2fbba8a566742bc735fd2 /src/build-data/buildh.in | |
parent | a816a52612cd8e9cf12bfdccaacc5ce7960b2700 (diff) | |
parent | 8b3bda479efecef760f052cc055d3d6d98bf0637 (diff) |
Merge GH #665 Add IncludeOS target, make filesystem/threads optional
Diffstat (limited to 'src/build-data/buildh.in')
-rw-r--r-- | src/build-data/buildh.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/build-data/buildh.in b/src/build-data/buildh.in index e943973a0..c84698804 100644 --- a/src/build-data/buildh.in +++ b/src/build-data/buildh.in @@ -199,8 +199,15 @@ Each read generates 32 bits of output %{target_compiler_defines} + +#if defined(__GNUG__) || defined(__clang__) + #define BOTAN_FUNC_ISA(isa) __attribute__ ((target(isa))) +#else + #define BOTAN_FUNC_ISA(isa) +#endif + /* -* Compile-time deprecatation warnings +* Compile-time deprecation warnings */ #if !defined(BOTAN_NO_DEPRECATED_WARNINGS) |