GNU bug report logs -
#79216
Add support for slimcc
Previous Next
Reported by: arnold <at> skeeve.com
Date: Mon, 11 Aug 2025 11:51:02 UTC
Severity: normal
Done: Ileana Dumitrescu <ileanadumitrescu95 <at> gmail.com>
To reply to this bug, email your comments to 79216 AT debbugs.gnu.org.
There is no need to reopen the bug first.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-libtool <at> gnu.org:
bug#79216; Package
libtool.
(Mon, 11 Aug 2025 11:51:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
arnold <at> skeeve.com:
New bug report received and forwarded. Copy sent to
bug-libtool <at> gnu.org.
(Mon, 11 Aug 2025 11:51:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Hi. This patch to libtool.m4 adds support for the slimcc C compiler. Thanks! --Arnold
-----------------------
diff --git a/m4/libtool.m4 b/m4/libtool.m4
index 79a2451e..6feaf559 100644
--- a/m4/libtool.m4
+++ b/m4/libtool.m4
@@ -4737,6 +4737,12 @@ m4_if([$1], [CXX], [
_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
_LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
;;
+ slimcc*)
+ # SlimCC - from https://github.com/fuhsnn/slimcc
+ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
+ _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
+ ;;
pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
# Portland Group compilers (*not* the Pentium gcc compiler,
# which looks to be a dead project)
Reply sent
to
Ileana Dumitrescu <ileanadumitrescu95 <at> gmail.com>:
You have taken responsibility.
(Thu, 04 Dec 2025 15:36:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
arnold <at> skeeve.com:
bug acknowledged by developer.
(Thu, 04 Dec 2025 15:36:02 GMT)
Full text and
rfc822 format available.
Message #10 received at 79216-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On 11/08/2025 14:49, arnold <at> skeeve.com wrote:
> Hi. This patch to libtool.m4 adds support for the slimcc C compiler. Thanks! --Arnold
> -----------------------
> diff --git a/m4/libtool.m4 b/m4/libtool.m4
> index 79a2451e..6feaf559 100644
> --- a/m4/libtool.m4
> +++ b/m4/libtool.m4
> @@ -4737,6 +4737,12 @@ m4_if([$1], [CXX], [
> _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
> _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
> ;;
> + slimcc*)
> + # SlimCC - from https://github.com/fuhsnn/slimcc
> + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
> + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
> + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
> + ;;
> pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
> # Portland Group compilers (*not* the Pentium gcc compiler,
> # which looks to be a dead project)
>
Thank you for the patch! I updated the comment to replace the link to
GitHub with the authors instead. I also added a simple test file for it.
It is currently in the development branch, and it will migrate to master
after some time and testing.
https://cgit.git.savannah.gnu.org/cgit/libtool.git/commit/?h=development&id=9e33aadb8f249e84fc42374814ef6f40e31278fa
https://cgit.git.savannah.gnu.org/cgit/libtool.git/commit/?h=development&id=74bc6f5229b7891e6db6a8cf5ed548064d91d79b
--
Ileana Dumitrescu
GPG Public Key: FA26 CA78 4BE1 8892 7F22 B99F 6570 EA01 146F 7354
[OpenPGP_0x6570EA01146F7354.asc (application/pgp-keys, attachment)]
[OpenPGP_signature.asc (application/pgp-signature, attachment)]
Information forwarded
to
bug-libtool <at> gnu.org:
bug#79216; Package
libtool.
(Thu, 04 Dec 2025 15:52:02 GMT)
Full text and
rfc822 format available.
Message #13 received at 79216-done <at> debbugs.gnu.org (full text, mbox):
Hi,
Great, thank you!
Arnold
Ileana Dumitrescu <ileanadumitrescu95 <at> gmail.com> wrote:
> On 11/08/2025 14:49, arnold <at> skeeve.com wrote:
> > Hi. This patch to libtool.m4 adds support for the slimcc C compiler. Thanks! --Arnold
> > -----------------------
> > diff --git a/m4/libtool.m4 b/m4/libtool.m4
> > index 79a2451e..6feaf559 100644
> > --- a/m4/libtool.m4
> > +++ b/m4/libtool.m4
> > @@ -4737,6 +4737,12 @@ m4_if([$1], [CXX], [
> > _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
> > _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
> > ;;
> > + slimcc*)
> > + # SlimCC - from https://github.com/fuhsnn/slimcc
> > + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
> > + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
> > + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
> > + ;;
> > pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
> > # Portland Group compilers (*not* the Pentium gcc compiler,
> > # which looks to be a dead project)
> >
>
> Thank you for the patch! I updated the comment to replace the link to
> GitHub with the authors instead. I also added a simple test file for it.
> It is currently in the development branch, and it will migrate to master
> after some time and testing.
>
> https://cgit.git.savannah.gnu.org/cgit/libtool.git/commit/?h=development&id=9e33aadb8f249e84fc42374814ef6f40e31278fa
> https://cgit.git.savannah.gnu.org/cgit/libtool.git/commit/?h=development&id=74bc6f5229b7891e6db6a8cf5ed548064d91d79b
>
> --
> Ileana Dumitrescu
>
> GPG Public Key: FA26 CA78 4BE1 8892 7F22 B99F 6570 EA01 146F 7354
>
This bug report was last modified 2 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.