Skip to content

Instantly share code, notes, and snippets.

@X547
Last active May 22, 2022 14:19
Show Gist options
  • Save X547/6dd7cd16954c94a354f87f4867ab0bbe to your computer and use it in GitHub Desktop.
Save X547/6dd7cd16954c94a354f87f4867ab0bbe to your computer and use it in GitHub Desktop.
Haiku libgcc_s.so.1 stub
#!sh
set -e
gcc --shared libgcc.c -Wl,--version-script=libgcc.ver -o lib/libgcc_s.so.1
// empty file
GCC_3.0 {
};
GCC_3.3 {
} GCC_3.0;
GCC_3.3.1 {
} GCC_3.3;
GCC_3.4 {
} GCC_3.3.1;
GCC_3.4.2 {
} GCC_3.4;
GCC_3.4.4 {
} GCC_3.4.2;
GCC_4.0.0 {
} GCC_3.4.4;
GCC_4.2.0 {
} GCC_4.0.0;
GCC_4.3.0 {
} GCC_4.2.0;
GCC_4.5.0 {
} GCC_4.3.0;
GCC_4.7.0 {
} GCC_4.5.0;
GCC_7.0.0 {
} GCC_4.7.0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment