summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2018-01-04 23:59:00 +0100
committerMathieu Lirzin <mthl@gnu.org>2018-01-05 04:20:44 +0100
commitdc67b18d6648899ee284b66ca1529c47495672ea (patch)
tree6ed1b8de4df48a93af4eed0a1b2073a44ab35b24
parentfab4fb3aabf0a20d4c99fb7171de163d42e391e2 (diff)
downloadautomake-dc67b18d6648899ee284b66ca1529c47495672ea.tar.gz
automake: Add default libtool_tag to cppasm
* bin/automake.in (register_language): Define default libtool tag to be CC since CPPASCOMPILE is using CC to call assembler. Copyright-paperwork-exempt: yes
-rw-r--r--bin/automake.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/automake.in b/bin/automake.in
index 713a4b770..16fb45182 100644
--- a/bin/automake.in
+++ b/bin/automake.in
@@ -892,6 +892,7 @@ register_language ('name' => 'cppasm',
'compile' => "\$(CCAS) @cpplike_flags \$(AM_CCASFLAGS) \$(CCASFLAGS)",
'ccer' => 'CPPAS',
'compiler' => 'CPPASCOMPILE',
+ 'libtool_tag' => 'CC',
'compile_flag' => '-c',
'output_flag' => '-o',
'extensions' => ['.S', '.sx']);