summaryrefslogtreecommitdiffstats
path: root/dynamic-layers/clang-layer/recipes-devtools/clang/files/llvm11-Remove-repo-name-in-LLVM-IR.patch
blob: 0908943276370cc5e8282145b6b7c95ad6da0faa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
From ff0a6da84b94c16c4519c649f1f7bed3cdf89bbb Mon Sep 17 00:00:00 2001
From: Feng Zou <feng.zou@intel.com>
Date: Tue, 20 Oct 2020 11:29:04 +0800
Subject: [PATCH] Remove repo name in LLVM IR

Upstream-Status: Backport [Taken from opencl-clang patches, https://github.com/intel/opencl-clang/blob/ocl-open-110/patches/llvm/0002-Remove-repo-name-in-LLVM-IR.patch]
Signed-off-by: Feng Zou <feng.zou@intel.com>
Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>

---
 llvm/cmake/modules/VersionFromVCS.cmake | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/llvm/cmake/modules/VersionFromVCS.cmake b/llvm/cmake/modules/VersionFromVCS.cmake
index 18edbeabe3e..2d965263478 100644
--- a/llvm/cmake/modules/VersionFromVCS.cmake
+++ b/llvm/cmake/modules/VersionFromVCS.cmake
@@ -33,17 +33,18 @@ function(get_source_info path revision repository)
       else()
         set(remote "origin")
       endif()
-      execute_process(COMMAND ${GIT_EXECUTABLE} remote get-url ${remote}
-        WORKING_DIRECTORY ${path}
-        RESULT_VARIABLE git_result
-        OUTPUT_VARIABLE git_output
-        ERROR_QUIET)
-      if(git_result EQUAL 0)
-        string(STRIP "${git_output}" git_output)
-        set(${repository} ${git_output} PARENT_SCOPE)
-      else()
-        set(${repository} ${path} PARENT_SCOPE)
-      endif()
+      # Do not show repo name in IR
+      # execute_process(COMMAND ${GIT_EXECUTABLE} remote get-url ${remote}
+      #   WORKING_DIRECTORY ${path}
+      #   RESULT_VARIABLE git_result
+      #   OUTPUT_VARIABLE git_output
+      #   ERROR_QUIET)
+      # if(git_result EQUAL 0)
+      #   string(STRIP "${git_output}" git_output)
+      #   set(${repository} ${git_output} PARENT_SCOPE)
+      # else()
+      #   set(${repository} ${path} PARENT_SCOPE)
+      # endif()
     endif()
   else()
     message(WARNING "Git not found. Version cannot be determined.")
-- 
2.18.1