diff options
author | CoprDistGit <infra@openeuler.org> | 2025-09-22 12:52:08 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2025-09-22 12:52:08 +0000 |
commit | 62193eb291a15f336c66a3e3eb1f95b94fc0d022 (patch) | |
tree | 97229163558c23c22ced9d1499e901dd68126bdf /0002-Fix-CC-compiler-support.patch | |
parent | 7572f9f90d38d06d944a23a0f5672962ae7b83b6 (diff) |
automatic import of protobuf
Diffstat (limited to '0002-Fix-CC-compiler-support.patch')
-rw-r--r-- | 0002-Fix-CC-compiler-support.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/0002-Fix-CC-compiler-support.patch b/0002-Fix-CC-compiler-support.patch deleted file mode 100644 index d4f4440..0000000 --- a/0002-Fix-CC-compiler-support.patch +++ /dev/null @@ -1,29 +0,0 @@ -From b62fbe3852ea070f1bfbb048e71dfae70c7c71f0 Mon Sep 17 00:00:00 2001 -From: wangqiang <wangqiang1@kylinos.cn> -Date: Tue, 19 Mar 2024 18:54:13 +0800 -Subject: [PATCH] Fix CC compiler support - ---- - third_party/utf8_range/utf8_to_utf16/Makefile | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/third_party/utf8_range/utf8_to_utf16/Makefile b/third_party/utf8_range/utf8_to_utf16/Makefile -index 853ffa4..30ef021 100644 ---- a/third_party/utf8_range/utf8_to_utf16/Makefile -+++ b/third_party/utf8_range/utf8_to_utf16/Makefile -@@ -1,10 +1,10 @@ --CC = gcc -+CC := ${CC} - CPPFLAGS = -g -O3 -Wall -march=native - - OBJS = main.o iconv.o naive.o - - utf8to16: ${OBJS} -- gcc $^ -o $@ -+ ${CC} $^ -o $@ - - .PHONY: clean - clean: --- -2.33.0 - |