RFR: 8287830: gtest fails to compile after JDK-8287661
Jie Fu
jiefu at openjdk.java.net
Sat Jun 4 05:01:03 UTC 2022
Hi all,
gtest fails to compile when configured with `--with-debug-level=optimized`.
This is because for `optimized` no `PRODUCT` is defined.
ifeq ($(DEBUG_LEVEL), release)
# For hotspot, release builds differ internally between "optimized" and "product"
# in that "optimize" does not define PRODUCT.
ifneq ($(HOTSPOT_DEBUG_LEVEL), optimized)
JVM_CFLAGS_DEBUGLEVEL := -DPRODUCT
endif
And the `test` log tag is only defined for DEBUG versions.
LOG_TAG(table) \
LOG_TAG(task) \
DEBUG_ONLY(LOG_TAG(test)) \
LOG_TAG(thread) \
LOG_TAG(throttle) \
So let's fix it.
Thanks.
Best regards,
Jie
-------------
Commit messages:
- 8287830: gtest fails to compile after JDK-8287661
Changes: https://git.openjdk.java.net/jdk/pull/9029/files
Webrev: https://webrevs.openjdk.java.net/?repo=jdk&pr=9029&range=00
Issue: https://bugs.openjdk.java.net/browse/JDK-8287830
Stats: 3 lines in 1 file changed: 0 ins; 0 del; 3 mod
Patch: https://git.openjdk.java.net/jdk/pull/9029.diff
Fetch: git fetch https://git.openjdk.java.net/jdk pull/9029/head:pull/9029
PR: https://git.openjdk.java.net/jdk/pull/9029
More information about the hotspot-dev
mailing list