diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2003-01-01 10:00:39 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2003-01-01 10:00:39 +0000 |
commit | 353549d7441a2a8fddb4467ee796445e9db30abc (patch) | |
tree | 4c2254b36f5ec6fc0e890f471027fc0be694d6be /winsup/mingw/Makefile.in | |
parent | 4f66b246ba438eae815dc0e8ec0887f064b09aab (diff) | |
download | cygnal-353549d7441a2a8fddb4467ee796445e9db30abc.tar.gz cygnal-353549d7441a2a8fddb4467ee796445e9db30abc.tar.bz2 cygnal-353549d7441a2a8fddb4467ee796445e9db30abc.zip |
2003-01-01 Danny Smith <dannysmith@users.sourceforge.net>
* pseudo-reloc.c (do_pseudo_reloc): Make static.
* pseudo-reloc-list.c: New file.
* crt1.c (_pei386_runtime_relocator): Declare.
(__mingw_CRTStartup): Call it.
* dllcrt1.c (_pei386_runtime_relocator): Declare.
(DllMainCRTStartup): Call it.
* Makefile.in: Add pseudo-reloc.o pseude-reloc-list.o to
libmingw32.a.
2003-01-01 Egor Duda <deo@logos-m.ru>
* pseudo-reloc.c: New file.
Diffstat (limited to 'winsup/mingw/Makefile.in')
-rw-r--r-- | winsup/mingw/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/winsup/mingw/Makefile.in b/winsup/mingw/Makefile.in index 6b1fe8e8b..7b6bf6512 100644 --- a/winsup/mingw/Makefile.in +++ b/winsup/mingw/Makefile.in @@ -150,7 +150,8 @@ FLAGS_TO_PASS:=\ CRT0S = crt1.o dllcrt1.o crt2.o dllcrt2.o CRT_noglob.o crtmt.o crtst.o \ CRT_fp8.o CRT_fp10.o txtmode.o binmode.o MINGW_OBJS = CRTglob.o CRTfmode.o CRTinit.o dllmain.o gccmain.o \ - main.o crtst.o mthr_stub.o CRT_fp10.o txtmode.o + main.o crtst.o mthr_stub.o CRT_fp10.o txtmode.o \ + pseudo-reloc.o pseudo-reloc-list.o MOLD_OBJS = ctype_old.o string_old.o LIBS = libcrtdll.a libmsvcrt.a libmsvcrt20.a libmsvcrt40.a libmingw32.a \ @@ -164,7 +165,9 @@ crt1.c crtdll.def crtmt.c crtst.c ctype_old.c dllcrt1.c dllmain.c \ gccmain.c init.c install-sh jamfile main.c mkinstalldirs moldname-crtdll.def \ moldname-msvcrt.def moldname.def moldname.def.in msvcrt.def msvcrt20.def \ msvcrt40.def mthr.c mthr_init.c mthr_stub.c readme.txt string_old.c \ -CRT_fp8.c CRT_fp10.c test_headers.c txtmode.c binmode.c +CRT_fp8.c CRT_fp10.c test_headers.c txtmode.c binmode.c pseudo-reloc.c \ +pseudo-reloc-list.c + all_dlls_host = @all_dlls_host@ install_dlls_host = @install_dlls_host@ |