Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. icu
    Log in to post

    • SOLVED ICU 58.2 cross-compilation
      Qt WebKit • arm qt5.8 icu • • SimonB  

      4
      0
      Votes
      4
      Posts
      3044
      Views

      I got it to work by changing 2 things export CPPFLAGS="-Os" And by removing the prefix in the configure, and installing it twice ( one in the sysroot of the toolchain ) and the other in the filesystem for the target sh $ICU_SOURCE_DIR/source/configure --host=arm-cortex_a8-linux-gnueabi -with-cross-build=$ICU_HOST_DIR --prefix="" if ! make -j5 DESTDIR=$SYSROOT install; then echo -e "${RED}Error making ICU Target ( sysroot )!${NC}" exit 1 fi if ! make -j5 DESTDIR=$PREFIX install; then echo -e "${RED}Error Installing ICU Target ( filesystem )!${NC}" exit 1 fi
    • SOLVED Qt 5.7: QtWebEngineWidgets not working on Linux
      QtWebEngine • linux qt 5.7 qtwebengine chromium icu • • Stefan Scherfke  

      4
      0
      Votes
      4
      Posts
      15446
      Views

      mark qtwebengine_resources.pak + qtwebengine_resources_100p.pak+ qtwebengine_resources_200p.pak
    • UNSOLVED Adding ICU support to an existing Qte 5.5 build for webkit support?
      General and Desktop • icu webkit unicode • • ericg22  

      3
      0
      Votes
      3
      Posts
      768
      Views

      @ericg22 You have absolutely no need to rebuild Qt, reply above is complete nonsense. Try 5.6.1, or apply the next patch to your QtWebKit. It says "Windows" in commit message, but also fixes assumption that Qt was configured with ICU. https://codereview.qt-project.org/#/c/153222/
    • UNSOLVED Enable ICU support
      Installation and Deployment • cross compile configure icu • • Mark81  

      4
      0
      Votes
      4
      Posts
      2575
      Views

      @Mark81 it's a compiler issue: https://github.com/raspberrypi/tools/issues/41
    • UNSOLVED Building Qt with OpenSSL and ICU support FAILED
      Installation and Deployment • openssl build qt icu • • Leonis  

      8
      0
      Votes
      8
      Posts
      3233
      Views

      i still think there is simpler explanation for your issue. The linker can't even find the lib file specified. Are you really sure that the libs are in "C:\source\icu2\lib"? And not in a release/debug subfolder, etc.?
    • UNSOLVED How to distribute my build of ICU with my app, on Ubuntu/Mint?
      General and Desktop • icu linu • • davidb  

      1
      0
      Votes
      1
      Posts
      445
      Views

      No one has replied

    • Specific extra LIBS folder for Release and Debug when Building Qt
      Installation and Deployment • configure building qt icu • • Hernan Martinez  

      1
      0
      Votes
      1
      Posts
      519
      Views

      No one has replied

    • Errors trying to build Qt 5.4.1 with WebKit on Windows
      General and Desktop • windows build webkit icu • • Braden  

      1
      0
      Votes
      1
      Posts
      760
      Views

      No one has replied

    • [Solved]Qt 5.2.0 and -lGL issue.
      General and Desktop • icu lgl cannot find-lgl gl lib • • dheerendra  

      4
      3
      Votes
      4
      Posts
      4345
      Views

      Just in case someone runs into the same problem and wonders what to install. I have started out with a fresh Ubuntu 13.10 install on VirtualBox and ran into the same problem after I had installed the pre-build of Qt 5.2.0 with Qt creator. In my case the libxcb was apparently missing. However, I have installed ICU first, but this did not solve the problem. Therefore, I have started these commands in a terminal: @ sudo apt-get install libicu-dev sudo apt-get install "^libxcb.*" libx11-xcb-dev libglu1-mesa-dev libxrender-dev @