* [Bug 59282] Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so
2013-01-12 14:58 [Bug 59282] New: Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so bugzilla-daemon
@ 2013-01-12 19:51 ` bugzilla-daemon
2013-01-12 20:01 ` bugzilla-daemon
` (8 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2013-01-12 19:51 UTC (permalink / raw)
To: dri-devel
[-- Attachment #1.1: Type: text/plain, Size: 316 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=59282
--- Comment #1 from pejakm <pejakm@gmail.com> ---
This is the commit where this problems starts:
http://cgit.freedesktop.org/mesa/mesa/commit/?id=ab07ae05a3dccef620c716e821c647413b951051
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1234 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 59282] Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so
2013-01-12 14:58 [Bug 59282] New: Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so bugzilla-daemon
2013-01-12 19:51 ` [Bug 59282] " bugzilla-daemon
@ 2013-01-12 20:01 ` bugzilla-daemon
2013-01-12 20:18 ` bugzilla-daemon
` (7 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2013-01-12 20:01 UTC (permalink / raw)
To: dri-devel
[-- Attachment #1.1: Type: text/plain, Size: 258 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=59282
--- Comment #2 from pejakm <pejakm@gmail.com> ---
Perhaps this bug is related: https://bugs.freedesktop.org/show_bug.cgi?id=59226
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1247 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 59282] Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so
2013-01-12 14:58 [Bug 59282] New: Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so bugzilla-daemon
2013-01-12 19:51 ` [Bug 59282] " bugzilla-daemon
2013-01-12 20:01 ` bugzilla-daemon
@ 2013-01-12 20:18 ` bugzilla-daemon
2013-01-12 20:34 ` bugzilla-daemon
` (6 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2013-01-12 20:18 UTC (permalink / raw)
To: dri-devel
[-- Attachment #1.1: Type: text/plain, Size: 366 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=59282
--- Comment #3 from Andreas Boll <andreas.boll.dev@gmail.com> ---
Created attachment 72916
--> https://bugs.freedesktop.org/attachment.cgi?id=72916&action=edit
targets/dri-r600: Force c++ linker in all cases
Could you test this patch?
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1465 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 59282] Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so
2013-01-12 14:58 [Bug 59282] New: Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so bugzilla-daemon
` (2 preceding siblings ...)
2013-01-12 20:18 ` bugzilla-daemon
@ 2013-01-12 20:34 ` bugzilla-daemon
2013-01-12 20:55 ` bugzilla-daemon
` (5 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2013-01-12 20:34 UTC (permalink / raw)
To: dri-devel
[-- Attachment #1.1: Type: text/plain, Size: 1043 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=59282
--- Comment #4 from pejakm <pejakm@gmail.com> ---
I made a patch myself, and it works:
--- src/gallium/targets/dri-r600/Makefile.am.orig 2013-01-12
20:00:04.000000000 +0100
+++ src/gallium/targets/dri-r600/Makefile.am 2013-01-12 21:18:15.494000000
+0100
@@ -59,17 +59,13 @@
$(LIBDRM_LIBS) \
$(RADEON_LIBS)
-if HAVE_MESA_LLVM
r600_dri_la_LINK = $(CXXLINK) $(r600_dri_la_LDFLAGS)
# Mention a dummy pure C++ file to trigger generation of the $(LINK) variable
nodist_EXTRA_r600_dri_la_SOURCES = dummy-cpp.cpp
+if HAVE_MESA_LLVM
r600_dri_la_LDFLAGS += $(LLVM_LDFLAGS)
r600_dri_la_LIBADD += $(LLVM_LIBS)
-else
-r600_dri_la_LINK = $(LINK) $(r600_dri_la_LDFLAGS)
-# Mention a dummy pure C file to trigger generation of the $(LINK) variable
-nodist_EXTRA_r600_dri_la_SOURCES = dummy-c.c
endif
# Provide compatibility with scripts for the old Mesa build system for
I'm gonna try your patch now.
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1873 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 59282] Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so
2013-01-12 14:58 [Bug 59282] New: Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so bugzilla-daemon
` (3 preceding siblings ...)
2013-01-12 20:34 ` bugzilla-daemon
@ 2013-01-12 20:55 ` bugzilla-daemon
2013-01-12 22:41 ` bugzilla-daemon
` (4 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2013-01-12 20:55 UTC (permalink / raw)
To: dri-devel
[-- Attachment #1.1: Type: text/plain, Size: 225 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=59282
--- Comment #5 from pejakm <pejakm@gmail.com> ---
Andreas, it works, eveyrthing is fine. Thanks.
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1039 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 59282] Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so
2013-01-12 14:58 [Bug 59282] New: Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so bugzilla-daemon
` (4 preceding siblings ...)
2013-01-12 20:55 ` bugzilla-daemon
@ 2013-01-12 22:41 ` bugzilla-daemon
2013-01-13 2:49 ` bugzilla-daemon
` (3 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2013-01-12 22:41 UTC (permalink / raw)
To: dri-devel
[-- Attachment #1.1: Type: text/plain, Size: 514 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=59282
Andreas Boll <andreas.boll.dev@gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |rankincj@googlemail.com
--- Comment #6 from Andreas Boll <andreas.boll.dev@gmail.com> ---
*** Bug 59296 has been marked as a duplicate of this bug. ***
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 2119 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 59282] Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so
2013-01-12 14:58 [Bug 59282] New: Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so bugzilla-daemon
` (5 preceding siblings ...)
2013-01-12 22:41 ` bugzilla-daemon
@ 2013-01-13 2:49 ` bugzilla-daemon
2013-01-13 3:53 ` bugzilla-daemon
` (2 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2013-01-13 2:49 UTC (permalink / raw)
To: dri-devel
[-- Attachment #1.1: Type: text/plain, Size: 573 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=59282
Tobias Droste <tdroste@gmx.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution|--- |FIXED
--- Comment #7 from Tobias Droste <tdroste@gmx.de> ---
Yes the patch fixes the problem.
I assume you're going to commit this soon and close this bug report.
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 2101 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 59282] Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so
2013-01-12 14:58 [Bug 59282] New: Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so bugzilla-daemon
` (6 preceding siblings ...)
2013-01-13 2:49 ` bugzilla-daemon
@ 2013-01-13 3:53 ` bugzilla-daemon
2013-01-13 3:53 ` bugzilla-daemon
2013-01-13 11:29 ` bugzilla-daemon
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2013-01-13 3:53 UTC (permalink / raw)
To: dri-devel
[-- Attachment #1.1: Type: text/plain, Size: 536 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=59282
Tom Stellard <tstellar@gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|FIXED |---
--- Comment #8 from Tom Stellard <tstellar@gmail.com> ---
Let's keep this bug open until the fix is actually committed.
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 2041 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 59282] Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so
2013-01-12 14:58 [Bug 59282] New: Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so bugzilla-daemon
` (7 preceding siblings ...)
2013-01-13 3:53 ` bugzilla-daemon
@ 2013-01-13 3:53 ` bugzilla-daemon
2013-01-13 11:29 ` bugzilla-daemon
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2013-01-13 3:53 UTC (permalink / raw)
To: dri-devel
[-- Attachment #1.1: Type: text/plain, Size: 359 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=59282
Tom Stellard <tstellar@gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Blocks| |59304
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1085 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 59282] Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so
2013-01-12 14:58 [Bug 59282] New: Undefined symbol '_ZTVN10__cxxabiv120__si_class_type_infoE' in r600_dri.so bugzilla-daemon
` (8 preceding siblings ...)
2013-01-13 3:53 ` bugzilla-daemon
@ 2013-01-13 11:29 ` bugzilla-daemon
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2013-01-13 11:29 UTC (permalink / raw)
To: dri-devel
[-- Attachment #1.1: Type: text/plain, Size: 542 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=59282
Andreas Boll <andreas.boll.dev@gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution|--- |FIXED
--- Comment #9 from Andreas Boll <andreas.boll.dev@gmail.com> ---
Fixed by 9da454f295062500ebb868e31eebcd5f753f83ff
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 2097 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 11+ messages in thread