aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorRoberto I <roberto@inf.puc-rio.br>2025-10-18 10:30:12 -0300
committerRoberto I <roberto@inf.puc-rio.br>2025-10-18 10:30:12 -0300
commit26755cad99cd2a362a3f149114a2e7f05928db0a (patch)
tree69e1b3c18a6871b6481a012d3ac75408f1ac69b2 /makefile
parentb352217b8498a5ed8f6c954b3da365fcbb89751f (diff)
downloadlua-26755cad99cd2a362a3f149114a2e7f05928db0a.tar.gz
lua-26755cad99cd2a362a3f149114a2e7f05928db0a.tar.bz2
lua-26755cad99cd2a362a3f149114a2e7f05928db0a.zip
Added "attribute internal" to __MACH__ platforms
Also, makefile does not add compiling options (LOCAL) to linker flags (MYLDFLAGS).
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 2a8ca489..8674519f 100644
--- a/makefile
+++ b/makefile
@@ -72,7 +72,7 @@ LOCAL = $(TESTS) $(CWARNS)
72# For C89, "-std=c89 -DLUA_USE_C89" 72# For C89, "-std=c89 -DLUA_USE_C89"
73# Note that Linux/Posix options are not compatible with C89 73# Note that Linux/Posix options are not compatible with C89
74MYCFLAGS= $(LOCAL) -std=c99 -DLUA_USE_LINUX 74MYCFLAGS= $(LOCAL) -std=c99 -DLUA_USE_LINUX
75MYLDFLAGS= $(LOCAL) -Wl,-E 75MYLDFLAGS= -Wl,-E
76MYLIBS= -ldl 76MYLIBS= -ldl
77 77
78 78