# Copyright (c) 2005-2020 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. CPLUS ?= g++ CONLY ?= gcc COMPILE_ONLY = -c -MMD PREPROC_ONLY = -E -x c++ INCLUDE_KEY = -I DEFINE_KEY = -D OUTPUT_KEY = -o # OUTPUTOBJ_KEY = -o # PIC_KEY = -fPIC WARNING_AS_ERROR_KEY = -Werror WARNING_KEY = -Wall TEST_WARNING_KEY = -Wextra -Wshadow -Wcast-qual -Woverloaded-virtual -Wnon-virtual-dtor WARNING_SUPPRESS = -Wno-non-virtual-dtor DYLIB_KEY = -dynamiclib EXPORT_KEY = -Wl,-exported_symbols_list, LIBDL = -ldl LIBS = -lpthread LINK_FLAGS = LIB_LINK_FLAGS = -dynamiclib -install_name @rpath/$(BUILDING_LIBRARY) C_FLAGS = $(CPLUS_FLAGS) # gcc 4.8 and later support RTM intrinsics, but require command line switch to enable them ifneq (,$(shell $(CONLY) -dumpfullversion -dumpversion | egrep "^(4\.[8-9]|[5-9]|1[0-9])")) RTM_KEY = -mrtm endif # gcc 5.0 and later have -Wsuggest-override option # enable it via a pre-included header in order to limit to C++11 and above ifneq (,$(shell $(CONLY) -dumpfullversion -dumpversion | egrep "^([5-9]|1[0-9])")) INCLUDE_TEST_HEADERS = -include $(tbb_root)/src/test/harness_preload.h endif # gcc 6.0 and later have -flifetime-dse option that controls # elimination of stores done outside the object lifetime ifneq (,$(shell $(CONLY) -dumpfullversion -dumpversion | egrep "^([6-9]|1[0-9])")) # keep pre-contruction stores for zero initialization DSE_KEY = -flifetime-dse=1 endif ifeq ($(cfg), release) CPLUS_FLAGS = -g -O2 else CPLUS_FLAGS = -g -O0 -DTBB_USE_DEBUG endif CPLUS_FLAGS += -DUSE_PTHREAD $(ITT_NOTIFY) ifeq (intel64,$(arch)) ITT_NOTIFY = -DDO_ITT_NOTIFY CPLUS_FLAGS += -m64 LINK_FLAGS += -m64 LIB_LINK_FLAGS += -m64 endif ifeq (ia32,$(arch)) ITT_NOTIFY = -DDO_ITT_NOTIFY CPLUS_FLAGS += -m32 LINK_FLAGS += -m32 LIB_LINK_FLAGS += -m32 endif ifeq (ppc64,$(arch)) CPLUS_FLAGS += -arch ppc64 LINK_FLAGS += -arch ppc64 LIB_LINK_FLAGS += -arch ppc64 endif ifeq (ppc32,$(arch)) CPLUS_FLAGS += -arch ppc LINK_FLAGS += -arch ppc LIB_LINK_FLAGS += -arch ppc endif ifeq (armv7,$(arch)) CPLUS_FLAGS += -arch armv7 LINK_FLAGS += -arch armv7 LIB_LINK_FLAGS += -arch armv7 endif ifdef SDKROOT CPLUS_FLAGS += -isysroot $(SDKROOT) LIB_LINK_FLAGS += -L$(SDKROOT)/usr/lib/system -L$(SDKROOT)/usr/lib/ endif #------------------------------------------------------------------------------ # Setting assembler data. #------------------------------------------------------------------------------ ASM = as ifeq (intel64,$(arch)) ASM_FLAGS += -arch x86_64 endif ifeq (ia32,$(arch)) ASM_FLAGS += -arch i386 endif ifeq ($(cfg), debug) ASM_FLAGS += -g endif #------------------------------------------------------------------------------ # End of setting assembler data. #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ # Setting tbbmalloc data. #------------------------------------------------------------------------------ M_CPLUS_FLAGS = $(CPLUS_FLAGS) -fno-rtti -fno-exceptions #------------------------------------------------------------------------------ # End of setting tbbmalloc data. #------------------------------------------------------------------------------