summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2013-04-26 12:18:41 +0200
committerNicholas Clark <nick@ccl4.org>2013-05-03 13:35:15 +0200
commitc7627e6d4346964cad693419f41c942591ebaf35 (patch)
treed065cc489af9e206f6352aa6a089c4824f574c0e /perl.h
parent4f650b80ec9c5c9641951c5c41c2a5ac37012b7d (diff)
downloadperl-c7627e6d4346964cad693419f41c942591ebaf35.tar.gz
If PERL_NO_INLINE_FUNCTIONS is defined, don't include "inline.h"
This permits test code to include the perl headers for definitions without creating a link dependency on the perl library (which may not exist yet). Some of the static inline functions in inline.h reference functions in the perl object files, and some compilers aren't smart enough to eliminate unused static inline functions, hence including the inline.h in probe code can cause link errors even though the probe code uses none of the functions it declares. When probing, a failed link is taken as meaning that the probed-for function is not present, as the assumption is that the link fails because of it. Hence other causes of link failures cause the probing code to generate incorrect results, and action (and bugs) at a distance.
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h17
1 files changed, 15 insertions, 2 deletions
diff --git a/perl.h b/perl.h
index 5639f1cb74..89f4c98904 100644
--- a/perl.h
+++ b/perl.h
@@ -5239,8 +5239,21 @@ EXTCONST bool PL_valid_types_NV_set[];
#endif
-/* Static inline funcs that depend on includes and declarations above */
-#include "inline.h"
+#ifndef PERL_NO_INLINE_FUNCTIONS
+/* Static inline funcs that depend on includes and declarations above.
+ Some of these reference functions in the perl object files, and some
+ compilers aren't smart enough to eliminate unused static inline
+ functions, so including this file in source code can cause link errors
+ even if the source code uses none of the functions. Hence including these
+ can be be suppressed by setting PERL_NO_INLINE_FUNCTIONS. Doing this will
+ (obviously) result in unworkable XS code, but allows simple probing code
+ to continue to work, because it permits tests to include the perl headers
+ for definitions without creating a link dependency on the perl library
+ (which may not exist yet).
+*/
+
+# include "inline.h"
+#endif
#include "overload.h"