mirror of
https://github.com/dlang/phobos.git
synced 2025-04-30 07:00:37 +03:00
fixe makefile for 64 bits
This commit is contained in:
parent
df16d2a797
commit
f8b01a88a5
2 changed files with 79 additions and 79 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue