diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2014-04-21 20:56:10 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2014-04-21 20:56:10 +0000 |
commit | ed5e9e275a170829910561779a936c4cddf209b1 (patch) | |
tree | 5666313a58c006e33b0ec035a53ac5a9b01445d6 /java/openjdk7/files/patch-hotspot-make-bsd-makefiles-gcc.make | |
parent | These ports are no longer used or cared for. (diff) |
Fix build with clang.
Diffstat (limited to 'java/openjdk7/files/patch-hotspot-make-bsd-makefiles-gcc.make')
-rw-r--r-- | java/openjdk7/files/patch-hotspot-make-bsd-makefiles-gcc.make | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/java/openjdk7/files/patch-hotspot-make-bsd-makefiles-gcc.make b/java/openjdk7/files/patch-hotspot-make-bsd-makefiles-gcc.make new file mode 100644 index 000000000000..6e2143ce7601 --- /dev/null +++ b/java/openjdk7/files/patch-hotspot-make-bsd-makefiles-gcc.make @@ -0,0 +1,15 @@ +--- hotspot/make/bsd/makefiles/gcc.make ++++ hotspot/make/bsd/makefiles/gcc.make +@@ -216,8 +216,11 @@ + endif + + # Flags for generating make dependency flags. ++ifeq (,$(findstring clang,$(shell $(CC) -v 2>&1))) ++DEPFLAGS = -fpch-deps ++endif + ifneq ("${CC_VER_MAJOR}", "2") +-DEPFLAGS = -fpch-deps -MMD -MP -MF $(DEP_DIR)/$(@:%=%.d) ++DEPFLAGS += -MMD -MP -MF $(DEP_DIR)/$(@:%=%.d) + endif + + # -DDONT_USE_PRECOMPILED_HEADER will exclude all includes in precompiled.hpp. |