From 74f0d468f63e0b437b08b64f0bc10da1c1842afa Mon Sep 17 00:00:00 2001 From: Joseph Morrow Date: Thu, 2 Oct 2014 18:14:16 -0400 Subject: [PATCH] Added file describing artifact locations from all build processes. Right now, it only describes artifact locations that the buildScript.mk file outputs after being run. However, this will be updated to include all arduino due targets, as well the additional arduino mega wifi target. Patch 2: Added note in README to refer to artifact_output_locations.txt file. Change-Id: I7a7f5ed639c27457bb495891723ca0fa344e2adb --- README | 4 ++ artifact_output_locations.txt | 133 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 137 insertions(+) create mode 100644 artifact_output_locations.txt diff --git a/README b/README index b4a8df6..22129e5 100644 --- a/README +++ b/README @@ -28,6 +28,10 @@ SDK" (or "C SDK"). The associated stacks are referred to as "UB Stack" (or "C++ Stack") and "TB Stack" (or "C Stack"). The UB Stack requires that the TB Stack is built under it. +For a list of artifact locations for all possible build processes in the +OIC-RESOURCE repository, please refer to: +/artifact_output_locations.txt. + =============================================================================== The UB Stack is intended ONLY for Linux Ubuntu 12.04 operating system. diff --git a/artifact_output_locations.txt b/artifact_output_locations.txt new file mode 100644 index 0000000..d9a1ab5 --- /dev/null +++ b/artifact_output_locations.txt @@ -0,0 +1,133 @@ +****************************************************************** + + Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved. + +-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= + + 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. + +-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= + +=============================================================================== +==== UB Stack & TB Stack - Artifact Output Locations ==== +=============================================================================== + +This file contains the file location for every artifact from every possible +build process in the OIC-RESOURCE repository. + +Please refer to the readme file at /README for more information. + +=============================================================================== +==== Linux - Release & Debug ==== +=============================================================================== + +TB Stack: + release: + /csdk/libcoap/linux/release/libcoap.a + /csdk/linux/release/liboctbstack.a + debug: + /csdk/libcoap/linux/debug/libcoap.a + /csdk/linux/debug/liboctbstack.a + +TB Unit Tests: + release: + /csdk/stack/test/linux/release/ocserver + /csdk/stack/test/linux/release/occlient + debug: + /csdk/stack/test/linux/debug/ocserver + /csdk/stack/test/linux/debug/occlient + +TB Examples: + release: + /csdk/stack/samples/linux/SimpleClientServer/release/ocserver + /csdk/stack/samples/linux/SimpleClientServer/release/occlient + /csdk/stack/samples/linux/SimpleClientServer/release/ocservercoll + /csdk/stack/samples/linux/SimpleClientServer/release/occlientcoll + debug: + /csdk/stack/samples/linux/SimpleClientServer/debug/ocserver + /csdk/stack/samples/linux/SimpleClientServer/debug/occlient + /csdk/stack/samples/linux/SimpleClientServer/debug/ocservercoll + /csdk/stack/samples/linux/SimpleClientServer/debug/occlientcoll + +UB Stack: + release: + /release/obj/liboc.a + debug: + /debug/obj/liboc.a + +UB Examples: + release: + /examples/release/fridgeclient + /examples/release/fridgeserver + /examples/release/garageclient + /examples/release/garageserver + /examples/release/presenceclient + /examples/release/presenceserver + /examples/release/roomclient + /examples/release/roomserver + /examples/release/simpleclient + /examples/release/simpleclientserver + /examples/release/simpleserver + debug: + /examples/debug/fridgeclient + /examples/debug/fridgeserver + /examples/debug/garageclient + /examples/debug/garageserver + /examples/debug/presenceclient + /examples/debug/presenceserver + /examples/debug/roomclient + /examples/debug/roomserver + /examples/debug/simpleclient + /examples/debug/simpleclientserver + /examples/debug/simpleserver + +UB OCICUC: + /examples/ocicuc/client + /examples/ocicuc/monoprocess + /examples/ocicuc/server + + +=============================================================================== +==== Arduino ATMega 2560 - Release & Debug - Ethernet Shield ==== +=============================================================================== + +TB Stack: + Ethernet Shield: + release: + /csdk/libcoap/arduinomega/ethernet_shield/release/libcoap.a + /csdk/arduinomega/ethernet_shield/release/liboctbstack.a + debug: + /csdk/libcoap/arduinomega/ethernet_shield/debug/libcoap.a + /csdk/arduinomega/ethernet_shield/debug/liboctbstack.a + +TB Examples: + Ethernet Shield: + release: + /csdk/stack/samples/arduino/SimpleClientServer/ocserver/arduinomega/ethernet_shield/release/ocserver.hex + debug: + /csdk/stack/samples/arduino/SimpleClientServer/ocserver/arduinomega/ethernet_shield/debug/ocserver.hex + + + + + + + + + + + + + + + -- 2.7.4