Displaying 14 results from an estimated 14 matches for "porting_to".
2013 Jul 10
4
[LLVMdev] [BUG] Support for -W[no-]unused-but-set-{variable, parameter}
Hi,
These warnings are included by default with -Wall in GCC 4.6 [1], and
LLVM should support them instead of throwing -Wunknown-warning-option.
[1]: http://gcc.gnu.org/gcc-4.6/porting_to.html
Thanks.
2019 Jan 25
2
Bug with latest GCC 9
Hi.
As mentioned here:
https://bugzilla.opensuse.org/show_bug.cgi?id=1123136
there's a new issue with GCC 9, it's related to:
https://gcc.gnu.org/gcc-9/porting_to.html#complit
in:
/* Not const! Never return this as a result directly! */
#define SMTP_ADDRESS_LITERAL(localpart, domain) \
&((struct smtp_address){ (localpart), (domain) })
Thanks,
Martin
2019 Apr 25
2
Bug with latest GCC 9
...n Bosch wrote:
>
>
> Op 25/01/2019 om 10:59 schreef Martin Li?ka:
>> Hi.
>>
>> As mentioned here:
>> https://bugzilla.opensuse.org/show_bug.cgi?id=1123136
>>
>> there's a new issue with GCC 9, it's related to:
>> https://gcc.gnu.org/gcc-9/porting_to.html#complit
>>
>> in:
>> /* Not const! Never return this as a result directly! */
>> #define SMTP_ADDRESS_LITERAL(localpart, domain) \
>> ????&((struct smtp_address){ (localpart), (domain) })
>
> Thanks for reporting this. We are working on it (tracking int...
2014 Apr 27
2
[LLVMdev] 3.4 branch gcc 4.9 build error
Using gcc 4.9 to build the llvm 3.4 branch fails with the following error:
llvm[1]: Compiling APFloat.cpp for Release build
[...]
/usr/lib64/gcc/x86_64-unknown-linux-gnu/4.9.0/../../../../include/c++/4.9.0/cstddef:51:11:
error: no member named 'max_align_t' in the global namespace
using ::max_align_t;
~~^
gcc 4.8.2's caused no such issue, so it must be a change in
2008 Jun 04
1
[LLVMdev] Broken versions of GCC and other tools
...of GCC not listed here, please
> let us know. Please use the "gcc -v" command to find out which version
> of GCC you are using.
This is not true. GCC is not broken.
1. You will need to update to something newer, than LLVM 2.2. For
example, LLVM 2.3+ :)
2. http://gcc.gnu.org/gcc-4.3/porting_to.html
--
With best regards, Anton Korobeynikov.
Faculty of Mathematics & Mechanics, Saint Petersburg State University.
2009 Jul 16
2
[PATCH 1/2] Fix must_inline macro in klibc/compiler.h for gcc-4.3
See http://gcc.gnu.org/gcc-4.3/porting_to.html for details.
Signed-off-by: Jon Ringle <jon at ringle.org>
---
usr/include/klibc/compiler.h | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/usr/include/klibc/compiler.h b/usr/include/klibc/compiler.h
index 816a4ee..e0da37e 100644
--- a/usr/include/klibc/co...
2013 Jul 10
0
[LLVMdev] [BUG] Support for -W[no-]unused-but-set-{variable, parameter}
On Wed, Jul 10, 2013 at 11:16 AM, Ramkumar Ramachandra
<artagnon at gmail.com> wrote:
> Hi,
>
> These warnings are included by default with -Wall in GCC 4.6 [1], and
> LLVM should support them instead of throwing -Wunknown-warning-option.
>
> [1]: http://gcc.gnu.org/gcc-4.6/porting_to.html
Please file bug reports at llvm.org/bugs/
-Eli
2013 Jul 10
0
[LLVMdev] [BUG] Support for -W[no-]unused-but-set-{variable, parameter}
...On Wed, Jul 10, 2013 at 11:16 AM, Ramkumar Ramachandra
<artagnon at gmail.com> wrote:
> Hi,
>
> These warnings are included by default with -Wall in GCC 4.6 [1], and
> LLVM should support them instead of throwing -Wunknown-warning-option.
>
> [1]: http://gcc.gnu.org/gcc-4.6/porting_to.html
>
> Thanks.
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
2019 Jan 25
0
Bug with latest GCC 9
Op 25/01/2019 om 10:59 schreef Martin Li?ka:
> Hi.
>
> As mentioned here:
> https://bugzilla.opensuse.org/show_bug.cgi?id=1123136
>
> there's a new issue with GCC 9, it's related to:
> https://gcc.gnu.org/gcc-9/porting_to.html#complit
>
> in:
> /* Not const! Never return this as a result directly! */
> #define SMTP_ADDRESS_LITERAL(localpart, domain) \
> &((struct smtp_address){ (localpart), (domain) })
Thanks for reporting this. We are working on it (tracking internally as
DOP-890).
Regards,...
2019 Jul 28
0
Bug with latest GCC 9
...gt; Op 25/01/2019 om 10:59 schreef Martin Li?ka:
>>> Hi.
>>>
>>> As mentioned here:
>>> https://bugzilla.opensuse.org/show_bug.cgi?id=1123136
>>>
>>> there's a new issue with GCC 9, it's related to:
>>> https://gcc.gnu.org/gcc-9/porting_to.html#complit
>>>
>>> in:
>>> /* Not const! Never return this as a result directly! */
>>> #define SMTP_ADDRESS_LITERAL(localpart, domain) \
>>> ????&((struct smtp_address){ (localpart), (domain) })
>> Thanks for reporting this. We are working...
2012 Sep 14
0
[LLVMdev] Problem using llvm::cl::bits class with gcc 4.7
...Support/CommandLine.h:1220:5:
note: use ‘this->addValue’ instead
/bin/rm: cannot remove
‘/home/dan/documents/projects/project/klee/bin-rel/lib/Core/Release+Asserts/Executor.d.tmp’:
No such file or directory
I think this is related to "Name Look up Change" in
http://gcc.gnu.org/gcc-4.7/porting_to.html . Indeed if I modify LLVM 2.9's
header file to use ``this->addValue()'' instead of ``addValue()'' I can
than successfully compile.
Is there anyway round this because I don't really want to have to patch
LLVM's header files specially for KLEE. I took a look at th...
2015 Feb 12
1
Bug#777801: blktap: ftbfs with GCC-5
...l.
apt-get -t experimental install g++
Common build failures are C11 as the default C mode, new warnings
resulting in build failures with -Werror turned on, or new/dropped
symbols in Debian symbols files. For other C/C++ related build failures
see the porting guide at http://gcc.gnu.org/gcc-5/porting_to.html
[...]
td-rated.c:497:23: error: logical not is only applied to the left hand side of comparison [-Werror=logical-not-parentheses]
WARN_ON(!!conn->need != waits);
^
td-rated.c:71:10: note: in definition of macro 'WARN'
##_a, __func__, __LINE__)...
2015 Feb 12
4
Bug#778181: xen: ftbfs with GCC-5
...l.
apt-get -t experimental install g++
Common build failures are C11 as the default C mode, new warnings
resulting in build failures with -Werror turned on, or new/dropped
symbols in Debian symbols files. For other C/C++ related build failures
see the porting guide at http://gcc.gnu.org/gcc-5/porting_to.html
[...]
objdump -h reloc.o | sed -n '/[0-9]/{s,00*,0,g;p}' |\
while read idx name sz rest; do \
case "$name" in \
.data|.data.*|.rodata|.rodata.*|.bss|.bss.*) \
test $sz != 0 || continue; \
echo "Error: non-empty $name: 0x$sz" >&2; \
exit $(expr...
2017 Jan 31
7
Bug#853710: xen: ftbfs with GCC-7
..... packages from experimental.
apt-get -t=experimental install g++
Common build failures are new warnings resulting in build failures with
-Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-7/porting_to.html
[...]
gcc -m64 -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs -O2 -fomit-frame-pointer -nostdinc -fno-builtin -fno-common -Werror -Wredundant-decls -Wno-pointer-arith -pipe -g -D__XEN...