diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-16 17:02:13 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-16 17:02:13 -0300 |
commit | 576bded5137babb9c669ccff5aedf19ed65a7598 (patch) | |
tree | 567f9bde5f01614d885081221c3db3968b869845 /makefile | |
parent | ecc7769de2f3fb898235759cda9ae822a6168341 (diff) | |
download | lua-576bded5137babb9c669ccff5aedf19ed65a7598.tar.gz lua-576bded5137babb9c669ccff5aedf19ed65a7598.tar.bz2 lua-576bded5137babb9c669ccff5aedf19ed65a7598.zip |
details
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | # | 1 | # |
2 | ## $Id: makefile,v 1.35 2002/03/18 18:18:35 roberto Exp roberto $ | 2 | ## $Id: makefile,v 1.36 2002/08/06 19:12:54 roberto Exp roberto $ |
3 | ## Makefile | 3 | ## Makefile |
4 | ## See Copyright Notice in lua.h | 4 | ## See Copyright Notice in lua.h |
5 | # | 5 | # |
@@ -7,7 +7,7 @@ | |||
7 | 7 | ||
8 | #CONFIGURATION | 8 | #CONFIGURATION |
9 | 9 | ||
10 | # define (undefine) POPEN if your system (does not) support piped I/O | 10 | # define (undefine) USE_POPEN if your system (does not) support piped I/O |
11 | # | 11 | # |
12 | # define (undefine) _POSIX_SOURCE if your system is (not) POSIX compliant | 12 | # define (undefine) _POSIX_SOURCE if your system is (not) POSIX compliant |
13 | # | 13 | # |
@@ -21,7 +21,7 @@ OPTIMIZE = -O2 \ | |||
21 | -D'lua_number2int(i,d)=__asm__("fldl %1\nfistpl %0":"=m"(i):"m"(d))' \ | 21 | -D'lua_number2int(i,d)=__asm__("fldl %1\nfistpl %0":"=m"(i):"m"(d))' \ |
22 | -fomit-frame-pointer | 22 | -fomit-frame-pointer |
23 | 23 | ||
24 | CONFIG = -D_POSIX_SOURCE -DPOPEN $(DEBUG) $(OPTIMIZE) | 24 | CONFIG = -D_POSIX_SOURCE -DUSE_POPEN $(DEBUG) $(OPTIMIZE) |
25 | 25 | ||
26 | 26 | ||
27 | 27 | ||