Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Patch cleanup #135

Merged
merged 12 commits into from
May 27, 2022
Merged

Patch cleanup #135

merged 12 commits into from
May 27, 2022

Conversation

TheOneric
Copy link
Member

This reduces our library patches to only the pthread-disabling ones.

For the fcstat fontconfig patch to be dropped updating emscripten was also necessary due to a bug in the currently used version. Hoping to avoid emscripten-related changes taking over, I stuck to the last 2.x release instead of updating to 3.x, but even so some cleanup was required.

There are some points I’d like to hear an opinion on before proceeding:

  • If we want to drop the deprecated API instead of surpressing the warnings, I’ll just drop it from this PR and defer dropping to a future patch.
  • Since we only build static libs, the only linking happening (currently) is at the final step. Instead of GLOBAL_LDFLAGS we could also specify LDFLAGS as part of only at the final linking step instead of setting them globally. Not sure what’s better.
  • If (not yet tested) the filesystem gets linked automatically, should we completly remove its flag entirely or keep it for verbosity?

Furthermore, the update introduced one more warning, but I wasn’t sure what to do about it — though everything still seems to work fine.

/emsdk/upstream/emscripten/em++ -Wall -Wno-deprecated -g -O2 -r -s ENVIRONMENT=web,webview,worker -s NO_EXIT_RUNTIME=1 -s MODULARIZE=1 -o subtitlesoctopus.bc SubtitleOctopus.o
em++: warning: generating an executable with an object extension (.bc).  If you meant to build an object file please use `-c, `-r`, or `-shared` [-Wemcc]

However, as one can see -r already is used and was even added explicitly?


Regarding the HarfBuzz "dependency" patch: in the first version of #129 the patch seems to have become unnecessary because both the bootstrap and final FreeType libs were installed into the same DESTDIR, so the old pcfile became automatically available. However, this also means the library files already existed albeit without HarfBuzz support. While this might have worked in a sequential build, this seems prone to race-conditions on full-parallel builds so I'm not in favour of adopting this approach.
As for why just dropping the patch without any changes intially seemed to work for me: I didn't clean before the test so the old harfbuzz-supporting FreeType pc-file was still present in the path. It cannot be dropped without an replacement in a clean build.

@TheOneric
Copy link
Member Author

TheOneric commented Apr 7, 2022

Regarding the -r warning: it even appears when calling em++ -r -o *.bc *.cpp standalone without a compile only step first. Using just the compile -c without any pseudo-linking step solves the issue. With the autotools setup, the better approach for this would have been to tell automake to build a static library instead of declaring to build an executable program with modified linking parameters.
However, most of the configure test are currently ignored and we only target one toolchain anyway, so I replaced the src/ build setup with just one custom Makefile which is shorter than both the current setup and the Meson setup from the initial #129 and also allows us to drop the configuration targets.

There are no emscripten-specific warnings anymore now.

@TheOneric
Copy link
Member Author

Rebased and made a small change regarding the MODULARIZE flag; it is now removed instead of added to global flags.

If you plan to review this and need more time, say so soon and this can wait however long required. Otherwise I'll assume there are no objections and will merge this soon.

The now removed RFC messages in the commits were:

  • src/make: suppress deprecation warnings:
    Or should we just drop the deprecated API?
  • make: split global linker and compile flags:
    Alternatively, do not set LDFLAGS globally only at the final step as this is the only instance of linking (currently at least).
  • make: remove filesystem flags from dependency builds:
    modern emscripten is supposedly able to detect this automatically. If it works, should we also remove it from the final link flags?

@TheOneric TheOneric marked this pull request as ready for review May 21, 2022 17:31
TheOneric added 12 commits May 21, 2022 20:02
We shouldn't need any patches for libass anymore.
It does nothing since we only build static libs.
Wen HarfBuzz-enabled FreeType is built, HarfBuzz gets located via its
pc-file which references FreeType’s pc-file. If there’s no such pc-file
in the search path it errors out.
Add the previously built HarfBuzz-less FreeType’s pc-file to the search
path to avoid this. It has no ill effect on the static lib we build.
We knowingly expose deprecated API.
Future emscripten versions warn if link-only options
are set during compilation.
All builds but brotli already set NO_EXIT_RUNTIME, and in brotli's case
it was probably an oversight for the flag to be missing.
All dependencies, but not the final jso linkage also set MODULARIZE,
but not -s 'EXPORT_NAME="someting"' as emscripten docs suggest should be
done. But since we only use static libs, the final ones are also
actually the only linking occuring, so just remove the flag.
It's a link-only setting and since we only build
static libs only relevant in the final linking step.
This is no longer implied in future emscripten versions.
Freetype upstream made changes to remove the need for our fcstat patch,
but we actually also need to update emscripten as linking to fstatfs is
bugged in our currently used version and will lead to runtime errors.

- Since emscripten 2.0.26 unresolved symbols cause errors at link time
  instead of only at runtime.
- The following commit contained in 2.0.27 fixed fstatfs linking:
    emscripten-core/emscripten@2126d3c
Together with the prior emscripten bump,
this removes the need for the fcstat patch.
Closes: libass#103
We are bound to one toolchain and most results of the
config-time checks were ignored anyway. This is more
concise and doesn't require a configuration step.
The build currently warns about building an executable with an
object-file extension and recommends to use -c, -shared or -r
eventhough we already use -r.
I'm not sure what -r is supposed to do, but -c only compiles and not
links the input which should be exactly what we want here and using -c
gets rid of the warning without any apparent negative effects.
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant