| Summary: | Compiling produces a lot of undefined variable warnings | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Banana Fool <lamefun.x0r> |
| Component: | chicken | Assignee: | Rick Elrod <relrod> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 19 | CC: | lamefun.x0r, relrod |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | chicken-4.8.0.4-3.el6 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2013-09-18 13:00:09 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
I'm sorry, but I think you've reported a wrong bug. chicken-4.8.0.4-3.fc19 has been submitted as an update for Fedora 19. https://admin.fedoraproject.org/updates/chicken-4.8.0.4-3.fc19 chicken-4.8.0.4-3.fc18 has been submitted as an update for Fedora 18. https://admin.fedoraproject.org/updates/chicken-4.8.0.4-3.fc18 Package chicken-4.8.0.4-3.fc19: * should fix your issue, * was pushed to the Fedora 19 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing chicken-4.8.0.4-3.fc19' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-2013-15675/chicken-4.8.0.4-3.fc19 then log in and leave karma (feedback). chicken-4.8.0.4-3.el6 has been submitted as an update for Fedora EPEL 6. https://admin.fedoraproject.org/updates/chicken-4.8.0.4-3.el6 chicken-4.8.0.4-3.fc19 has been pushed to the Fedora 19 stable repository. If problems still persist, please make note of it in this bug report. chicken-4.8.0.4-3.fc18 has been pushed to the Fedora 18 stable repository. If problems still persist, please make note of it in this bug report. chicken-4.8.0.4-3.el6 has been pushed to the Fedora EPEL 6 stable repository. If problems still persist, please make note of it in this bug report. |
Fedora package adds the make_cflags_work.patch that adds this line to Chicken's default.make: C_COMPILER_OPTIONS += $(CFLAGS) CFLAGS contains -Wall that causes gcc to complain about undefined variables that Chicken generates, eg. $ cat > hello.scm (display "Hello, World!\n") $ csc hello.scm hello.c: In function ‘f_13’: hello.c:50:8: warning: unused variable ‘t4’ [-Wunused-variable] C_word t4; ^ hello.c: In function ‘C_toplevel’: hello.c:71:8: warning: unused variable ‘t3’ [-Wunused-variable] C_word t3; ^ hello.c: In function ‘f_11’: hello.c:97:8: warning: unused variable ‘t3’ [-Wunused-variable] C_word t3; ^ hello.c: In function ‘f_15’: hello.c:110:9: warning: unused variable ‘a’ [-Wunused-variable] C_word *a; ^ hello.c:108:8: warning: unused variable ‘tmp’ [-Wunused-variable] C_word tmp; ^ hello.c: In function ‘f_18’: hello.c:118:9: warning: unused variable ‘a’ [-Wunused-variable] C_word *a; ^ hello.c:116:8: warning: unused variable ‘tmp’ [-Wunused-variable] C_word tmp; ^ hello.c: In function ‘f_9’: hello.c:126:8: warning: unused variable ‘t3’ [-Wunused-variable] C_word t3; ^ hello.c: At top level: hello.c:20:15: warning: ‘C_possibly_force_alignment’ defined but not used [-Wunused-variable] static double C_possibly_force_alignment; ^ hello.c:21:21: warning: ‘li0’ defined but not used [-Wunused-variable] static C_char C_TLS li0[] C_aligned={C_lihdr(0,0,10),40,116,111,112,108,101,118,101,108,41,0,0,0,0,0,0}; ^