summaryrefslogtreecommitdiff
path: root/devel/intel-graphics-compiler/files/patch-alloca
blob: 7d7ee7e9195c6954eee7aa486a6476d6a05bbcac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<alloca.h> is implicitly included by <stdlib.h> on Linux

In file included from visa/iga/IGAExe/iga_main.cpp:26:
In file included from visa/iga/IGAExe/iga_main.hpp:33:
In file included from visa/iga/IGAExe/../IGALibrary/api/igax.hpp:40:
/usr/include/malloc.h:3:2: error: "<malloc.h> has been replaced by <stdlib.h>"
#error "<malloc.h> has been replaced by <stdlib.h>"
 ^

visa/iga/IGALibrary/strings.cpp:41:10: fatal error: 'alloca.h' file not found
#include <alloca.h> /* for alloca */
         ^~~~~~~~~~

--- visa/iga/IGALibrary/api/igax.hpp.orig	2021-01-16 00:15:28 UTC
+++ visa/iga/IGALibrary/api/igax.hpp
@@ -34,10 +34,10 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 #include "iga_bxml_ops.hpp"
 
 #include <cstdarg>
+#include <cstdlib>
 #include <cstring>
 #include <exception>
 #include <iomanip>
-#include <malloc.h>
 #include <ostream>
 #include <sstream>
 #include <string>
--- visa/iga/IGALibrary/strings.cpp.orig	2019-11-27 01:05:20 UTC
+++ visa/iga/IGALibrary/strings.cpp
@@ -38,7 +38,7 @@ using namespace iga;
 #include <Windows.h>
 #include <malloc.h> /* for alloca */
 #else
-#include <alloca.h> /* for alloca */
+#include <stdlib.h> /* for alloca */
 #endif
 
 std::string iga::format(const char *pat, ...)