mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
v.gen.c: fix v examples/hello_world.v
on FreeBSD
This commit is contained in:
parent
8f4fe61381
commit
d07a96ede8
@ -5879,7 +5879,8 @@ fn (mut g Gen) write_init_function() {
|
|||||||
// ___argv is declared as voidptr here, because that unifies the windows/unix logic
|
// ___argv is declared as voidptr here, because that unifies the windows/unix logic
|
||||||
g.writeln('void _vinit(int ___argc, voidptr ___argv) {')
|
g.writeln('void _vinit(int ___argc, voidptr ___argv) {')
|
||||||
|
|
||||||
g.writeln('#if __STDC_HOSTED__ == 1\n\tsignal(SIGSEGV, v_segmentation_fault_handler);\n#endif')
|
// 11 is SIGSEGV. It is hardcoded here, to avoid FreeBSD compilation errors for trivial examples.
|
||||||
|
g.writeln('#if __STDC_HOSTED__ == 1\n\tsignal(11, v_segmentation_fault_handler);\n#endif')
|
||||||
if g.pref.prealloc {
|
if g.pref.prealloc {
|
||||||
g.writeln('prealloc_vinit();')
|
g.writeln('prealloc_vinit();')
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user