1.2.5001-2 compiles!
I actually found the fix for the first one too, but overlooked that there’s two places in that file where they compare the version. I also found a patch for the second one!
Git Clone URL: | https://aur.archlinux.org/rstudio-desktop.git (read-only, click to copy) |
---|---|
Package Base: | rstudio-desktop |
Description: | A powerful and productive integrated development environment (IDE) for R programming language |
Upstream URL: | https://github.com/rstudio/rstudio |
Licenses: | AGPL-3.0-only |
Conflicts: | rstudio-desktop |
Provides: | rstudio-desktop |
Submitter: | None |
Maintainer: | xiota |
Last Packager: | xiota |
Votes: | 73 |
Popularity: | 0.027668 |
First Submitted: | 2011-03-04 15:02 (UTC) |
Last Updated: | 2024-12-20 21:33 (UTC) |
« First ‹ Previous 1 .. 15 16 17 18 19 20 21 22 23 24 25 .. 29 Next › Last »
1.2.5001-2 compiles!
I actually found the fix for the first one too, but overlooked that there’s two places in that file where they compare the version. I also found a patch for the second one!
Looking at the compiler errors, I found the following issues:
I dug around in the CMake files for a bit, and the signals issue can be resolved by applying a small patch that changes two version comparisons to VERSION_LESS 1.69.0
instead of LESS 106900
.
The ASIO issue however is more difficult, as I am unable to even find the error location in the thousands of lines of compiler output (thanks, Boost). Mainly because I don't get actual line numbers for the errors, just a stack of header files showing which template instantiation went wrong.
I've tried rstudio-desktop-git and it compiled fine for me. Thus, I guess this is an issue which has already been fixed upstream but is not yet available in a tagged release.
I can’t get it to compile again, can anyone help?
CMake Error at /usr/lib64/cmake/Boost-1.71.0/BoostConfig.cmake:117 (find_package):
Could not find a package configuration file provided by "boost_signals"
(requested version 1.71.0) with any of the following names:
boost_signalsConfig.cmake
boost_signals-config.cmake
Got same error...
make: *** [Makefile:152: all] Error 2
With a bit of backtracking...
BUILD FAILED /tmp/makepkg/rstudio-desktop/src/rstudio-rstudio-f1ac345/src/gwt/build.xml:98: Error running javac compiler
So my javac binary decided to disappear even with jdk-openjdk installed, huh? Turns out I still had wrong Java version set as default and after executing
# archlinux-java set java-8-openjdk
ant was finally willing to build gwt and the Rstudio installation was complete.
Those are all super unhelpful errors, sorry. I can’t debug with them.
Also last time I checked, it builds even in a fresh chroot, so I really don’t know what I can do.
I'm getting the same error as jolars now.
I am getting the error
[ 31%] Built target rstudio-core make: *** [Makefile:152: all] Error 2 ==> ERROR: A failure occurred in package(). Aborting...
Not configuring for me. Missing boost_signals
I have boost and boost-libs installed, so I don't know what's wrong.
It's not building for me neither.
is not building
Pinned Comments
trap000d commented on 2024-05-16 21:42 (UTC) (edited on 2024-05-28 20:09 (UTC) by trap000d)
A note for users.
This package is quite complex. It MAY not be built because of OTHER issues. I always build, install and test it on at least two different machines. Only after that I would push a new version to AUR.
Please try some generic solutions before reporting of build problems:
1) Update all other packages (sudo pacman -Syu),
2) Clean up yay and/or makepkg caches ('yay -Sc', 'rm -rf /var/tmp/makepkg'),
3) Be sure you've got enough RAM (8 GB or more is highly recommended) and space on disk (at least 3 GB).
4) Is your Internet connection is stable, fast and not blocked somewhere?
trap000d commented on 2022-07-05 20:32 (UTC) (edited on 2022-10-03 06:28 (UTC) by trap000d)
PLEASE READ THIS MESSAGE BEFORE COMPLAINING FOR LIBBOOST
When boost is updated to a new version and you see an error message about missing libboost*.so, you will need to rebuild and reinstall the rstudio-desktop package.
trap000d commented on 2022-02-19 06:20 (UTC) (edited on 2022-02-19 06:21 (UTC) by trap000d)
Build logic is slightly changed due to changes in upstream. As they've introduced new project format (quarto), it contradicted with standard Arch package base. In brief, quarto contains pandoc as part of itself, so it's pretty hard to keep together system pandoc and embedded quarto.
So I've "resolved" it such way: if there is "quarto*" package installed, then rstudio-desktop will pick it up and use. Otherwise (not installed), quarto support in rstudio will be disabled.
'quarto' is added as optional dependency.