[DragonFlyBSD - Submit #2207] (Closed) [PATCH] Enhancement the support for clang in compilers.conf
bugtracker-admin at leaf.dragonflybsd.org
bugtracker-admin at leaf.dragonflybsd.org
Sat Aug 21 05:36:20 PDT 2021
Issue #2207 has been updated by swildner.
Status changed from New to Closed
World and kernel build with dports' devel/llvm10. This patch no longer applies. Closing it.
----------------------------------------
Submit #2207: [PATCH] Enhancement the support for clang in compilers.conf
http://bugs.dragonflybsd.org/issues/2207#change-14160
* Author: juanfra684
* Status: Closed
* Priority: Normal
* Assignee: swildner
* Category: Userland
* Target version: 6.2
----------------------------------------
<pre>
<code class="diff">
- It should not select the standards.
- Commented the lines related to clang++. It breaks buildworld.
- VERSION changed to 4.4.7 for avoid software compiling with g++ 4.1.
Authors: Sascha Wildner <saw at online.de>
Juan Francisco Cantero Hurtado <iam at juanfra.info>
---
etc/defaults/compilers.conf | 18 ++++++++++++------
1 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/etc/defaults/compilers.conf b/etc/defaults/compilers.conf
index 9952679..3e7526c 100644
--- a/etc/defaults/compilers.conf
+++ b/etc/defaults/compilers.conf
@@ -1,16 +1,22 @@
# clang from SVN trunk
#
clangsvn_CC=/usr/local/bin/clang
-clangsvn_CXX=/usr/local/bin/clang++
-clangsvn_CFLAGS="-fno-color-diagnostics -Qunused-arguments -std=gnu89"
-clangsvn_CXXFLAGS="-fno-color-diagnostics -Qunused-arguments -std=gnu++98"
-clangsvn_VERSION=4.1.2
+clangsvn_CFLAGS="-fno-color-diagnostics -Qunused-arguments"
+# Uncomment this lines for compile C++ code with clang.
+# Disabled by default because clang++ breaks buildworld.
+#clangsvn_CXX=/usr/local/bin/clang++
+#clangsvn_CXXFLAGS="-fno-color-diagnostics -Qunused-arguments"
+clangsvn_VERSION=4.4.7
# clang from pkgsrc
#
clang_CC=/usr/pkg/bin/clang
-clang_CFLAGS="-fno-color-diagnostics -Qunused-arguments -std=gnu89"
-clang_VERSION=4.1.2
+clang_CFLAGS="-fno-color-diagnostics -Qunused-arguments"
+# Uncomment this lines for compile C++ code with clang.
+# Disabled by default because clang++ breaks buildworld.
+#clang_CXX=/usr/pkg/bin/clang++
+#clang_CXXFLAGS="-fno-color-diagnostics -Qunused-arguments"
+clang_VERSION=4.4.7
# gnat-aux (i.e. gcc 4.6) from pkgsrc
#
--
Juan Francisco Cantero Hurtado http://juanfra.info
</code>
</pre>
--
You have received this notification because you have either subscribed to it, or are involved in it.
To change your notification preferences, please click here: http://bugs.dragonflybsd.org/my/account
More information about the Submit
mailing list