author | lancea |
Wed, 20 Jun 2018 16:08:14 -0400 | |
branch | JDK-8188051-branch |
changeset 56798 | 3b438b3fef46 |
parent 49241 | de4b3a04feae |
child 53995 | ecc2bcc3beb0 |
child 56312 | a52bcf4118eb |
child 57159 | 0258a6f7d03f |
permissions | -rw-r--r-- |
12892 | 1 |
# |
49133 | 2 |
# Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved. |
12892 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
10 |
# |
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
49133 | 26 |
################################################################################ |
27 |
||
28 |
default: all |
|
29 |
||
30 |
include $(SPEC) |
|
31 |
include MakeBase.gmk |
|
32 |
include NativeCompilation.gmk |
|
33 |
include ToolsJdk.gmk |
|
34 |
||
35 |
################################################################################ |
|
15149
64054e252871
8004151: build-infra: Generating X11 wrapper offset file is not cross compilable
erikj
parents:
15126
diff
changeset
|
36 |
# This file is responsible for extracting the x11 native struct offsets to |
64054e252871
8004151: build-infra: Generating X11 wrapper offset file is not cross compilable
erikj
parents:
15126
diff
changeset
|
37 |
# the xawt Java library. The tool needs to be run on the os/arch that |
64054e252871
8004151: build-infra: Generating X11 wrapper offset file is not cross compilable
erikj
parents:
15126
diff
changeset
|
38 |
# will host the final jvm, thus the tool cannot be used when cross compiling. |
49133 | 39 |
# |
40 |
# Two versions of the generated offset file, sizes-32.txt and sizes-64.txt are |
|
41 |
# committed into the source code repository. These are the ones used in |
|
42 |
# GensrcX11Wrappers.gmk to generate the Java code during the build. |
|
43 |
################################################################################ |
|
12892 | 44 |
|
49133 | 45 |
ifeq ($(COMPILE_TYPE), cross) |
46 |
$(error It is not possible to update the x11wrappers when cross-compiling) |
|
13702 | 47 |
endif |
12892 | 48 |
|
49133 | 49 |
X11WRAPPERS_OUTPUT := $(SUPPORT_OUTPUTDIR)/x11wrappers |
15149
64054e252871
8004151: build-infra: Generating X11 wrapper offset file is not cross compilable
erikj
parents:
15126
diff
changeset
|
50 |
|
49133 | 51 |
GENSRC_X11WRAPPERS_DATADIR := $(TOPDIR)/make/data/x11wrappergen |
12892 | 52 |
|
49133 | 53 |
BITS := $(OPENJDK_TARGET_CPU_BITS) |
15149
64054e252871
8004151: build-infra: Generating X11 wrapper offset file is not cross compilable
erikj
parents:
15126
diff
changeset
|
54 |
|
49133 | 55 |
# Generate the C code for the program that will output the offset file. |
56 |
$(X11WRAPPERS_OUTPUT)/src/data_generator.c: $(GENSRC_X11WRAPPERS_DATADIR)/xlibtypes.txt $(BUILD_TOOLS_JDK) |
|
57 |
$(call LogInfo, Generating X11 wrapper data generator source code) |
|
58 |
$(call MakeDir, $(@D)) |
|
59 |
$(call ExecuteWithLog, $@, \ |
|
60 |
$(TOOL_WRAPPERGENERATOR) gen_c_source $@ $(GENSRC_X11WRAPPERS_DATADIR)/xlibtypes.txt $(BITS)) |
|
15149
64054e252871
8004151: build-infra: Generating X11 wrapper offset file is not cross compilable
erikj
parents:
15126
diff
changeset
|
61 |
|
49133 | 62 |
DATA_GENERATOR_INCLUDES := \ |
63 |
-I$(TOPDIR)/src/hotspot/share/include \ |
|
64 |
-I$(TOPDIR)/src/hotspot/os/$(HOTSPOT_TARGET_OS_TYPE)/include \ |
|
65 |
-I$(SUPPORT_OUTPUTDIR)/modules_include/java.base \ |
|
66 |
-I$(SUPPORT_OUTPUTDIR)/modules_include/java.base/$(OPENJDK_TARGET_OS_INCLUDE_SUBDIR) \ |
|
67 |
-I$(TOPDIR)/src/java.base/share/native/libjava \ |
|
68 |
-I$(TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/native/libjava \ |
|
69 |
-I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/common/awt \ |
|
70 |
-I$(TOPDIR)/src/java.desktop/share/native/common/awt/debug \ |
|
71 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/awt/image/cvutils \ |
|
72 |
# |
|
17046 | 73 |
|
49133 | 74 |
# Compile the generated C code into an executable. |
75 |
$(eval $(call SetupNativeCompilation, BUILD_DATA_GENERATOR, \ |
|
76 |
PROGRAM := data_generator, \ |
|
77 |
OUTPUT_DIR := $(X11WRAPPERS_OUTPUT)/bin, \ |
|
78 |
EXTRA_FILES := $(X11WRAPPERS_OUTPUT)/src/data_generator.c, \ |
|
79 |
CFLAGS := $(X_CFLAGS) $(DATA_GENERATOR_INCLUDES) $(CFLAGS_JDKEXE), \ |
|
80 |
LDFLAGS := $(LDFLAGS_JDKEXE), \ |
|
49241 | 81 |
LIBS := $(X_LIBS), \ |
49133 | 82 |
OBJECT_DIR := $(X11WRAPPERS_OUTPUT)/objs, \ |
83 |
)) |
|
25859 | 84 |
|
49133 | 85 |
# Run the executable to create the data file. |
86 |
$(GENSRC_X11WRAPPERS_DATADIR)/sizes-$(BITS).txt: $(BUILD_DATA_GENERATOR_TARGET) |
|
87 |
$(call LogInfo, Generating X11 wrapper data files) |
|
35241 | 88 |
$(call MakeDir, $(@D)) |
49133 | 89 |
$(call ExecuteWithLog, $(X11WRAPPERS_OUTPUT)/generation, \ |
90 |
$(BUILD_DATA_GENERATOR_TARGET) | $(SORT) > $@) |
|
91 |
$(ECHO) IMPORTANT: If you update the X11 wrapper data files, they most certainly |
|
92 |
$(ECHO) need to be updated for both 32 and 64 bit platforms. You have now |
|
93 |
$(ECHO) updated them for $(BITS) bit platforms only. |
|
12892 | 94 |
|
49133 | 95 |
TARGETS += $(GENSRC_X11WRAPPERS_DATADIR)/sizes-$(BITS).txt |
96 |
||
97 |
################################################################################ |
|
12892 | 98 |
|
49133 | 99 |
all: $(TARGETS) |
25859 | 100 |
|
49133 | 101 |
.PHONY: all default |