emscripten-core / emscripten-core/emscripten

[feature request] Rename symbols ("--redefine-sym") or alter the binding of a symbol in wasm-ld (c.f end of issue)

オープン
#12,167 コメント 33 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
C++
スター
27.6k
フォーク
3.6k
平均マージ
1日 6時間
マージ済み PR(30日)
109

説明

**ORIGINAL ISSUE TITLE**: Duplicate symbols when building a busybox-like tool
I'm building a xetex+dvipdfmx busybox-like two-in-one executable with Emscripten. I redefined names of main functions using compiler `-Dmain=...` argument.

I have:
```
libxetex.a
someobjectfile.o jpegimage.o oldxetexmain.o (contains busymain_xetex)

libdvidpfmx.a
someotherobjectfile.o jpegimage.o main.o olddvipdfmxmain.o (contains busymain_dvipdfmx)
```

Both `jpegimage.o` functions are used in `someobjectfile.o`/`someotherobjectfile.o` and export same-named symbols which causes duplicate symbols. Unfortunately the two copies of jpegimage.o are not guaranteed to be exactly same.

At the end of the day I'm interested to only link to `busymain_*` functions and hide all other symbols. Is there a way with Emscripten/llvm-wasm to postproc the static library `*.a` files and hide all unnecessary symbols prior to linking to the final `main.c`?

```cpp
/* main.c */

#include

extern int busymain_xetex(int argc, char* argv[]);
extern int busymain_dvipdfmx(int argc, char* argv[]);

int main(int argc, char* argv[])
{
if(strcmp("xetex", argv[1]) == 0)
return busymain_xetex(argc - 1, argv + 1);
else
return busymain_dvipdfmx(argc - 1, argv + 1);
}
```

Thank you!

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。