View | Details | Raw Unified | Return to bug 190851 | Differences between
and this patch

Collapse All | Expand All

(-)files/patch-mono-mini-ldscript.mono (+31 lines)
Line 0 Link Here
1
Address this build error when using binutils 2.24's ld(1):
2
3
====================
4
 .
5
 .
6
  CCLD   mono-sgen
7
/usr/local/bin/ld: mono-boehm: local symbol `__progname' in /usr/lib/crt1.o is referenced by DSO
8
/usr/local/bin/ld: final link failed: Bad value
9
clang: error: linker command failed with exit code 1 (use -v to see invocation)
10
gmake[4]: *** [mono-boehm] Error 1
11
gmake[4]: *** Waiting for unfinished jobs....
12
/usr/local/bin/ld: mono-sgen: local symbol `__progname' in /usr/lib/crt1.o is referenced by DSO
13
/usr/local/bin/ld: final link failed: Bad value
14
clang: error: linker command failed with exit code 1 (use -v to see invocation)
15
gmake[4]: *** [mono-sgen] Error 1
16
 .
17
 .
18
====================
19
20
See also:
21
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190851
22
23
--- mono/mini/ldscript.mono.orig	2014-03-31 14:25:50.000000000 -0600
24
+++ mono/mini/ldscript.mono	2014-06-18 14:27:28.000000000 -0600
25
@@ -7,6 +7,4 @@
26
               gc_thread_vtable;
27
               mini_type_is_vtype;
28
               mini_is_gsharedvt_klass;
29
-      local:
30
-              *;
31
 };

Return to bug 190851