diff --git a/runtime/internal/memory.d b/runtime/internal/memory.d index bc730cdf..3afc362c 100644 --- a/runtime/internal/memory.d +++ b/runtime/internal/memory.d @@ -87,7 +87,8 @@ extern (C) void* rt_stackBottom() } else version( darwin ) { - static assert( false, "darwin not supported" ); + // darwin has a fixed stack bottom + return cast(void*) 0xc0000000; } else {