fixe makefile for 64 bits

This commit is contained in:
Walter Bright 2009-11-13 02:31:11 +00:00
parent df16d2a797
commit f8b01a88a5
2 changed files with 79 additions and 79 deletions

View file

@ -64,10 +64,10 @@ zlib.a: $(OBJS)
ar -r $@ $(OBJS)
example: example.o zlib.a
$(CC) -o $@ example.o zlib.a -g
$(CC) $(CFLAGS) -o $@ example.o zlib.a -g
minigzip: minigzip.o zlib.a
$(CC) -o $@ minigzip.o zlib.a -g
$(CC) $(CFLAGS) -o $@ minigzip.o zlib.a -g
test: example minigzip
./example

View file

@ -49,7 +49,7 @@
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*/
module(system) std.math;
module std.math;
//debug=math; // uncomment to turn on debugging printf's