summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-14 16:58:17 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-14 16:58:17 +0100
commit6bf3f222bbbd1adec7f85a954dc1aee146259894 (patch)
treee71ea5257c739c963fd75030c58593298582ab80 /Makefile
parentab98c70a98e860f4cce0332d7164077cffa51b30 (diff)
fixed magic method documentation, added comment in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 734590b..32fd0b0 100644
--- a/Makefile
+++ b/Makefile
@@ -80,8 +80,11 @@ COMPILER_FLAGS = -Wall -c -I. -I${PHP_DIR} -I${PHP_DIR}/main -I${PHP_DIR}/ext
# Just like the compiler, the linker can have flags too. The default flag
# is probably the only one you need.
#
+# Are you compiling on OSX? You may have to append the option "-undefined dynamic_lookup"
+# to the linker flags
+#
-LINKER_FLAGS = -shared
+LINKER_FLAGS = -shared `php-config --ldflags`
#