Skip to content
Snippets Groups Projects
Commit 214a3766 authored by Raymond Toy's avatar Raymond Toy
Browse files

Load up initial_function with the correct value for Darwin/ppc if the

builtin_image_flag is set.
parent 908514c0
No related branches found
No related tags found
No related merge requests found
...@@ -470,7 +470,7 @@ main(int argc, const char *argv[], const char *envp[]) ...@@ -470,7 +470,7 @@ main(int argc, const char *argv[], const char *envp[])
lispobj initial_function = 0; lispobj initial_function = 0;
if (builtin_image_flag != 0) { if (builtin_image_flag != 0) {
#if defined(SOLARIS) || (defined(i386) && (defined(__linux__) || defined(DARWIN) || defined(__FreeBSD__) || defined(__NetBSD__))) #if defined(SOLARIS) || defined(DARWIN) || (defined(i386) && (defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)))
initial_function = (lispobj) initial_function_addr; initial_function = (lispobj) initial_function_addr;
#else #else
initial_function = (lispobj) & initial_function_addr; initial_function = (lispobj) & initial_function_addr;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment