]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/blobdiff - products.mak
Reset heapId after reading socket in TransportRpmsg
[ipc/ipcdev.git] / products.mak
index e418d2f0d0a130d80521f718d491f4e6cb0827b8..89bc0de60c133b6007d50340ca6a79e75bb28f88 100644 (file)
@@ -1,5 +1,5 @@
 #
-#   Copyright (c) 2012-2013, Texas Instruments Incorporated
+#   Copyright (c) 2012-2015 Texas Instruments Incorporated - http://www.ti.com
 #
 #   Redistribution and use in source and binary forms, with or without
 #   modification, are permitted provided that the following conditions
 #
 
 # Note that these variables can be explicitly set here or on the command line.
-# The ?= assignment used through gives the command line precedence over
-# settings in this file.
+# If you want to use variables in the environment, see the GNU make manual's
+# -e option:  http://www.gnu.org/software/make/manual/make.html#Environment
 
 # Optional: recommended to install all dependent components in one folder.
 #
-DEPOT ?= _your_depot_folder_
+DEPOT = _your_depot_folder_
 
-# Optional: platform to build
+# Platform to build for
 #   Supported platforms (choose one):
-#       omapl138, omap54xx_smp, dra7xx, tci6636, tci6638
+#       OMAPL138, OMAP54XX, DRA7XX, 66AK2E, TCI6630, TCI6636, TCI6638, TDA3XX
 #
-# Note, this is used for both Linux and BIOS builds
+# Note, this is used for Linux, QNX and BIOS builds
 #
-PLATFORM ?=
+PLATFORM =
+
+# Destination when installing the built binaries
+#
+# Note, this is used for Linux (if you use ipc-linux.mak to run the
+# configure command), QNX and BIOS.
+#
+DESTDIR =
 
 
 #################### IPC Linux ####################
 
 # Set up required cross compiler path for IPC Linux configuration and build
 #
-TOOLCHAIN_LONGNAME ?= arm-none-linux-gnueabi
-TOOLCHAIN_INSTALL_DIR ?= $(DEPOT)/_your_arm_code_gen_install_
-TOOLCHAIN_PREFIX ?= $(TOOLCHAIN_INSTALL_DIR)/bin/$(TOOLCHAIN_LONGNAME)-
+TOOLCHAIN_LONGNAME = arm-none-linux-gnueabi
+TOOLCHAIN_INSTALL_DIR = $(DEPOT)/_your_arm_code_gen_install_
+TOOLCHAIN_PREFIX = $(TOOLCHAIN_INSTALL_DIR)/bin/$(TOOLCHAIN_LONGNAME)-
 
-# Optional: Path to Linux Kernel - needed to build the MmRpc user libraries
-# (for devices that support it)
+# Path to Linux Kernel - needed to build the IPC user libraries
 #
-KERNEL_INSTALL_DIR ?=
+KERNEL_INSTALL_DIR =
+
+# Optional: Specify the Address Family for RPMSG. This value is specified
+# either from the Linux kernel specified by KERNEL_INSTALL_DIR above, or
+# the make variable AF_RPMSG below. Do not use both.
+#
+AF_RPMSG =
 
 # Optional: Path to DRM Library
 #
-DRM_PREFIX ?=
+DRM_PREFIX =
 
 # Optional: Path to TI Linux Utils product
 #
-CMEM_INSTALL_DIR ?=
+CMEM_INSTALL_DIR =
 
 
 #################### IPC QNX ####################
 
 # Path to QNX tools installation
 #
-QNX_INSTALL_DIR ?=
-
-# Destination for target binaries
-#
-DESTDIR ?=
+QNX_INSTALL_DIR =
 
-# List of supported devices (choose one): omap5432, vayu, simvayu
+# Optional: Any additional compile options
 #
-DEVICE ?= _device_
+QNX_CFLAGS =
 
 #################### IPC Bios ####################
 
 # Path to required dependencies for IPC BIOS builds
 #
-XDC_INSTALL_DIR ?= $(DEPOT)/_your_xdctools_install_
-BIOS_INSTALL_DIR ?= $(DEPOT)/_your_bios_install_
+XDC_INSTALL_DIR = $(DEPOT)/_your_xdctools_install_
+BIOS_INSTALL_DIR = $(DEPOT)/_your_bios_install_
+
+# Do you want to build SMP-enabled libraries (if supported for your target)?
+# Set to either 0 (disabled) or 1 (enabled)
+#
+BIOS_SMPENABLED=1
 
 # Path to various cgtools
 #
-ti.targets.C28_large ?=
-ti.targets.C28_float ?=
-ti.targets.C64P ?=
-ti.targets.C64P_big_endian ?=
-ti.targets.C674 ?=
-
-ti.targets.elf.C64P ?=
-ti.targets.elf.C64P_big_endian ?=
-ti.targets.elf.C64T ?=
-ti.targets.elf.C66 ?=
-ti.targets.elf.C66_big_endian ?=
-ti.targets.elf.C674 ?=
-
-ti.targets.arm.elf.Arm9 ?=
-ti.targets.arm.elf.A8F ?=
-ti.targets.arm.elf.A8Fnv ?=
-ti.targets.arm.elf.M3 ?=
-ti.targets.arm.elf.M4 ?=
-ti.targets.arm.elf.M4F ?=
-
-ti.targets.arp32.elf.ARP32 ?=
-ti.targets.arp32.elf.ARP32_far ?=
-
-gnu.targets.arm.A8F ?=
-gnu.targets.arm.A15F ?=
+ti.targets.C28_large =
+ti.targets.C28_float =
+
+ti.targets.elf.C64P =
+ti.targets.elf.C64P_big_endian =
+ti.targets.elf.C64T =
+ti.targets.elf.C66 =
+ti.targets.elf.C66_big_endian =
+ti.targets.elf.C674 =
+
+ti.targets.arm.elf.Arm9 =
+ti.targets.arm.elf.A8F =
+ti.targets.arm.elf.A8Fnv =
+ti.targets.arm.elf.M3 =
+ti.targets.arm.elf.M4 =
+ti.targets.arm.elf.M4F =
+
+ti.targets.arp32.elf.ARP32 =
+ti.targets.arp32.elf.ARP32_far =
+
+gnu.targets.arm.A8F =
+gnu.targets.arm.A15F =