floss.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
For people who care about, support, and build Free, Libre, and Open Source Software (FLOSS).

Administered by:

Server stats:

683
active users

Martin Owens :inkscape:

I'm absolutely stuck on Windows building GResource source into a CPP project.

Is anyone an expert?

The problem is that including the code causes MINGW gcc linker to delete the entire of the rest of the project except for the gresource souce, so it obviously won't link with everything missing.

I have no idea why gnu would choose to destroy everything. I would have preferred a build error.

(it doesn't help I don't have a windows machine)

Help me fedi, you're my only hope!

@doctormo is there any way you can dump the build commands?

Can you make a minimal example project that shows the issue?

@doctormo a really over-the-top way of seeing what's going on would be chattr +i on one of the files before it's deleted.

@voltagex

No. I don't have a windows machine so can only see what it's on the CI.

gitlab.com/inkscape/inkscape/-

There is nothing else to work from at this time. Though lack of tooling is a serious problem.

GitLabinkscape:windows: [7z] (#9492760392) · Jobs · Inkscape / inkscape · GitLabInkscape vector image editor

@doctormo stop me if I become more of a hinderance than a help - I have access to multiple Windows machines, Visual Studio and can install whatever, but I am not a C++ developer.

Where are you seeing that the files are deleted?

@voltagex @doctormo

To explain further, it looks like all symbols from other obj files are not included when including the gresources obj in the linker command. The linker command itself looks totally fine, the only thing that changes is the addition of that particular object file.

@joneuhauser @doctormo I gave it a go and could reproduce the issue. The only thing I can think of is try to come up with a minimal example (dll that exports a function, gresources file) and see if it occurs outside of Inkscape

@doctormo @voltagex I assume inkscape has more source files than just inkscape-main.cpp.obj? The link line only includes that + inkscape.rc.obj, so I suspect your issue is that whatever you're doing to add the resource file to the build overwrote the list of other sources to link.

@doctormo @voltagex …or is the bulk of the code linked into inkscape_base.dll.a, and those are the symbols it's missing?