Makefile revision 5680
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews# CDDL HEADER START
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews# The contents of this file are subject to the terms of the
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews# Common Development and Distribution License (the "License").
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews# You may not use this file except in compliance with the License.
2eeb74d1cf5355dd98f6d507a10086e16bb08c4bTinderbox User# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# See the License for the specific language governing permissions
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# and limitations under the License.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# When distributing Covered Code, include this CDDL HEADER in each
6ea1b817e31b89a627e146fe69e23ea0a64c89ecBob Halley# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# If applicable, add the following below this CDDL HEADER, with the
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# fields enclosed by brackets "[]" replaced with your own identifying
6ea1b817e31b89a627e146fe69e23ea0a64c89ecBob Halley# information: Portions Copyright [yyyy] [name of copyright owner]
6ea1b817e31b89a627e146fe69e23ea0a64c89ecBob Halley# CDDL HEADER END
6ea1b817e31b89a627e146fe69e23ea0a64c89ecBob Halley# Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
704e6c8876907aac0bf7380effca8bca400d4acdMark Andrews sha256:4f14fc7b26a37a391ec5f979697148e6774bc36bc052de26e40ffabe401e397d
704e6c8876907aac0bf7380effca8bca400d4acdMark AndrewsCOMPONENT_ARCHIVE_URL= http://download.savannah.nongnu.org/releases/openexr/$(COMPONENT_ARCHIVE)
3aaa526a94c80c31c16d44f0f6482984725860f1Tinderbox User# there seems to be no other way to enable large files support
f159b7b5c761d9107808fef524a8491f41b4cd4fTinderbox User# it seems that --with-pic doesn't get PIC flags to the C++ compiler
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein# libtools seems to be forcing -nolibs, so we have to add back libc, libm,
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein# libCstd and libCrun. The last two are needed because with Studio 12.2
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein# (and beyond), there is a bug in the CC driver that is not correctly using
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein# the '-library=Cstd,Crun' we are passing to it.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan HuntCOMPONENT_TEST_MASTER = $(COMPONENT_TEST_RESULTS_DIR)/results-all.master
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# Strip compilation lines from test output
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt '-e "s|^.*$(CC).*$$|XXX_CC_XXX|g" ' \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt '-e "s|^.*$(CXX).*$$|XXX_CC_XXX|g" ' \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt '-e "s|^.*source=.*libtool=no.*$$|XXX_CC_XXX|g" ' \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt '-e "s|^.*DEPDIR=.deps.*$$|XXX_CC_XXX|g" ' \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt '-e "s|^config.status: .*$$|XXX_CC_XXX|g" ' \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt '-e "s|^make.*: Leaving directory.*$$|XXX_CC_XXX|g" ' \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt '-e "s|^make.*: Entering directory.*$$|XXX_CC_XXX|g" ' \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt '-e "/^XXX_CC_XXX$$/d" '