-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compiling from source fails on Ubuntu 22.04.1 #251
Comments
Hi @amphioxus thanks for reporting this! I'm glad you like HTStream. |
I didn't specifically use the -DBUILD_STATIC_BIN=ON flag when building, so I'm guessing it's using dynamically linked libraries. I just tested the 1.3.3. release you linked above and it works fine on 22.04.
Side note: The reason I built it from source in the first place was that the report JSON structure of the 1.3.0 release was slightly different than the one of the version I encountered when I took a class at UC Davis. (I thought 1.3.0 was the latest release because it’s used for the instructions on https://s4hts.github.io/HTStream/) The newer v1.3.3 release fixes the JSON issue as well for me, so I don't even have a need for building from source now. Thanks!
… On Oct 18, 2022, at 10:50 PM, Sam Hunter ***@***.***> wrote:
Hi @amphioxus <https://github.com/amphioxus> thanks for reporting this! I'm glad you like HTStream.
Do you happen to know if you used statically linked libraries when you compiled from source (e.g. -DBUILD_STATIC_BIN=ON)? I ask because I include statically linked executables as part of the release (https://github.com/s4hts/HTStream/releases/download/v1.3.3/HTStream_v1.3.3.tar.gz <https://github.com/s4hts/HTStream/releases/download/v1.3.3/HTStream_v1.3.3.tar.gz>), and now I wonder if they will stop working under 22.04.
Either way it seems reasonable to upgrade HTStream so that it uses the latest version of googletest.
—
Reply to this email directly, view it on GitHub <#251 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/ABJ6T47P4BHITQ6PZPR2PG3WD6DZ5ANCNFSM6AAAAAARHVAKM4>.
You are receiving this because you were mentioned.
|
After updating from Ubuntu 20.04 to the new 22.04 LTS version, HTStream no longer worked for me. (I had previously installed it from source.) I tried rebuilding it, but when running
make
, the build process stopped with an error at[ 12%] Building CXX object googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o
Since the external googletest library seemed like the culprit here, I downloaded the newest googletest release from https://github.com/google/googletest (v1.12.1) and placed the tar file (
release-1.12.1.tar.gz
) withinext/googletest
of the HTStream repo.I then changed the file
cmake/gtest.cmake
to use the updated googletest version instead of the included v.1.10.0 one. Here are the changes I applied:After running
cmake ..
andmake
again, the build succeeded and it seems like everything is working as it should. Maybe this info helps someone...Thanks for this great tool!
Armin
The text was updated successfully, but these errors were encountered: