java.lang.NullPointerException # Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved. # DONOT ALTER OR REMOVE COPYRIGHT NOTICES ORTHIS FILE HEADER.
java.lang.NullPointerException # This code is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2 only, as # published by the Free Software Foundation. Oracle designates this # particular file as subject to the "Classpath" exception as provided # by Oracle in the LICENSE file that accompanied this code.
java.lang.NullPointerException # This code is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License # version 2 for more details (a copy is included in the LICENSE file that # accompanied this code).
java.lang.NullPointerException # You should have received a copy of the GNU General Public License version # 2 along with this work; ifnot, write to the Free Software Foundation, # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
java.lang.NullPointerException # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA # or visit www.oracle.com if you need additional information or have any # questions.
java.lang.NullPointerException
################################################################################
java.lang.NullPointerException # This Makefile, together with Tools.gmk, can be used to compile a set of # gcc based cross compilation, portable, self contained packages, capable # of building OpenJDK.
java.lang.NullPointerException # By defaultthis Makefile will build a native toolchain for the current # platform if called with something like this:
java.lang.NullPointerException # make tars BASE_OS=OL
java.lang.NullPointerException # To build the full set of crosstools for additional platforms, use a command # line looking like this:
java.lang.NullPointerException # make TARGETS="aarch64-linux-gnu" BASE_OS=Fedora # or # make TARGETS="arm-linux-gnueabihf ppc64-linux-gnu" BASE_OS=Fedora BASE_OS_VERSION=17
java.lang.NullPointerException # to build several devkits for a specific OS version at once. # You can find the final results under ../../build/devkit/result/<host>-to-<target>
java.lang.NullPointerException # You may want the native toolchain to be used when compiling the cross # compilation toolchains. To achieve this, first build the native toolchain, # then add the bin directory from this build to the path when invoking this # makefile again for cross compilation. Ex:
java.lang.NullPointerException # PATH=$PWD/../../build/devkit/result/x86_64-linux-gnu-to-x86_64-linux-gnu/bin:$PATH \ # make TARGETS="arm-linux-gnueabihf,ppc64-linux-gnu" BASE_OS=Fedora
java.lang.NullPointerException # This is the makefile which iterates over all host and target platforms.
java.lang.NullPointerException
COMMA := ,
os := $(shell uname -o)
cpu := $(shell uname -p)
# Figure out what platform this is building on.
me := $(cpu)-$(if $(findstring Linux,$(os)),linux-gnu)
$(info Building on platform $(me))
java.lang.NullPointerException # By default just build for the current platform, which is assumed to be Linux
java.lang.NullPointerException
ifeq ($(TARGETS), )
platforms := $(me)
host_platforms := $(platforms) else
platforms := $(subst $(COMMA), , $(TARGETS))
host_platforms := $(me)
endif
target_platforms := $(platforms)
$(info host_platforms $(host_platforms))
$(info target_platforms $(target_platforms))
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.