We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0f183e commit d2d8823Copy full SHA for d2d8823
meson.build
@@ -25,6 +25,11 @@ project(
25
]
26
)
27
28
+# TODO: When compiling a .pyx, we need to find a way to remove all the gdptrs_* symbols
29
+# (declared as extern in `gdptrs.pxd`) that somehow end up in the final shared library
30
+# even if they are not used!
31
+# add_global_arguments('-ffunction-sections', '-fdata-sections', language: ['c'])
32
+# add_project_link_arguments('-Wl,--gc-sections', language: ['c'])
33
34
host_platform = '@0@-@1@'.format(host_machine.system(), host_machine.cpu_family())
35
if (
0 commit comments