Bug 147010
| Summary: | Anjuta x86_64 crashes when creating a new project. | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Thorsten Leemhuis <fedora> | ||||||
| Component: | anjuta | Assignee: | Phillip Compton <compton> | ||||||
| Status: | CLOSED RAWHIDE | QA Contact: | |||||||
| Severity: | medium | Docs Contact: | |||||||
| Priority: | medium | ||||||||
| Version: | 3 | ||||||||
| Target Milestone: | --- | ||||||||
| Target Release: | --- | ||||||||
| Hardware: | x86_64 | ||||||||
| OS: | Linux | ||||||||
| Whiteboard: | |||||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||||
| Doc Text: | Story Points: | --- | |||||||
| Clone Of: | Environment: | ||||||||
| Last Closed: | 2005-02-10 20:04:33 UTC | Type: | --- | ||||||
| Regression: | --- | Mount Type: | --- | ||||||
| Documentation: | --- | CRM: | |||||||
| Verified Versions: | Category: | --- | |||||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||||
| Embargoed: | |||||||||
| Attachments: |
|
||||||||
|
Description
Thorsten Leemhuis
2005-02-03 17:55:59 UTC
Created attachment 110602 [details]
anjuta-backtrace
Don't ask me why: But removing the "--enable-final" from the configure fixes this problem. In configure.in:
dnl Enable release builds
AC_ARG_ENABLE(final,
[ --enable-final Build release executables (GCC only)],
CFLAGS="$CFLAGS -DNDEBUG -O0 -g"
CXXFLAGS="$CXXFLAGS -DNDEBUG -O0 -g")
In the build log of current CVS version:
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I./include -I/usr/include/glib-2.0
-I/usr/lib/glib-2.0/include -O2 -g -pipe -m32 -march=i386
-mtune=pentium4 -DNDEBUG -O0 -g -c args.c
Depending on where they ifdef NDEBUG and how they use it (e.g. for
asserts), it might make sense to get it back into the CFLAGS when
building without --enable-final.
Phillip( or Michael), how to proceed? I suggest to create an update that builds on x86_64 without "--enable-final" and fix the real issue later? Created attachment 110927 [details]
spec patch proposal
Feel free to apply something like this if you agree.
>Created an attachment (id=110927)
>spec patch proposal
>Feel free to apply something like this if you agree.
Commited and build requested. Tested on i386 an x86_86, works fine.
|