Hi
On Thursday 10 July 2014 11:24:43 Daniel Michalik wrote:
> Dear all,
> I cannot compile the current version of sdcc. Problem seems identical to
> what is described here:
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=746906
> | make
> | [...]
> | In file included from opncls.c:26:0:
> | opncls.c: In function ‘bfd_fopen’:
> | bfd.h:529:65: error: right-hand operand of comma expression has no effect
> | [-Werror=unused-value]| 
> |  #define bfd_set_cacheable(abfd,bool) (((abfd)->cacheable = bool), TRUE)
> |  
> |                                                                  ^
> | 
> | opncls.c:261:5: note: in expansion of macro ‘bfd_set_cacheable’
> | 
> |      bfd_set_cacheable (nbfd, TRUE);
> |      ^
> | 
> | cc1: all warnings being treated as errors
> | 
Don't you mean this bug?
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752972

I got a patch with the bug report that I sent to sdcc-devel but the message 
may have been rejected. The patch is attached.

I add another patch to fix a minor spelling mistake.

Regards
Gudjon
Fix spelling errors in source code
--- a/src/stm8/gen.c
+++ b/src/stm8/gen.c
@@ -1884,7 +1884,7 @@
     {
       if (!regalloc_dry_run)
         {
-          wassertl (0, "genCopy failed to completly copy operands.");
+          wassertl (0, "genCopy failed to completely copy operands.");
           fprintf (stderr, "%d bytes left.\n", size);
           fprintf (stderr, "left type %d source type %d\n", result->type, 
source->type);
           for (i = 0; i < n ; i++)
A patch from bug #752071 to fix build already sent to upstream.
--- a/support/sdbinutils/bfd/bfd-in.h
+++ b/support/sdbinutils/bfd/bfd-in.h
@@ -294,9 +294,9 @@
 
 #define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)
 
-#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma = (val)), 
((ptr)->user_set_vma = TRUE), TRUE)
-#define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = 
(val)),TRUE)
-#define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = 
(val)),TRUE)
+#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma = (val)), 
((ptr)->user_set_vma = TRUE))
+#define bfd_set_section_alignment(bfd, ptr, val) ((ptr)->alignment_power = 
(val))
+#define bfd_set_section_userdata(bfd, ptr, val) ((ptr)->userdata = (val))
 /* Find the address one past the end of SEC.  */
 #define bfd_get_section_limit(bfd, sec) \
   (((bfd)->direction != write_direction && (sec)->rawsize != 0 \
@@ -519,7 +519,7 @@
 
 #define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char)
 
-#define bfd_set_cacheable(abfd,bool) (((abfd)->cacheable = bool), TRUE)
+#define bfd_set_cacheable(abfd,bool) ((abfd)->cacheable = bool)
 
 extern bfd_boolean bfd_cache_close
   (bfd *abfd);
--- a/support/sdbinutils/bfd/bfd-in2.h
+++ b/support/sdbinutils/bfd/bfd-in2.h
@@ -301,9 +301,9 @@
 
 #define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)
 
-#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma = (val)), 
((ptr)->user_set_vma = TRUE), TRUE)
-#define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = 
(val)),TRUE)
-#define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = 
(val)),TRUE)
+#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma = (val)), 
((ptr)->user_set_vma = TRUE))
+#define bfd_set_section_alignment(bfd, ptr, val) ((ptr)->alignment_power = 
(val))
+#define bfd_set_section_userdata(bfd, ptr, val) ((ptr)->userdata = (val))
 /* Find the address one past the end of SEC.  */
 #define bfd_get_section_limit(bfd, sec) \
   (((bfd)->direction != write_direction && (sec)->rawsize != 0 \
@@ -526,7 +526,7 @@
 
 #define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char)
 
-#define bfd_set_cacheable(abfd,bool) (((abfd)->cacheable = bool), TRUE)
+#define bfd_set_cacheable(abfd,bool) ((abfd)->cacheable = bool)
 
 extern bfd_boolean bfd_cache_close
   (bfd *abfd);
------------------------------------------------------------------------------
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
_______________________________________________
Sdcc-user mailing list
Sdcc-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sdcc-user

Reply via email to