Skip to main content
Participant
January 21, 2009
Question

libstdc++.so.6?

  • January 21, 2009
  • 1 reply
  • 1523 views
When i try to install FMS3.5 i get this error... anyone know how to bypass this of fix the problem?

Thanks!

/FMS/FMS_3_5_0_r405$ ./installFMS
./fmsini: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
ERROR: You are running the Adobe Flash Media Server installer
on the wrong platform.

Server info:
SuSE Linux 9.3 (x86-64)
kernel: 2.6.11.4-21.7-smp


    This topic has been closed for replies.

    1 reply

    Participating Frequently
    January 23, 2009
    The runtime linkages need to be satisfied. run "ldd ./fmsmaster" will show you what linkages are satisfied or not sasified by your environment..

    example: ldd ./fmsmaster:
    linux-gate.so.1 => (0x00dc4000)
    libpthread.so.0 => /lib/libpthread.so.0 (0x00d42000)
    libnspr4.so => /usr/lib/libnspr4.so (0x03490000)
    libplc4.so => /usr/lib/libplc4.so (0x03343000)
    libplds4.so => /usr/lib/libplds4.so (0x03349000)
    libasneu.so.1 => not found <-- the ./server script sets LD_LIBRARY_PATH
    librt.so.1 => /lib/librt.so.1 (0x00d70000)
    libdl.so.2 => /lib/libdl.so.2 (0x00d13000)
    libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x031f0000)
    libm.so.6 => /lib/libm.so.6 (0x00d19000)
    libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00b1d000)
    libc.so.6 => /lib/libc.so.6 (0x00bcd000)
    /lib/ld-linux.so.2 (0x00baf000)

    For your particular case you probably need to download libstdc++compat, and modify ldconfig (or whatever suse uses) to get things up and running.