Recent Posts

Pages: [1] 2 3 ... 10
1
SlickEdit® / Re: help browser Qt5 version not working
« Last post by adadad on Today at 04:15:45 PM »
Thanks Clark, using the files you provided works as well, but TBH, I'd much rather use libraries provided by my distribution especially for XML parsing, given the sheer number of CVEs in libxml, see https://www.cvedetails.com/vulnerability-list/vendor_id-1962/product_id-3311/Xmlsoft-Libxml2.html

I'm on Debian/testing.
2
SlickEdit® / Re: help browser Qt5 version not working
« Last post by Clark on Today at 03:04:14 PM »
Try placing the two attached files in your vslick28/bin directory.

Let me know if this fixes this problem and I will include these with the installer.
3
SlickEdit® / Re: help browser Qt5 version not working
« Last post by Clark on Today at 03:00:35 PM »
What Linux are you using? I'd like to create a VM I can test this issue on.
4
SlickEdit® / Re: help browser Qt5 version not working
« Last post by adadad on Today at 10:28:15 AM »
From the above it follows that SlickEdit's libstdc++.so.6 should be moved out of the way so that the system one is used, and things start to work fine.
5
SlickEdit® / help browser Qt5 version not working
« Last post by adadad on Today at 10:22:58 AM »
Hi,

