Skip to content

Commit 10ee76f

Browse files
committed
Slight modifications to Makefiles
1 parent 85b8102 commit 10ee76f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
BASE = dbasic
44
DMD = gdc
5-
DMDFLAGS = --release -O
5+
DMDFLAGS = -Wall --release -O
66
BISON = bison
77
OBJS = Parser.o LexerImpl.o SymbolTable.o Node.o Expr.o Print.o Mat.o Driver.o
88
AUTOGEN = Parser.d

Makefile.llvm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
BASE = dbasic
55
DMD = ldc
6-
DMDFLAGS = --release -O
6+
DMDFLAGS = -wi --release -O
77
BISON = bison
88
OBJS = Parser.o LexerImpl.o SymbolTable.o Node.o Expr.o Print.o Mat.o Driver.o
99
AUTOGEN = Parser.d

Makefile.nmake

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# note: place win_bison.exe in the same directory as this makefile or specify path here
66
Bison = win_bison.exe
77
DMD = dmd.exe
8-
DMDFlags = -release -O
8+
DMDFlags = -release -O # -m64
99

1010
Target = dbasic.exe
1111
Objs = Parser.obj LexerImpl.obj SymbolTable.obj Node.obj Expr.obj Print.obj Mat.obj Driver.obj

0 commit comments

Comments
 (0)