[PATCH] D89897: [AIX] Emit error for -G option on AIX
Xiangling Liao via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Oct 22 08:38:11 PDT 2020
Xiangling_L updated this revision to Diff 299991.
Xiangling_L marked an inline comment as done.
Xiangling_L added a comment.
Fix the formatting issues;
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D89897/new/
https://reviews.llvm.org/D89897
Files:
clang/lib/Driver/ToolChains/Clang.cpp
clang/test/Driver/aix-err-options.c
llvm/CMakeLists.txt
Index: llvm/CMakeLists.txt
===================================================================
--- llvm/CMakeLists.txt
+++ llvm/CMakeLists.txt
@@ -930,7 +930,7 @@
# Modules should be built with -G, so we can use runtime linking with
# plugins.
- string(APPEND CMAKE_MODULE_LINKER_FLAGS " -G")
+ string(APPEND CMAKE_MODULE_LINKER_FLAGS " -Wl,-G")
# Also set the correct flags for building shared libraries.
string(APPEND CMAKE_SHARED_LINKER_FLAGS " -shared")
Index: clang/test/Driver/aix-err-options.c
===================================================================
--- /dev/null
+++ clang/test/Driver/aix-err-options.c
@@ -0,0 +1,7 @@
+// RUN: %clang -target powerpc32-ibm-aix-xcoff -### -S -emit-llvm -G 0 2>&1 %s | \
+// RUN: FileCheck --check-prefix=CHECK32 %s
+// RUN: %clang -target powerpc64-ibm-aix-xcoff -### -S -emit-llvm -G 0 2>&1 %s | \
+// RUN: FileCheck --check-prefix=CHECK64 %s
+
+// CHECK32: error: unsupported option '-G' for target 'powerpc32-ibm-aix-xcoff'
+// CHECK64: error: unsupported option '-G' for target 'powerpc64-ibm-aix-xcoff'
Index: clang/lib/Driver/ToolChains/Clang.cpp
===================================================================
--- clang/lib/Driver/ToolChains/Clang.cpp
+++ clang/lib/Driver/ToolChains/Clang.cpp
@@ -4958,6 +4958,11 @@
if (D.CCGenDiagnostics)
CmdArgs.push_back("-disable-pragma-debug-crash");
+ if (RawTriple.isOSAIX())
+ if (Arg *A = Args.getLastArg(options::OPT_G))
+ D.Diag(diag::err_drv_unsupported_opt_for_target)
+ << A->getSpelling() << RawTriple.str();
+
bool UseSeparateSections = isUseSeparateSections(Triple);
if (Args.hasFlag(options::OPT_ffunction_sections,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D89897.299991.patch
Type: text/x-patch
Size: 1691 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20201022/b97aa4d6/attachment.bin>
More information about the cfe-commits
mailing list