-
Bug
-
Resolution: Fixed
-
P4
-
8u40
After the fix for RT-39039, the build produces a lot of warnings:
Exports.cpp
...\rt\modules\fxpackager\src\main\native\library\common\Platform.h(86) : warning C4005: 'DEBUG' : macro redefinition
command-line arguments : see previous definition of 'DEBUG'
Glass uses the following stategy:
#if defined(_DEBUG) || defined(DEBUG)
...
Prism-D3d uses this:
#if defined _DEBUG && !defined DEBUG
#define DEBUG
#endif
Exports.cpp
...\rt\modules\fxpackager\src\main\native\library\common\Platform.h(86) : warning C4005: 'DEBUG' : macro redefinition
command-line arguments : see previous definition of 'DEBUG'
Glass uses the following stategy:
#if defined(_DEBUG) || defined(DEBUG)
...
Prism-D3d uses this:
#if defined _DEBUG && !defined DEBUG
#define DEBUG
#endif
- relates to
-
JDK-8092896 "gradle -PCONF=DebugNative" doesn't produce debugging symbols for packager
- Resolved