summaryrefslogtreecommitdiff
path: root/core
authorsandman <sandman>2002-12-01 22:20:11 (UTC)
committer sandman <sandman>2002-12-01 22:20:11 (UTC)
commit5a550802680d32ccb0ea0d596f514de7e13c45dc (patch) (unidiff)
treeec5d1d11630ea94cde1547c8525b522d743e871d /core
parent90e100450625fc121523e67413b2da7f57f6d650 (diff)
downloadopie-5a550802680d32ccb0ea0d596f514de7e13c45dc.zip
opie-5a550802680d32ccb0ea0d596f514de7e13c45dc.tar.gz
opie-5a550802680d32ccb0ea0d596f514de7e13c45dc.tar.bz2
Added a fix for programs that have been compiled with old toolchains and
are used together with shared libs produced by newer toolchains .. they might not have the __gmon_start__ symbol defined (e.g. neocal or hancom on a glibc 2.3.1 iPAQ with the latest libjpeg62)
Diffstat (limited to 'core') (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/libpreload/preload.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/launcher/libpreload/preload.cpp b/core/launcher/libpreload/preload.cpp
index 10d8313..cc1baac 100644
--- a/core/launcher/libpreload/preload.cpp
+++ b/core/launcher/libpreload/preload.cpp
@@ -28,8 +28,14 @@ typedef void ( *qapp_setfont_t ) ( const QFont &, bool, const char * );
28static int *opie_block_style_p = 0; 28static int *opie_block_style_p = 0;
29 29
30extern "C" { 30extern "C" {
31 31
32extern void __gmon_start ( ) __attribute(( weak ));
33
34extern void __gmon_start__ ( )
35{
36}
37
32static void *resolve_symbol ( const char *sym ) 38static void *resolve_symbol ( const char *sym )
33{ 39{
34 void *adr = ::dlsym ( RTLD_NEXT, sym ); 40 void *adr = ::dlsym ( RTLD_NEXT, sym );
35 41