Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
complex.c is never called
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Apr 4, 2013
1 parent 22ed6ca commit c1e78b8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 124 deletions.
2 changes: 1 addition & 1 deletion posix.mak
Expand Up @@ -90,7 +90,7 @@ SRCS:=$(subst \,/,$(SRCS))
# NOTE: a pre-compiled minit.obj has been provided in dmd for Win32 and
# minit.asm is not used by dmd for Linux

OBJS= $(OBJDIR)/errno_c.o $(OBJDIR)/threadasm.o $(OBJDIR)/complex.o
OBJS= $(OBJDIR)/errno_c.o $(OBJDIR)/threadasm.o

######################## All of'em ##############################

Expand Down
113 changes: 0 additions & 113 deletions src/rt/complex.c

This file was deleted.

7 changes: 2 additions & 5 deletions win32.mak
Expand Up @@ -34,8 +34,8 @@ $(mak\SRCS)
# NOTE: a pre-compiled minit.obj has been provided in dmd for Win32 and
# minit.asm is not used by dmd for Linux

OBJS= errno_c.obj complex.obj src\rt\minit.obj
OBJS_TO_DELETE= errno_c.obj complex.obj
OBJS= errno_c.obj src\rt\minit.obj
OBJS_TO_DELETE= errno_c.obj

######################## Doc .html file generation ##############################

Expand Down Expand Up @@ -438,9 +438,6 @@ $(IMPDIR)\etc\linux\memoryerror.d : src\etc\linux\memoryerror.d
errno_c.obj : src\core\stdc\errno.c
$(CC) -c $(CFLAGS) src\core\stdc\errno.c -oerrno_c.obj

complex.obj : src\rt\complex.c
$(CC) -c $(CFLAGS) src\rt\complex.c

src\rt\minit.obj : src\rt\minit.asm
$(CC) -c $(CFLAGS) src\rt\minit.asm

Expand Down
7 changes: 2 additions & 5 deletions win64.mak
Expand Up @@ -41,8 +41,8 @@ $(mak\SRCS)
# NOTE: a pre-compiled minit.obj has been provided in dmd for Win32 and
# minit.asm is not used by dmd for Linux

OBJS= errno_c.obj complex.obj
OBJS_TO_DELETE= errno_c.obj complex.obj
OBJS= errno_c.obj
OBJS_TO_DELETE= errno_c.obj

######################## Doc .html file generation ##############################

Expand Down Expand Up @@ -445,9 +445,6 @@ $(IMPDIR)\etc\linux\memoryerror.d : src\etc\linux\memoryerror.d
errno_c.obj : src\core\stdc\errno.c
$(CC) -c $(CFLAGS) src\core\stdc\errno.c -Foerrno_c.obj

complex.obj : src\rt\complex.c
$(CC) -c $(CFLAGS) src\rt\complex.c

src\rt\minit.obj : src\rt\minit.asm
$(CC) -c $(CFLAGS) src\rt\minit.asm

Expand Down

0 comments on commit c1e78b8

Please sign in to comment.