I don't know if you're interested in reports like this, but using the Qt5 version, the help browser doesn't start for me (Linux/x86_64):
Code: [Select]
$ /opt/vslick28/bin/assistant
/opt/vslick28/bin/assistant_exe: /opt/vslick28/bin/libstdc++.so.6: version `GLIBCXX_3.4.30' not found (required by /lib/x86_64-linux-gnu/libicuuc.so.72)

The reason is that /opt/vslick28/bin/libQt5WebKitWidgets.so.5 pulls in libxml2.so.2, which on my system is linked against ibicuuc.so.72. So we end up with two versions of libicu, which is bad for two reasons: a) there should never be two same libraries linked into an application, b) but more importantly my newer ibicuuc.so.72 doesn't work with the older libstdc++.so.6 from the SlickEdit installation:
Code: [Select]
$ LD_LIBRARY_PATH=/opt/vslick28/bin LD_TRACE_LOADED_OBJECTS=1 LD_DEBUG=files /lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 /opt/vslick28/bin/assistant_exe
    187039: file=/opt/vslick28/bin/assistant_exe [0];  generating link map
    187039:   dynamic: 0x00000000004c79b8  base: 0x0000000000000000   size: 0x00000000000ca0c0
    187039:     entry: 0x0000000000430778  phdr: 0x0000000000400040  phnum:                 11
    187039:
    187039:
    187039: file=libQt5Help.so.5 [0];  needed by /opt/vslick28/bin/assistant_exe [0]
    187039: file=libQt5Help.so.5 [0];  generating link map
    187039:   dynamic: 0x00007efc3e304b18  base: 0x00007efc3e29b000   size: 0x000000000006abc8
    187039:     entry: 0x00007efc3e2ba720  phdr: 0x00007efc3e29b040  phnum:                  8
    187039:
    187039:
    187039: file=libQt5PrintSupport.so.5 [0];  needed by /opt/vslick28/bin/assistant_exe [0]
    187039: file=libQt5PrintSupport.so.5 [0];  generating link map
    187039:   dynamic: 0x00007efc3e298bf0  base: 0x00007efc3e22f000   size: 0x000000000006b458
    187039:     entry: 0x00007efc3e2566a0  phdr: 0x00007efc3e22f040  phnum:                  8
    187039:
    187039:
    187039: file=libQt5WebKitWidgets.so.5 [0];  needed by /opt/vslick28/bin/assistant_exe [0]
    187039: file=libQt5WebKitWidgets.so.5 [0];  generating link map
    187039:   dynamic: 0x00007efc3e22ca10  base: 0x00007efc3e1e7000   size: 0x0000000000047038
    187039:     entry: 0x00007efc3e208050  phdr: 0x00007efc3e1e7040  phnum:                  8
    187039:
    187039:
    187039: file=libQt5Widgets.so.5 [0];  needed by /opt/vslick28/bin/assistant_exe [0]
    187039: file=libQt5Widgets.so.5 [0];  generating link map
    187039:   dynamic: 0x00007efc3e00d4c8  base: 0x00007efc3da00000   size: 0x0000000000613ad8
    187039:     entry: 0x00007efc3db5d780  phdr: 0x00007efc3da00040  phnum:                  8
    187039:
    187039:
    187039: file=libQt5WebKit.so.5 [0];  needed by /opt/vslick28/bin/assistant_exe [0]
    187039: file=libQt5WebKit.so.5 [0];  generating link map
    187039:   dynamic: 0x00007efc3d818558  base: 0x00007efc3ba00000   size: 0x0000000001e625e0
    187039:     entry: 0x00007efc3bd7b080  phdr: 0x00007efc3ba00040  phnum:                  8
    187039:
    187039:
    187039: file=libQt5Gui.so.5 [0];  needed by /opt/vslick28/bin/assistant_exe [0]
    187039: file=libQt5Gui.so.5 [0];  generating link map
    187039:   dynamic: 0x00007efc3b934ec8  base: 0x00007efc3b400000   size: 0x0000000000544478
    187039:     entry: 0x00007efc3b4c7c20  phdr: 0x00007efc3b400040  phnum:                  8
    187039:
    187039:
    187039: file=libQt5Network.so.5 [0];  needed by /opt/vslick28/bin/assistant_exe [0]
    187039: file=libQt5Network.so.5 [0];  generating link map
    187039:   dynamic: 0x00007efc3e1e2990  base: 0x00007efc3e0cc000   size: 0x0000000000118ad8
    187039:     entry: 0x00007efc3e103b80  phdr: 0x00007efc3e0cc040  phnum:                  8
    187039:
    187039:
    187039: file=libQt5Sql.so.5 [0];  needed by /opt/vslick28/bin/assistant_exe [0]
    187039: file=libQt5Sql.so.5 [0];  generating link map
    187039:   dynamic: 0x00007efc3e0cac88  base: 0x00007efc3e090000   size: 0x000000000003b6b0
    187039:     entry: 0x00007efc3e0a3a50  phdr: 0x00007efc3e090040  phnum:                  8
    187039:
    187039:
    187039: file=libQt5Core.so.5 [0];  needed by /opt/vslick28/bin/assistant_exe [0]
    187039: file=libQt5Core.so.5 [0];  generating link map
    187039:   dynamic: 0x00007efc3b3872f8  base: 0x00007efc3ae00000   size: 0x000000000058cf28
    187039:     entry: 0x00007efc3b148340  phdr: 0x00007efc3ae00040  phnum:                 10
    187039:
    187039:
    187039: file=libpthread.so.0 [0];  needed by /opt/vslick28/bin/assistant_exe [0]
    187039: file=libpthread.so.0 [0];  generating link map
    187039:   dynamic: 0x00007efc3e078dc8  base: 0x00007efc3e075000   size: 0x0000000000004010
    187039:     entry: 0x00007efc3e075000  phdr: 0x00007efc3e075040  phnum:                 11
    187039:
    187039:
    187039: file=libstdc++.so.6 [0];  needed by /opt/vslick28/bin/assistant_exe [0]
    187039: file=libstdc++.so.6 [0];  generating link map
    187039:   dynamic: 0x00007efc3ada2b08  base: 0x00007efc3aa00000   size: 0x00000000003a9400
    187039:     entry: 0x00007efc3aa8b450  phdr: 0x00007efc3aa00040  phnum:                  7
    187039:
    187039:
    187039: file=libm.so.6 [0];  needed by /opt/vslick28/bin/assistant_exe [0]
    187039: file=libm.so.6 [0];  generating link map
    187039:   dynamic: 0x00007efc3d9fed48  base: 0x00007efc3d921000   size: 0x00000000000de0f8
    187039:     entry: 0x00007efc3d921000  phdr: 0x00007efc3d921040  phnum:                 11
    187039:
    187039:
    187039: file=libgcc_s.so.1 [0];  needed by /opt/vslick28/bin/assistant_exe [0]
    187039: file=libgcc_s.so.1 [0];  generating link map
    187039:   dynamic: 0x00007efc3a816030  base: 0x00007efc3a600000   size: 0x0000000000216628
    187039:     entry: 0x00007efc3a6029b0  phdr: 0x00007efc3a600040  phnum:                  5
    187039:
    187039:
    187039: file=libc.so.6 [0];  needed by /opt/vslick28/bin/assistant_exe [0]
    187039: file=libc.so.6 [0];  generating link map
    187039:   dynamic: 0x00007efc3a9f0b80  base: 0x00007efc3a81e000   size: 0x00000000001e1f50
    187039:     entry: 0x00007efc3a845890  phdr: 0x00007efc3a81e040  phnum:                 14
    187039:
    187039:
    187039: file=libX11.so.6 [0];  needed by /opt/vslick28/bin/libQt5WebKitWidgets.so.5 [0]
    187039: file=libX11.so.6 [0];  generating link map
    187039:   dynamic: 0x00007efc3a5fab30  base: 0x00007efc3a4be000   size: 0x0000000000141d48
    187039:     entry: 0x00007efc3a4be000  phdr: 0x00007efc3a4be040  phnum:                  9
    187039:
    187039:
    187039: file=libxslt.so.1 [0];  needed by /opt/vslick28/bin/libQt5WebKitWidgets.so.5 [0]
    187039: file=libxslt.so.1 [0];  generating link map
    187039:   dynamic: 0x00007efc3e0710b0  base: 0x00007efc3e030000   size: 0x0000000000042560
    187039:     entry: 0x00007efc3e030000  phdr: 0x00007efc3e030040  phnum:                  9
    187039:
    187039:
    187039: file=libxml2.so.2 [0];  needed by /opt/vslick28/bin/libQt5WebKitWidgets.so.5 [0]
    187039: file=libxml2.so.2 [0];  generating link map
    187039:   dynamic: 0x00007efc3a4bb508  base: 0x00007efc3a312000   size: 0x00000000001abdc8
    187039:     entry: 0x00007efc3a312000  phdr: 0x00007efc3a312040  phnum:                  9
    187039:
    187039:
    187039: file=libsqlite3.so.0 [0];  needed by /opt/vslick28/bin/libQt5WebKitWidgets.so.5 [0]
    187039: file=libsqlite3.so.0 [0];  generating link map
    187039:   dynamic: 0x00007efc3a30a558  base: 0x00007efc3a1ab000   size: 0x0000000000166038
    187039:     entry: 0x00007efc3a1ab000  phdr: 0x00007efc3a1ab040  phnum:                  9
    187039:
    187039:
    187039: file=libfontconfig.so.1 [0];  needed by /opt/vslick28/bin/libQt5WebKitWidgets.so.5 [0]
    187039: file=libfontconfig.so.1 [0];  generating link map
    187039:   dynamic: 0x00007efc3d91fdb0  base: 0x00007efc3d8d6000   size: 0x000000000004a648
    187039:     entry: 0x00007efc3d8d6000  phdr: 0x00007efc3d8d6040  phnum:                  9
    187039:
    187039:
    187039: file=libicui18n.so.48 [0];  needed by /opt/vslick28/bin/libQt5WebKitWidgets.so.5 [0]
    187039: file=libicui18n.so.48 [0];  generating link map
    187039:   dynamic: 0x00007efc39fc1940  base: 0x00007efc39c00000   size: 0x00000000003c3a80
    187039:     entry: 0x00007efc39c65cd0  phdr: 0x00007efc39c00040  phnum:                  5
    187039:
    187039:
    187039: file=libicuuc.so.48 [0];  needed by /opt/vslick28/bin/libQt5WebKitWidgets.so.5 [0]
    187039: file=libicuuc.so.48 [0];  generating link map
    187039:   dynamic: 0x00007efc39b64178  base: 0x00007efc39800000   size: 0x0000000000368de0
    187039:     entry: 0x00007efc39845be0  phdr: 0x00007efc39800040  phnum:                  5
    187039:
    187039:
    187039: file=libicudata.so.48 [0];  needed by /opt/vslick28/bin/libQt5WebKitWidgets.so.5 [0]
    187039: file=libicudata.so.48 [0];  generating link map
    187039:   dynamic: 0x00007efc3976e000  base: 0x00007efc38400000   size: 0x000000000136e0d0
    187039:     entry: 0x00007efc38400216  phdr: 0x00007efc38400040  phnum:                  4
    187039:
    187039:
    187039: file=libdl.so.2 [0];  needed by /opt/vslick28/bin/libQt5Network.so.5 [0]
    187039: file=libdl.so.2 [0];  generating link map
    187039:   dynamic: 0x00007efc3e02adc8  base: 0x00007efc3e027000   size: 0x0000000000004010
    187039:     entry: 0x00007efc3e027000  phdr: 0x00007efc3e027040  phnum:                 11
    187039:
    187039:
    187039: file=libgssapi_krb5.so.2 [0];  needed by /opt/vslick28/bin/libQt5Network.so.5 [0]
    187039: file=libgssapi_krb5.so.2 [0];  generating link map
    187039:   dynamic: 0x00007efc3d8d3a18  base: 0x00007efc3d884000   size: 0x0000000000051500
    187039:     entry: 0x00007efc3d884000  phdr: 0x00007efc3d884040  phnum:                  9
    187039:
    187039:
    187039: file=libgthread-2.0.so.0 [0];  needed by /opt/vslick28/bin/libQt5Core.so.5 [0]
    187039: file=libgthread-2.0.so.0 [0];  generating link map
    187039:   dynamic: 0x00007efc3e025da8  base: 0x00007efc3e022000   size: 0x0000000000004010
    187039:     entry: 0x00007efc3e022000  phdr: 0x00007efc3e022040  phnum:                  9
    187039:
    187039:
    187039: file=libglib-2.0.so.0 [0];  needed by /opt/vslick28/bin/libQt5Core.so.5 [0]
    187039: file=libglib-2.0.so.0 [0];  generating link map
    187039:   dynamic: 0x00007efc3a1a85e0  base: 0x00007efc3a067000   size: 0x00000000001431c8
    187039:     entry: 0x00007efc3a067000  phdr: 0x00007efc3a067040  phnum:                  9
    187039:
    187039:
    187039: file=librt.so.1 [0];  needed by /opt/vslick28/bin/libQt5Core.so.5 [0]
    187039: file=librt.so.1 [0];  generating link map
    187039:   dynamic: 0x00007efc3e020d88  base: 0x00007efc3e01d000   size: 0x0000000000004020
    187039:     entry: 0x00007efc3e01d000  phdr: 0x00007efc3e01d040  phnum:                 11
    187039:
    187039:
    187039: file=libxcb.so.1 [0];  needed by /lib/x86_64-linux-gnu/libX11.so.6 [0]
    187039: file=libxcb.so.1 [0];  generating link map
    187039:   dynamic: 0x0000003a01424138  base: 0x0000000000000000   size: 0x0000000000224728
    187039:     entry: 0x0000003a0120b910  phdr: 0x0000003a01200040  phnum:                  6
    187039:
    187039:
    187039: file=libicuuc.so.72 [0];  needed by /lib/x86_64-linux-gnu/libxml2.so.2 [0]
    187039: file=libicuuc.so.72 [0];  generating link map
    187039:   dynamic: 0x00007efc383fc9f8  base: 0x00007efc38202000   size: 0x00000000001fd290
    187039:     entry: 0x00007efc38202000  phdr: 0x00007efc38202040  phnum:                  9
    187039:
    187039:
    187039: file=libz.so.1 [0];  needed by /lib/x86_64-linux-gnu/libxml2.so.2 [0]
    187039: file=libz.so.1 [0];  generating link map
    187039:   dynamic: 0x00007efc3d882dd0  base: 0x00007efc3d865000   size: 0x000000000001e190
    187039:     entry: 0x00007efc3d865000  phdr: 0x00007efc3d865040  phnum:                  9
    187039:
    187039:
    187039: file=liblzma.so.5 [0];  needed by /lib/x86_64-linux-gnu/libxml2.so.2 [0]
    187039: file=liblzma.so.5 [0];  generating link map
    187039:   dynamic: 0x00007efc3b9feb00  base: 0x00007efc3b9d1000   size: 0x000000000002e018
    187039:     entry: 0x00007efc3b9d1000  phdr: 0x00007efc3b9d1040  phnum:                  9
    187039:
    187039:
    187039: file=libfreetype.so.6 [0];  needed by /lib/x86_64-linux-gnu/libfontconfig.so.1 [0]
    187039: file=libfreetype.so.6 [0];  generating link map
    187039:   dynamic: 0x00007efc38200860  base: 0x00007efc38136000   size: 0x00000000000cb010
    187039:     entry: 0x00007efc38136000  phdr: 0x00007efc38136040  phnum:                  9
    187039:
    187039:
    187039: file=libexpat.so.1 [0];  needed by /lib/x86_64-linux-gnu/libfontconfig.so.1 [0]
    187039: file=libexpat.so.1 [0];  generating link map
    187039:   dynamic: 0x00007efc3b9cfdc0  base: 0x00007efc3b9a6000   size: 0x000000000002a080
    187039:     entry: 0x00007efc3b9a6000  phdr: 0x00007efc3b9a6040  phnum:                  9
    187039:
    187039:
    187039: file=libkrb5.so.3 [0];  needed by /lib/x86_64-linux-gnu/libgssapi_krb5.so.2 [0]
    187039: file=libkrb5.so.3 [0];  generating link map
    187039:   dynamic: 0x00007efc38132bf8  base: 0x00007efc3805c000   size: 0x00000000000d97a0
    187039:     entry: 0x00007efc3805c000  phdr: 0x00007efc3805c040  phnum:                  9
    187039:
    187039:
    187039: file=libk5crypto.so.3 [0];  needed by /lib/x86_64-linux-gnu/libgssapi_krb5.so.2 [0]
    187039: file=libk5crypto.so.3 [0];  generating link map
    187039:   dynamic: 0x00007efc3b9a4d88  base: 0x00007efc3b979000   size: 0x000000000002c2d8
    187039:     entry: 0x00007efc3b979000  phdr: 0x00007efc3b979040  phnum:                  9
    187039:
    187039:
    187039: file=libcom_err.so.2 [0];  needed by /lib/x86_64-linux-gnu/libgssapi_krb5.so.2 [0]
    187039: file=libcom_err.so.2 [0];  generating link map
    187039:   dynamic: 0x00007efc3b977c78  base: 0x00007efc3b973000   size: 0x0000000000005048
    187039:     entry: 0x00007efc3b973000  phdr: 0x00007efc3b973040  phnum:                 10
    187039:
    187039:
    187039: file=libkrb5support.so.0 [0];  needed by /lib/x86_64-linux-gnu/libgssapi_krb5.so.2 [0]
    187039: file=libkrb5support.so.0 [0];  generating link map
    187039:   dynamic: 0x00007efc3b971d58  base: 0x00007efc3b965000   size: 0x000000000000d568
    187039:     entry: 0x00007efc3b965000  phdr: 0x00007efc3b965040  phnum:                  9
    187039:
    187039:
    187039: file=libpcre2-8.so.0 [0];  needed by /lib/x86_64-linux-gnu/libglib-2.0.so.0 [0]
    187039: file=libpcre2-8.so.0 [0];  generating link map
    187039:   dynamic: 0x00007efc3a065dc8  base: 0x00007efc39fcc000   size: 0x000000000009a388
    187039:     entry: 0x00007efc39fcc000  phdr: 0x00007efc39fcc040  phnum:                  9
    187039:
    187039:
    187039: file=libXau.so.6 [0];  needed by /opt/vslick28/bin/libxcb.so.1 [0]
    187039: file=libXau.so.6 [0];  generating link map
    187039:   dynamic: 0x00007efc3b963e10  base: 0x00007efc3b960000   size: 0x0000000000004120
    187039:     entry: 0x00007efc3b961200  phdr: 0x00007efc3b960040  phnum:                  9
    187039:
    187039:
    187039: file=libicudata.so.72 [0];  needed by /lib/x86_64-linux-gnu/libicuuc.so.72 [0]
    187039: file=libicudata.so.72 [0];  generating link map
    187039:   dynamic: 0x00007efc37fd0e38  base: 0x00007efc36200000   size: 0x0000000001dd1010
    187039:     entry: 0x00007efc36200000  phdr: 0x00007efc36200040  phnum:                  8
    187039:
    187039:
    187039: file=libbz2.so.1.0 [0];  needed by /lib/x86_64-linux-gnu/libfreetype.so.6 [0]
    187039: file=libbz2.so.1.0 [0];  generating link map
    187039:   dynamic: 0x00007efc3b95ec60  base: 0x00007efc3b94d000   size: 0x0000000000012c28
    187039:     entry: 0x00007efc3b94f2d0  phdr: 0x00007efc3b94d040  phnum:                  9
    187039:
    187039:
    187039: file=libpng16.so.16 [0];  needed by /lib/x86_64-linux-gnu/libfreetype.so.6 [0]
    187039: file=libpng16.so.16 [0];  generating link map
    187039:   dynamic: 0x00007efc3b3fe908  base: 0x00007efc3b3ca000   size: 0x0000000000035010
    187039:     entry: 0x00007efc3b3ca000  phdr: 0x00007efc3b3ca040  phnum:                  9
    187039:
    187039:
    187039: file=libbrotlidec.so.1 [0];  needed by /lib/x86_64-linux-gnu/libfreetype.so.6 [0]
    187039: file=libbrotlidec.so.1 [0];  generating link map
    187039:   dynamic: 0x00007efc3b3c8db8  base: 0x00007efc3b3bd000   size: 0x000000000000c068
    187039:     entry: 0x00007efc3b3bd000  phdr: 0x00007efc3b3bd040  phnum:                  9
    187039:
    187039:
    187039: file=libkeyutils.so.1 [0];  needed by /lib/x86_64-linux-gnu/libkrb5.so.3 [0]
    187039: file=libkeyutils.so.1 [0];  generating link map
    187039:   dynamic: 0x00007efc3b94bc98  base: 0x00007efc3b946000   size: 0x0000000000006010
    187039:     entry: 0x00007efc3b946000  phdr: 0x00007efc3b946040  phnum:                  9
    187039:
    187039:
    187039: file=libresolv.so.2 [0];  needed by /lib/x86_64-linux-gnu/libkrb5.so.3 [0]
    187039: file=libresolv.so.2 [0];  generating link map
    187039:   dynamic: 0x00007efc3b3b9d48  base: 0x00007efc3b3ac000   size: 0x0000000000010a28
    187039:     entry: 0x00007efc3b3ac000  phdr: 0x00007efc3b3ac040  phnum:                 11
    187039:
    187039:
    187039: file=libbrotlicommon.so.1 [0];  needed by /lib/x86_64-linux-gnu/libbrotlidec.so.1 [0]
    187039: file=libbrotlicommon.so.1 [0];  generating link map
    187039:   dynamic: 0x00007efc3adfede8  base: 0x00007efc3addd000   size: 0x0000000000022020
    187039:     entry: 0x00007efc3addd000  phdr: 0x00007efc3addd040  phnum:                  9
    187039:
    187039: /opt/vslick28/bin/libstdc++.so.6: error: version lookup error: version `GLIBCXX_3.4.30' not found (required by /lib/x86_64-linux-gnu/libicuuc.so.72) (continued)
