Skip to content

Commit b712af7

Browse files
committed
src: fix NODE_DEPRECATED macro with old compilers
The `__attribute__((deprecated("warning")))` macro didn't exist until gcc 4.5 and clang 2.9. While io.js does not build with compilers that old, add-ons do. Let's make src/node.h compatible with such compilers, it's a public header. PR-URL: #1626 Refs: #1619 Reviewed-By: Rod Vagg <[email protected]> Reviewed-By: Trevor Norris <[email protected]>
1 parent 71dc715 commit b712af7

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

src/node.h

+23-4
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,33 @@
4242
#include "v8.h" // NOLINT(build/include_order)
4343
#include "node_version.h" // NODE_MODULE_VERSION
4444

45-
#if defined(__GNUC__)
46-
# define NODE_DEPRECATED(message, declarator) \
45+
#define IOJS_MAKE_VERSION(major, minor, patch) \
46+
((major) * 0x1000 + (minor) * 0x100 + (patch))
47+
48+
#ifdef __clang__
49+
# define IOJS_CLANG_AT_LEAST(major, minor, patch) \
50+
(IOJS_MAKE_VERSION(major, minor, patch) <= \
51+
IOJS_MAKE_VERSION(__clang_major__, __clang_minor__, __clang_patchlevel__))
52+
#else
53+
# define IOJS_CLANG_AT_LEAST(major, minor, patch) (0)
54+
#endif
55+
56+
#ifdef __GNUC__
57+
# define IOJS_GNUC_AT_LEAST(major, minor, patch) \
58+
(IOJS_MAKE_VERSION(major, minor, patch) <= \
59+
IOJS_MAKE_VERSION(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__))
60+
#else
61+
# define IOJS_GNUC_AT_LEAST(major, minor, patch) (0)
62+
#endif
63+
64+
#if IOJS_CLANG_AT_LEAST(2, 9, 0) || IOJS_GNUC_AT_LEAST(4, 5, 0)
65+
# define NODE_DEPRECATED(message, declarator) \
4766
__attribute__((deprecated(message))) declarator
4867
#elif defined(_MSC_VER)
49-
# define NODE_DEPRECATED(message, declarator) \
68+
# define NODE_DEPRECATED(message, declarator) \
5069
__declspec(deprecated) declarator
5170
#else
52-
# define NODE_DEPRECATED(message, declarator) \
71+
# define NODE_DEPRECATED(message, declarator) \
5372
declarator
5473
#endif
5574

0 commit comments

Comments
 (0)