* [Bug jit/100207] Error in build()
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
@ 2021-04-22 12:30 ` marxin at gcc dot gnu.org
2021-04-22 12:31 ` sujay1844 at protonmail dot com
` (18 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: marxin at gcc dot gnu.org @ 2021-04-22 12:30 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
Martin Liška <marxin at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |marxin at gcc dot gnu.org
--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
You're using a non-default -Wformat-security which is something GCC cannot be
built with.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] Error in build()
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
2021-04-22 12:30 ` [Bug jit/100207] " marxin at gcc dot gnu.org
@ 2021-04-22 12:31 ` sujay1844 at protonmail dot com
2021-04-22 12:38 ` marxin at gcc dot gnu.org
` (17 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: sujay1844 at protonmail dot com @ 2021-04-22 12:31 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #2 from sujay1844 at protonmail dot com ---
So is the AUR package having a bug??
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] Error in build()
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
2021-04-22 12:30 ` [Bug jit/100207] " marxin at gcc dot gnu.org
2021-04-22 12:31 ` sujay1844 at protonmail dot com
@ 2021-04-22 12:38 ` marxin at gcc dot gnu.org
2021-04-22 13:42 ` dmalcolm at gcc dot gnu.org
` (16 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: marxin at gcc dot gnu.org @ 2021-04-22 12:38 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to sujay1844 from comment #2)
> So is the AUR package having a bug??
What's AUR? Can you investigate what sets the -Wformat-security ?
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] Error in build()
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (2 preceding siblings ...)
2021-04-22 12:38 ` marxin at gcc dot gnu.org
@ 2021-04-22 13:42 ` dmalcolm at gcc dot gnu.org
2021-04-22 13:46 ` [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit dmalcolm at gcc dot gnu.org
` (15 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: dmalcolm at gcc dot gnu.org @ 2021-04-22 13:42 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #4 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
(In reply to Martin Liška from comment #3)
> (In reply to sujay1844 from comment #2)
> > So is the AUR package having a bug??
>
> What's AUR? Can you investigate what sets the -Wformat-security ?
Presumably it's this:
https://wiki.archlinux.org/index.php/Arch_User_Repository
Sounds like AUR is injecting -Werror=format-security.
The strings in question come from:
const char *message = CPP_OPTION (pfile, cplusplus)
? N_("use of C++11 long long integer constant")
: N_("use of C99 long long integer constant");
and:
const char *message = (result & CPP_N_UNSIGNED) == CPP_N_UNSIGNED
? N_("use of C++23 %<size_t%> integer
constant")
: N_("use of C++23 %<make_signed_t<size_t>%>
integer constant");
which appear to be safe to me.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (3 preceding siblings ...)
2021-04-22 13:42 ` dmalcolm at gcc dot gnu.org
@ 2021-04-22 13:46 ` dmalcolm at gcc dot gnu.org
2021-04-22 13:48 ` sujay1844 at protonmail dot com
` (14 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: dmalcolm at gcc dot gnu.org @ 2021-04-22 13:46 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
David Malcolm <dmalcolm at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Error in build() |-Werror=format-security
| |error in AUR build of
| |libgccjit
--- Comment #5 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Presumably the AUR package of libgccjit is here:
https://aur.archlinux.org/packages/libgccjit/
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (4 preceding siblings ...)
2021-04-22 13:46 ` [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit dmalcolm at gcc dot gnu.org
@ 2021-04-22 13:48 ` sujay1844 at protonmail dot com
2021-04-22 13:49 ` sujay1844 at protonmail dot com
` (13 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: sujay1844 at protonmail dot com @ 2021-04-22 13:48 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #6 from sujay1844 at protonmail dot com ---
(In reply to David Malcolm from comment #5)
> Presumably the AUR package of libgccjit is here:
> https://aur.archlinux.org/packages/libgccjit/
So how do I prevent the AUR package from setting -Wformat-security?? Do i need
to edit the PKGBUILD or some C++ files?? I'm not familliar with C++.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (5 preceding siblings ...)
2021-04-22 13:48 ` sujay1844 at protonmail dot com
@ 2021-04-22 13:49 ` sujay1844 at protonmail dot com
2021-04-22 13:49 ` sujay1844 at protonmail dot com
` (12 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: sujay1844 at protonmail dot com @ 2021-04-22 13:49 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #7 from sujay1844 at protonmail dot com ---
(In reply to David Malcolm from comment #5)
> Presumably the AUR package of libgccjit is here:
> https://aur.archlinux.org/packages/libgccjit/
So how do I prevent the AUR package from setting -Wformat-security?? Do i need
to edit the PKGBUILD or some C++ files?? I'm not familliar with C++.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (6 preceding siblings ...)
2021-04-22 13:49 ` sujay1844 at protonmail dot com
@ 2021-04-22 13:49 ` sujay1844 at protonmail dot com
2021-04-22 13:52 ` sujay1844 at protonmail dot com
` (11 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: sujay1844 at protonmail dot com @ 2021-04-22 13:49 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #8 from sujay1844 at protonmail dot com ---
(In reply to David Malcolm from comment #5)
> Presumably the AUR package of libgccjit is here:
> https://aur.archlinux.org/packages/libgccjit/
So how do I prevent the AUR package from setting -Wformat-security?? Do i need
to edit the PKGBUILD or some C++ files?? I'm not familliar with C++.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (7 preceding siblings ...)
2021-04-22 13:49 ` sujay1844 at protonmail dot com
@ 2021-04-22 13:52 ` sujay1844 at protonmail dot com
2021-04-22 14:09 ` dmalcolm at gcc dot gnu.org
` (10 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: sujay1844 at protonmail dot com @ 2021-04-22 13:52 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #9 from sujay1844 at protonmail dot com ---
Oops sorry for sending it thrice. Bugzilla redirected me to some other bug
report, so I clicked back. I thought my comment wasn't submitted, so I sent it
again.
TLDR: i forgot to refresh my webpage and ending up thinking my comment wasn't
sent.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (8 preceding siblings ...)
2021-04-22 13:52 ` sujay1844 at protonmail dot com
@ 2021-04-22 14:09 ` dmalcolm at gcc dot gnu.org
2021-04-22 14:12 ` sujay1844 at protonmail dot com
` (9 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: dmalcolm at gcc dot gnu.org @ 2021-04-22 14:09 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
David Malcolm <dmalcolm at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |WORKSFORME
Status|UNCONFIRMED |RESOLVED
--- Comment #10 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
(In reply to sujay1844 from comment #8)
> (In reply to David Malcolm from comment #5)
> > Presumably the AUR package of libgccjit is here:
> > https://aur.archlinux.org/packages/libgccjit/
>
> So how do I prevent the AUR package from setting -Wformat-security?? Do i
> need to edit the PKGBUILD or some C++ files?? I'm not familliar with C++.
Sorry; I have no idea. Perhaps it's inheriting a default CFLAGS or CXXFLAGS
from some AUR/PKGBUILD policy file?
This seems to be purely an issue with downstream packaging of libgccjit, so I'm
going to mark this as "RESOLVED WORKSFORME"; I think you need to file this in a
downstream AUR bug tracker if it's still not working for you.
Hope this is helpful; good luck.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (9 preceding siblings ...)
2021-04-22 14:09 ` dmalcolm at gcc dot gnu.org
@ 2021-04-22 14:12 ` sujay1844 at protonmail dot com
2021-04-22 14:19 ` dmalcolm at gcc dot gnu.org
` (8 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: sujay1844 at protonmail dot com @ 2021-04-22 14:12 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
sujay1844 at protonmail dot com changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|WORKSFORME |FIXED
--- Comment #11 from sujay1844 at protonmail dot com ---
Ok hey after some digging I found this in my /etc/makepkg.conf What should I
change?? (I'm not familiar with C++)
#-- Compiler and Linker Flags
#CPPFLAGS=""
CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions \
-Wp,-D_FORTIFY_SOURCE=2,-D_GLIBCXX_ASSERTIONS \
-Wformat -Werror=format-security \
-fstack-clash-protection -fcf-protection"
CXXFLAGS="$CFLAGS"
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
#RUSTFLAGS="-C opt-level=2"
#-- Make Flags: change this for DistCC/SMP systems
#MAKEFLAGS="-j2"
#-- Debugging flags
DEBUG_CFLAGS="-g -fvar-tracking-assignments"
DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
#DEBUG_RUSTFLAGS="-C debuginfo=2"
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (10 preceding siblings ...)
2021-04-22 14:12 ` sujay1844 at protonmail dot com
@ 2021-04-22 14:19 ` dmalcolm at gcc dot gnu.org
2021-04-22 14:21 ` sujay1844 at protonmail dot com
` (7 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: dmalcolm at gcc dot gnu.org @ 2021-04-22 14:19 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #12 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Is that the default /etc/makepkg.conf, or did you hand-edit it? (i.e is this
something that all AUR users are going to run into, or just you?)
Clearly the "-Werror=format-security" is not compatible with building
libgccjit; I think "-fexceptions" is probably not a good idea either.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (11 preceding siblings ...)
2021-04-22 14:19 ` dmalcolm at gcc dot gnu.org
@ 2021-04-22 14:21 ` sujay1844 at protonmail dot com
2021-04-22 15:04 ` dmalcolm at gcc dot gnu.org
` (6 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: sujay1844 at protonmail dot com @ 2021-04-22 14:21 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #13 from sujay1844 at protonmail dot com ---
(In reply to David Malcolm from comment #12)
> Is that the default /etc/makepkg.conf, or did you hand-edit it? (i.e is
> this something that all AUR users are going to run into, or just you?)
>
> Clearly the "-Werror=format-security" is not compatible with building
> libgccjit; I think "-fexceptions" is probably not a good idea either.
Nope I don't think I ever opened this. In fact, I just came to know that it
exists a few minutes back. Please suggest the settings to change.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (12 preceding siblings ...)
2021-04-22 14:21 ` sujay1844 at protonmail dot com
@ 2021-04-22 15:04 ` dmalcolm at gcc dot gnu.org
2021-04-22 15:27 ` sujay1844 at protonmail dot com
` (5 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: dmalcolm at gcc dot gnu.org @ 2021-04-22 15:04 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #14 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
(In reply to sujay1844 from comment #13)
> (In reply to David Malcolm from comment #12)
> > Is that the default /etc/makepkg.conf, or did you hand-edit it? (i.e is
> > this something that all AUR users are going to run into, or just you?)
> >
> > Clearly the "-Werror=format-security" is not compatible with building
> > libgccjit; I think "-fexceptions" is probably not a good idea either.
>
> Nope I don't think I ever opened this. In fact, I just came to know that it
> exists a few minutes back. Please suggest the settings to change.
I wonder if it's just you that's running into this, or it's affecting everyone
using libgccjit via AUR.
I think you need to take this downstream, to the AUR community; it appears that
the default /etc/makepkg.conf is injecting build flags that are incompatible
with libgccjit, so either the default needs to change, or libgccjit's PKGBUILD
needs to change. Hopefully the above discussion has enough information for the
downstream AUR experts to fix things.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (13 preceding siblings ...)
2021-04-22 15:04 ` dmalcolm at gcc dot gnu.org
@ 2021-04-22 15:27 ` sujay1844 at protonmail dot com
2021-05-10 0:43 ` jonathon at m2x dot dev
` (4 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: sujay1844 at protonmail dot com @ 2021-04-22 15:27 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #15 from sujay1844 at protonmail dot com ---
I did some digging and found this:-
I checked my timeshift snapshot (which I took just after installation). The
etc/makepkg.conf is that goes like so:-
#-- Compiler and Linker Flags
CPPFLAGS="-D_FORTIFY_SOURCE=2"
CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt"
CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt"
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
#RUSTFLAGS="-C opt-level=2"
#-- Make Flags: change this for DistCC/SMP systems
#MAKEFLAGS="-j2"
#-- Debugging flags
DEBUG_CFLAGS="-g -fvar-tracking-assignments"
DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
#DEBUG_RUSTFLAGS="-C debuginfo=2"
To be sure that this is safe, I installed Manjaro in a virtual machine.
(Clearly, the guys at Manjaro know more about security than me) The
/etc/makepkg.conf had the same thing as in my timeshift snapshot. So I conclude
that removing those unwanted flags are safe. I also checked the ArchWiki
article on makepkg and made some tweaks to improve performance and this is my
current /etc/makepkg.conf looks like:-
#-- Compiler and Linker Flags
CPPFLAGS="-D_FORTIFY_SOURCE=2"
CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt"
CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt"
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
#RUSTFLAGS="-C opt-level=2"
#-- Make Flags: change this for DistCC/SMP systems
#MAKEFLAGS="-j2"
#-- Debugging flags
DEBUG_CFLAGS="-g -fvar-tracking-assignments"
DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
#DEBUG_RUSTFLAGS="-C debuginfo=2"
Thank you for your valuable time!!
Please give any suggestions if any.
And you can close this bug.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (14 preceding siblings ...)
2021-04-22 15:27 ` sujay1844 at protonmail dot com
@ 2021-05-10 0:43 ` jonathon at m2x dot dev
2021-05-10 1:18 ` sujay1844 at protonmail dot com
` (3 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: jonathon at m2x dot dev @ 2021-05-10 0:43 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
Jonathon <jonathon at m2x dot dev> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jonathon at m2x dot dev
--- Comment #16 from Jonathon <jonathon at m2x dot dev> ---
> Kernel: 5.11.15-arch1-2
> the guys at Manjaro
If you are running Manjaro please don't refer to Arch. They are not the same
distribution and it causes huge amounts of confusion given the large number of
patches and changes that Manjaro apply.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (15 preceding siblings ...)
2021-05-10 0:43 ` jonathon at m2x dot dev
@ 2021-05-10 1:18 ` sujay1844 at protonmail dot com
2021-05-10 1:34 ` jonathon at m2x dot dev
` (2 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: sujay1844 at protonmail dot com @ 2021-05-10 1:18 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #17 from sujay1844 at protonmail dot com ---
No duh I'm not running Manjaro.I said I installed Manjaro in a virtual machine
to check what the guys at Manjaro did to the /etc/makepkg.conf. Please read the
context before posting such comments.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (16 preceding siblings ...)
2021-05-10 1:18 ` sujay1844 at protonmail dot com
@ 2021-05-10 1:34 ` jonathon at m2x dot dev
2021-05-10 1:36 ` sujay1844 at protonmail dot com
2021-05-10 1:39 ` sujay1844 at protonmail dot com
19 siblings, 0 replies; 21+ messages in thread
From: jonathon at m2x dot dev @ 2021-05-10 1:34 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #18 from Jonathon <jonathon at m2x dot dev> ---
Thanks for clearing that up. You gave the impression that you reinstalled
Manjaro in a VM to ensure it wasn't a local change, and it wasn't otherwise
clear what Manjaro had to do with anything (i.e. why would Manjaro's settings
indicate what was "safe" in Arch?).
As it is, have a look at the Arch bug report and see if there's anything you
can add: https://bugs.archlinux.org/task/70701
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (17 preceding siblings ...)
2021-05-10 1:34 ` jonathon at m2x dot dev
@ 2021-05-10 1:36 ` sujay1844 at protonmail dot com
2021-05-10 1:39 ` sujay1844 at protonmail dot com
19 siblings, 0 replies; 21+ messages in thread
From: sujay1844 at protonmail dot com @ 2021-05-10 1:36 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #19 from sujay1844 at protonmail dot com ---
Because the guys at Manjaro are much more knowledgeable than me to know what is
safe and what is not IMO.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [Bug jit/100207] -Werror=format-security error in AUR build of libgccjit
2021-04-22 12:03 [Bug jit/100207] New: Error in build() sujay1844 at protonmail dot com
` (18 preceding siblings ...)
2021-05-10 1:36 ` sujay1844 at protonmail dot com
@ 2021-05-10 1:39 ` sujay1844 at protonmail dot com
19 siblings, 0 replies; 21+ messages in thread
From: sujay1844 at protonmail dot com @ 2021-05-10 1:39 UTC (permalink / raw)
To: gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100207
--- Comment #20 from sujay1844 at protonmail dot com ---
Dude is it right to file a bug report?? Because I'm not sure if that was the
default in Arch. Maybe some stupid program messed it up??
^ permalink raw reply [flat|nested] 21+ messages in thread