Home › Forums › AR Sandbox Forum › Errors During Build-Ubuntu.sh processing
Tagged: error during install script
- This topic has 3 replies, 1 voice, and was last updated 1 year ago by mkaszuba.
-
AuthorPosts
-
November 3, 2023 at 6:54 am #2651mkaszubaParticipant
Hi there. I have tried again with a clean install of Linux Mint and downloading the script file as per the forums instructions. The script errors our when trying to load a dependency called libdc1394-22-dev. After some searching it seems that file is deprecated and replaced with libdc1394-dev so I simple edit is the script allows that part to continue.
During the: Configuring makefile in ExamplePrograms/VRMLViewer… phase I get few warnings about Byte size, but the process continues. Then dozens of warnings about unint32, unint16 and unint8 but the process continues.
Where it hard stops for me is here:
Compiling Vrui/Vislets/IKAvatarRenderer.cpp…
In file included from Vrui/Vislets/FrameRateViewer.cpp:24:
/home/arsandbox/src/Vrui-8.0-002/Vrui/Vislets/FrameRateViewer.h:41:9: error: ‘size_t’ does not name a type
41 | size_t historySize; // Default size of history bufferPlease advise on what I can do.
November 3, 2023 at 7:06 am #2652November 3, 2023 at 7:24 am #2655mkaszubaParticipantI was able to work around the size_t error by adding the missing include statement into the frameworkvierwer.h file, then commenting out the download Vrui tarball line in the main script, I also had to hard coding the CD Vrui-8.0-002 line. That got me to the TLS error mentioned here:
http://doc-ok.org/?topic=tls-error-while-compling-vrui-form-script
November 16, 2023 at 8:58 am #2668mkaszubaParticipantHere is the second edit to the build-ubuntu.sh file I made to NOT overwirte the updated/edited frameworkviewer.h file:
#I commented this entire section after the first run. Then hard coded the vrui dir name
#Download and unpack Vrui tarball:
#echo “Downloading Vrui-$VRUI_VERSION-$VRUI_RELEASE into $HOME/src”#wgethttp://web.cs.ucdavis.edu/~okreylos/ResDev/Vrui/Vrui-$VRUI_VERSION-$VRUI_RELEASE.tar.gz | tar xfz
#cd Vrui-$VRUI_VERSION-$VRUI_RELEASE
cd Vrui-8.0-002
#DOWNLOAD_RESULT=$?#if [ $DOWNLOAD_RESULT -ne 0 ]; then
#echo “Problem while downloading or unpacking Vrui; please check your network connection and try again”
#exit $DOWNLOAD_RESULT
#fi -
AuthorPosts
- You must be logged in to reply to this topic.