This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, master has been updated
       via  30fc5ecf239d4900d8131b7c0933ff4a1d57be80 (commit)
       via  be87ce43f009b3baed3afd6b024bc05bb070b7de (commit)
      from  7c292b37cfb28407f7716c63561c8ff7f0dc5540 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=30fc5ecf239d4900d8131b7c0933ff4a1d57be80
commit 30fc5ecf239d4900d8131b7c0933ff4a1d57be80
Merge: 7c292b3 be87ce4
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Tue Feb 26 15:42:24 2019 +0000
Commit:     Kitware Robot <kwro...@kitware.com>
CommitDate: Tue Feb 26 10:42:31 2019 -0500

    Merge topic 'qcc-asm-detection'
    
    be87ce43f0 Add ASM Compiler detection for QCC
    
    Acked-by: Kitware Robot <kwro...@kitware.com>
    Acked-by: Bartosz <gan...@poczta.onet.pl>
    Merge-request: !3016


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=be87ce43f009b3baed3afd6b024bc05bb070b7de
commit be87ce43f009b3baed3afd6b024bc05bb070b7de
Author:     Maikel van den Hurk <maikel.vandenh...@tomtom.com>
AuthorDate: Mon Feb 25 08:28:47 2019 +0100
Commit:     Maikel van den Hurk <maikel.vandenh...@tomtom.com>
CommitDate: Mon Feb 25 08:28:47 2019 +0100

    Add ASM Compiler detection for QCC

diff --git a/Modules/CMakeDetermineASMCompiler.cmake 
b/Modules/CMakeDetermineASMCompiler.cmake
index dbc41c8..86928fa 100644
--- a/Modules/CMakeDetermineASMCompiler.cmake
+++ b/Modules/CMakeDetermineASMCompiler.cmake
@@ -110,6 +110,10 @@ if(NOT CMAKE_ASM${ASM_DIALECT}_COMPILER_ID)
   set(CMAKE_ASM${ASM_DIALECT}_COMPILER_ID_VENDOR_FLAGS_ADSP "-version")
   set(CMAKE_ASM${ASM_DIALECT}_COMPILER_ID_VENDOR_REGEX_ADSP "Analog Devices")
 
+  list(APPEND CMAKE_ASM${ASM_DIALECT}_COMPILER_ID_VENDORS QCC)
+  set(CMAKE_ASM${ASM_DIALECT}_COMPILER_ID_VENDOR_FLAGS_QCC "-V")
+  set(CMAKE_ASM${ASM_DIALECT}_COMPILER_ID_VENDOR_REGEX_QCC "gcc_nto")
+
   include(CMakeDetermineCompilerId)
   set(userflags)
   CMAKE_DETERMINE_COMPILER_ID_VENDOR(ASM${ASM_DIALECT} "${userflags}")
diff --git a/Modules/Compiler/QCC-ASM.cmake b/Modules/Compiler/QCC-ASM.cmake
new file mode 100644
index 0000000..9a9935b
--- /dev/null
+++ b/Modules/Compiler/QCC-ASM.cmake
@@ -0,0 +1,2 @@
+include(Compiler/QCC)
+__compiler_qcc(ASM)

-----------------------------------------------------------------------

Summary of changes:
 Modules/CMakeDetermineASMCompiler.cmake | 4 ++++
 Modules/Compiler/QCC-ASM.cmake          | 2 ++
 2 files changed, 6 insertions(+)
 create mode 100644 Modules/Compiler/QCC-ASM.cmake


hooks/post-receive
-- 
CMake
_______________________________________________
Cmake-commits mailing list
Cmake-commits@cmake.org
https://cmake.org/mailman/listinfo/cmake-commits

Reply via email to