/opt/vslick28/bin/assistant_exe: /opt/vslick28/bin/libstdc++.so.6: version `GLIBCXX_3.4.30' not found (required by /lib/x86_64-linux-gnu/libicuuc.so.72)
linux-vdso.so.1 (0x00007ffd129f3000)
libQt5Help.so.5 => /opt/vslick28/bin/libQt5Help.so.5 (0x00007efc3e29b000)
libQt5PrintSupport.so.5 => /opt/vslick28/bin/libQt5PrintSupport.so.5 (0x00007efc3e22f000)
libQt5WebKitWidgets.so.5 => /opt/vslick28/bin/libQt5WebKitWidgets.so.5 (0x00007efc3e1e7000)
libQt5Widgets.so.5 => /opt/vslick28/bin/libQt5Widgets.so.5 (0x00007efc3da00000)
libQt5WebKit.so.5 => /opt/vslick28/bin/libQt5WebKit.so.5 (0x00007efc3ba00000)
libQt5Gui.so.5 => /opt/vslick28/bin/libQt5Gui.so.5 (0x00007efc3b400000)
libQt5Network.so.5 => /opt/vslick28/bin/libQt5Network.so.5 (0x00007efc3e0cc000)
libQt5Sql.so.5 => /opt/vslick28/bin/libQt5Sql.so.5 (0x00007efc3e090000)
libQt5Core.so.5 => /opt/vslick28/bin/libQt5Core.so.5 (0x00007efc3ae00000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007efc3e075000)
libstdc++.so.6 => /opt/vslick28/bin/libstdc++.so.6 (0x00007efc3aa00000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007efc3d921000)
libgcc_s.so.1 => /opt/vslick28/bin/libgcc_s.so.1 (0x00007efc3a600000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007efc3a81e000)
libX11.so.6 => /lib/x86_64-linux-gnu/libX11.so.6 (0x00007efc3a4be000)
libxslt.so.1 => /lib/x86_64-linux-gnu/libxslt.so.1 (0x00007efc3e030000)
libxml2.so.2 => /lib/x86_64-linux-gnu/libxml2.so.2 (0x00007efc3a312000)
libsqlite3.so.0 => /lib/x86_64-linux-gnu/libsqlite3.so.0 (0x00007efc3a1ab000)
libfontconfig.so.1 => /lib/x86_64-linux-gnu/libfontconfig.so.1 (0x00007efc3d8d6000)
libicui18n.so.48 => /opt/vslick28/bin/libicui18n.so.48 (0x00007efc39c00000)
libicuuc.so.48 => /opt/vslick28/bin/libicuuc.so.48 (0x00007efc39800000)
libicudata.so.48 => /opt/vslick28/bin/libicudata.so.48 (0x00007efc38400000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007efc3e027000)
libgssapi_krb5.so.2 => /lib/x86_64-linux-gnu/libgssapi_krb5.so.2 (0x00007efc3d884000)
libgthread-2.0.so.0 => /lib/x86_64-linux-gnu/libgthread-2.0.so.0 (0x00007efc3e022000)
libglib-2.0.so.0 => /lib/x86_64-linux-gnu/libglib-2.0.so.0 (0x00007efc3a067000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007efc3e01d000)
/lib64/ld-linux-x86-64.so.2 => /lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 (0x00007efc3e308000)
libxcb.so.1 => /opt/vslick28/bin/libxcb.so.1 (0x0000003a01200000)
libicuuc.so.72 => /lib/x86_64-linux-gnu/libicuuc.so.72 (0x00007efc38202000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007efc3d865000)
liblzma.so.5 => /lib/x86_64-linux-gnu/liblzma.so.5 (0x00007efc3b9d1000)
libfreetype.so.6 => /lib/x86_64-linux-gnu/libfreetype.so.6 (0x00007efc38136000)
libexpat.so.1 => /lib/x86_64-linux-gnu/libexpat.so.1 (0x00007efc3b9a6000)
libkrb5.so.3 => /lib/x86_64-linux-gnu/libkrb5.so.3 (0x00007efc3805c000)
libk5crypto.so.3 => /lib/x86_64-linux-gnu/libk5crypto.so.3 (0x00007efc3b979000)
libcom_err.so.2 => /lib/x86_64-linux-gnu/libcom_err.so.2 (0x00007efc3b973000)
libkrb5support.so.0 => /lib/x86_64-linux-gnu/libkrb5support.so.0 (0x00007efc3b965000)
libpcre2-8.so.0 => /lib/x86_64-linux-gnu/libpcre2-8.so.0 (0x00007efc39fcc000)
libXau.so.6 => /lib/x86_64-linux-gnu/libXau.so.6 (0x00007efc3b960000)
libicudata.so.72 => /lib/x86_64-linux-gnu/libicudata.so.72 (0x00007efc36200000)
libbz2.so.1.0 => /lib/x86_64-linux-gnu/libbz2.so.1.0 (0x00007efc3b94d000)
libpng16.so.16 => /lib/x86_64-linux-gnu/libpng16.so.16 (0x00007efc3b3ca000)
libbrotlidec.so.1 => /lib/x86_64-linux-gnu/libbrotlidec.so.1 (0x00007efc3b3bd000)
libkeyutils.so.1 => /lib/x86_64-linux-gnu/libkeyutils.so.1 (0x00007efc3b946000)
libresolv.so.2 => /lib/x86_64-linux-gnu/libresolv.so.2 (0x00007efc3b3ac000)
libbrotlicommon.so.1 => /lib/x86_64-linux-gnu/libbrotlicommon.so.1 (0x00007efc3addd000)

The Qt4 version works, as it has no dependency on libxml.
6
SlickEdit® / Re: Q: How to use color coding with Extended Palette?
« Last post by Clark on November 30, 2023, 02:58:28 PM »
There are'nt color coding token types for all of the different color types. You'll need to choose an existing color coding token type and configure that color.  Maybe you could choose "User Defined keyword" and configure that color.
7
SlickEdit® / Re: Slickedit 28 UI freezes (due to tagging?)
« Last post by Clark on November 30, 2023, 02:49:44 PM »
Keep me posted if something changes.
8
SlickEdit® / Re: Slickedit 28 UI freezes (due to tagging?)
« Last post by adadad on November 30, 2023, 12:48:22 PM »
Hi Clark,

The files are all local. A linux source tree has a couple flex / bison source files, lots of text files (Documentation/ folder), lots of Makefiles but mainly c and h, really.

I've removed the ~/.slickedit/28.0.0 folder, which caused SE28 to recreate it from the ~/.slickedit/25.0.2 one (same as originally), and the UI hasn't frozen once in the last hour. Unfortunately, I have no backup of the apparently corrupt previous ~/.slickedit/28.0.0
9
SlickEdit® / Q: How to use color coding with Extended Palette?
« Last post by Bamsen on November 30, 2023, 08:15:41 AM »
Hi,

I am trying to set color coding of a specific word to "Extended Palette 00" but this does not show in the drop down.
How can I use the Extended Palette colors?

---
Morten A. Steien
10
SlickEdit® / Re: Slickedit 28 UI freezes (due to tagging?)
« Last post by Clark on November 29, 2023, 04:21:25 PM »
It's good that you tried removing Makefiles since that can cause a lot of over head. What are all the other file types in your workspace tag file? Are your files local or remote/networked?
Pages: [1] 2 3 ... 10