diff options
author | midipix <writeonce@midipix.org> | 2017-10-19 19:40:40 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-10-19 19:40:40 -0400 |
commit | cbdcdcdf4cf213cafa2dccba2f537ac2d8aa3cc5 (patch) | |
tree | 638c036e7190c05093ee61cf8634052f667409fb /crt | |
parent | 234f06285076f6a57bfa7f9c1edb40be25dbe681 (diff) | |
download | mmglue-cbdcdcdf4cf213cafa2dccba2f537ac2d8aa3cc5.tar.bz2 mmglue-cbdcdcdf4cf213cafa2dccba2f537ac2d8aa3cc5.tar.xz |
ldso: static executables now set the application type (default/standalone).
Diffstat (limited to 'crt')
-rw-r--r-- | crt/nt32/Scrtldso.c | 3 | ||||
-rw-r--r-- | crt/nt32/Scrtvrfs.c | 3 | ||||
-rw-r--r-- | crt/nt64/Scrtldso.c | 3 | ||||
-rw-r--r-- | crt/nt64/Scrtvrfs.c | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/crt/nt32/Scrtldso.c b/crt/nt32/Scrtldso.c new file mode 100644 index 0000000..c3130b8 --- /dev/null +++ b/crt/nt32/Scrtldso.c @@ -0,0 +1,3 @@ +#include "psxglue.h" + +const int __crtopt_ldso = __PSXOPT_LDSO; diff --git a/crt/nt32/Scrtvrfs.c b/crt/nt32/Scrtvrfs.c new file mode 100644 index 0000000..d22d444 --- /dev/null +++ b/crt/nt32/Scrtvrfs.c @@ -0,0 +1,3 @@ +#include "psxglue.h" + +const int __crtopt_vrfs = __PSXOPT_VRFS; diff --git a/crt/nt64/Scrtldso.c b/crt/nt64/Scrtldso.c new file mode 100644 index 0000000..c3130b8 --- /dev/null +++ b/crt/nt64/Scrtldso.c @@ -0,0 +1,3 @@ +#include "psxglue.h" + +const int __crtopt_ldso = __PSXOPT_LDSO; diff --git a/crt/nt64/Scrtvrfs.c b/crt/nt64/Scrtvrfs.c new file mode 100644 index 0000000..d22d444 --- /dev/null +++ b/crt/nt64/Scrtvrfs.c @@ -0,0 +1,3 @@ +#include "psxglue.h" + +const int __crtopt_vrfs = __PSXOPT_VRFS; |