diff options
author | Mike Pall <mike> | 2011-06-14 16:44:20 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2011-06-14 16:44:20 +0200 |
commit | 3d1563524f3b6bc2313ff948efa8a6d3a45c11a3 (patch) | |
tree | 3ccf362fe892b54f00d693e9b0246c5dea28527a /src/buildvm_x64.h | |
parent | 9cf2cd2a1177ea7529890e6004d94fb092a7c92a (diff) | |
download | luajit-3d1563524f3b6bc2313ff948efa8a6d3a45c11a3.tar.gz luajit-3d1563524f3b6bc2313ff948efa8a6d3a45c11a3.tar.bz2 luajit-3d1563524f3b6bc2313ff948efa8a6d3a45c11a3.zip |
More fixes for the Solaris/x86 build. Thanks to Will Metcalf.
Diffstat (limited to 'src/buildvm_x64.h')
-rw-r--r-- | src/buildvm_x64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildvm_x64.h b/src/buildvm_x64.h index 6fe46d9f..fcff6db3 100644 --- a/src/buildvm_x64.h +++ b/src/buildvm_x64.h | |||
@@ -3062,7 +3062,7 @@ static void emit_asm_debug(BuildCtx *ctx) | |||
3062 | #endif | 3062 | #endif |
3063 | "\t.align " SZPTR "\n" | 3063 | "\t.align " SZPTR "\n" |
3064 | ".LEFDE0:\n\n", (int)ctx->codesz, CFRAME_SIZE); | 3064 | ".LEFDE0:\n\n", (int)ctx->codesz, CFRAME_SIZE); |
3065 | #ifdef __solaris__ | 3065 | #if (defined(__sun__) && defined(__svr4__)) || defined(__solaris_) |
3066 | fprintf(ctx->fp, "\t.section .eh_frame,\"aw\",@progbits\n"); | 3066 | fprintf(ctx->fp, "\t.section .eh_frame,\"aw\",@progbits\n"); |
3067 | #else | 3067 | #else |
3068 | fprintf(ctx->fp, "\t.section .eh_frame,\"a\",@progbits\n"); | 3068 | fprintf(ctx->fp, "\t.section .eh_frame,\"a\",@progbits\n"); |