mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Hack around incompatible pointer warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116671 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
af81235ef9
commit
cb2caf7380
@ -64,7 +64,11 @@ int main(int argc, char** argv) {
|
||||
memcpy((char **)Args+2, argv+1, sizeof(char*)*argc);
|
||||
|
||||
/* Run the JIT. */
|
||||
execvp(Interp, Args);
|
||||
#ifndef _WIN32
|
||||
execvp(Interp, (char **)Args); /* POSIX execvp takes a char *const[]. */
|
||||
#else
|
||||
execvp(Interp, Args); /* windows execvp takes a const char *const *. */
|
||||
#endif
|
||||
/* if _execv returns, the JIT could not be started. */
|
||||
fprintf(stderr, "Could not execute the LLVM JIT. Either add 'lli' to your"
|
||||
" path, or set the\ninterpreter you want to use in the LLVMINTERP "
|
||||
|
Loading…
Reference in New Issue
Block a user