Created
May 1, 2014 14:59
-
-
Save ArchRobison/a7c4cf396c5332a4ddd2 to your computer and use it in GitHub Desktop.
Patch to Julia sources to quiet Intel(R) VTune(TM) Amplifier warning about "sigal stack".
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/src/init.c | |
| +++ b/src/init.c | |
| @@ -64,6 +64,9 @@ extern BOOL (WINAPI *hSymRefreshModuleList)(HANDLE); | |
| #include <sched.h> // for setting CPU affinity | |
| #endif | |
| +#undef SIGSTKSZ | |
| +#define SIGSTKSZ (64*1024) | |
| + | |
| char *julia_home = NULL; | |
| jl_compileropts_t jl_compileropts = { NULL, // build_path | |
| 0, // code_coverage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment