|
|
|
|
|
by nulltrace
99 days ago
|
|
Those three flags cover most of it. One gotcha: -fno-exceptions makes `new` return nullptr instead of throwing, so if any library code expects exceptions you get silent corruption. We added -fcheck-new to catch that. Also -nostdlib means no global constructors run, so static objects with nontrivial ctors need you to call __libc_init_array yourself. |
|