§2024-12-20

using rstudio-server@JetsonOrinNano

please put into conda control and install nodejs >

$ conda activate R-4.4
$ conda install -c conda-forge nodejs
$ $ which node
/home/alexlai/anaconda3/envs/R-4.4/bin/node
(R-4.4) alexlai@Jetson:~/build/rstudio/build$ node --version
v22.12.0
  1. ` conda init RStudio
base) rstudio-server@Jetson:~$ conda create -n RStudio
Channels:
 - defaults
Platform: linux-aarch64
Collecting package metadata (repodata.json): done
Solving environment: done

## Package Plan ##

  environment location: /home/rstudio-server/anaconda3/envs/RStudio



Proceed ([y]/n)? y

Preparing transaction: done
Verifying transaction: done
Executing transaction: done
#
# To activate this environment, use
#
#     $ conda activate RStudio
#
# To deactivate an active environment, use
#
#     $ conda deactivate

(base) rstudio-server@Jetson:~$ conda activate RStudio
(RStudio) rstudio-server@Jetson:~$ conda install -c conda-forge nodejs
(RStudio) rstudio-server@Jetson:~$ which node                                                                                                                                
/home/rstudio-server/anaconda3/envs/RStudio/bin/node                                                                                                                         
(RStudio) rstudio-server@Jetson:~$ node --version                                                                                                                            
v22.12.0                                                                                                                                                              
(RStudio) rstudio-server@Jetson:~$ which npm
/home/rstudio-server/anaconda3/envs/RStudio/bin/npm                                                                                                                          
(RStudio) rstudio-server@Jetson:~$ npm --version
10.9.0

(RStudio) rstudio-server@Jetson:~$ conda install conda-forge::python
(RStudio) rstudio-server@Jetson:~$ which python3                                                                                                                             
/home/rstudio-server/anaconda3/envs/RStudio/bin/python3                                                                                                                      
(RStudio) rstudio-server@Jetson:~$ python --version                                                                                                                          
Python 3.13.1                                                                                                                                                                
(RStudio) rstudio-server@Jetson:~$ which python
/home/rstudio-server/anaconda3/envs/RStudio/bin/python                                                                                                                       
(RStudio) rstudio-server@Jetson:~$ which pip                                                                                                                                 
/home/rstudio-server/anaconda3/envs/RStudio/bin/pip                                                                                                                          
(RStudio) rstudio-server@Jetson:~$ pip --version
pip 24.2 from /home/rstudio-server/anaconda3/envs/RStudio/lib/python3.13/site-packages/pip (python 3.13)

(RStudio) rstudio-server@Jetson:~$ conda install r-essentials
/home/rstudio-server/anaconda3/envs/RStudio/bin/R                                                                                                                            
(RStudio) rstudio-server@Jetson:~$                                                                                                                                           
(RStudio) rstudio-server@Jetson:~$ R --version                                                                                                                               
R version 4.4.2 (2024-10-31) -- "Pile of Leaves"                                                                                                                             
Copyright (C) 2024 The R Foundation for Statistical Computing                                                                                                                
Platform: aarch64-conda-linux-gnu                                                                                                                                            
                                                                                                                                                                             
R is free software and comes with ABSOLUTELY NO WARRANTY.                                                                                                                    
You are welcome to redistribute it under the terms of the                                                                                                                    
GNU General Public License versions 2 or 3.                                                                                                                                  
For more information about these matters see                                                                                                                                 
https://www.gnu.org/licenses/.         

  1. git and make
(RStudio) rstudio-server@Jetson:~$ cd RStudio/
(RStudio) rstudio-server@Jetson:~/RStudio$ ls                                                                                                                                
lost+found  scripts                                                                                                                                                          
(RStudio) rstudio-server@Jetson:~/RStudio$ mkdir build && cd $_                                                                                                              
(RStudio) rstudio-server@Jetson:~/RStudio/build$ git clone https://github.com/rstudio/rstudio.git                                                                            
                                                                                                  
$ git clone https://github.com/rstudio/rstudio.git
$ cd rstudio
$ cd ddependencies/linux/    <-- install dependencies
$echo 'alex1765' sudo -S  ./install-dependencies-noble > install-dependencies-noble.log 2>&1 &    <-- using sudo
$ echo 'alex1765' | sudo -S  ./install-dependencies-jammy >install-dependencies-jammy-JestonOrinNano.log 2>&1 &
[3] 8216

-S option: The -S flag tells sudo to read the password from stdin instead of prompting the user interactively in the terminal.

  1. mkdir build && cd $_
(base) alexlai@JetsonOrinNano:/opt/sda3/alexlai/build/rstudioJetsonOrinNano$ mkdir build && cd $_

$ cmake .. -DRSTUDIO_TARGET=Server -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/opt/rstudio  >cmake-JetsonOrinNano.log 2>&1 &

 cmake .. -DRSTUDIO_TARGET=Server -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/opt/rstudio-2024-12-20  >cmake-JetsonOrinNano-2024-12-20.log 2>&1 &^C
  1. make it
$ time make -j6 >make-JetsonOrinNano.log 2>&1 &

-- The C compiler identification is GNU 11.4.0 -- The CXX compiler identification is GNU 11.4.0 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /usr/bin/cc - skipped -- Detecting C compile features -- Detecting C compile features - done -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /usr/bin/c++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Using PTHREAD_STACK_MIN: 131072 -- Building RStudio 2024.12.999-dev+999 -- Machine architecture: aarch64 -- CMake build type: Release -- Using RStudio tools root: /opt/rstudio-tools/aarch64 -- LSB release: ubuntu -- Configured to build GWT -- Using GWT module: org.rstudio.studio.RStudio -- Using ant: /usr/bin/ant -- Configured to install GWT -- Configured to build with libpam features -- Performing Test COMPILER_SUPPORTS_CXX11 -- Performing Test COMPILER_SUPPORTS_CXX11 - Success -- Using RStudio-provided Boost 1.83.0`` $ conda activate R-4.4 $ conda install -c conda-forge nodejs $ $ which node /home/alexlai/anaconda3/envs/R-4.4/bin/node (R-4.4) alexlai@Jetson:~/build/rstudio/build$ node --version v22.12.0 -- Crashpad not yet supported on aarch64 Linux machines; disabling Crashpad -- Crashpad integration disabled via build parameters -- SOCI libraries found under /opt/rstudio-tools/aarch64/soci-4.0.3/build/lib -- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version "3.0.2")
-- Module support is disabled. -- Version: 8.1.1 -- Build type: Release -- CXX_STANDARD: 11 -- Performing Test has_std_11_flag -- Performing Test has_std_11_flag - Success -- Performing Test has_std_0x_flag -- Performing Test has_std_0x_flag - Success -- Performing Test SUPPORTS_USER_DEFINED_LITERALS -- Performing Test SUPPORTS_USER_DEFINED_LITERALS - Success -- Performing Test FMT_HAS_VARIANT -- Performing Test FMT_HAS_VARIANT - Success -- Required features: cxx_variadic_templates -- Looking for strtod_l -- Looking for strtod_l - not found -- Performing Test HAVE_SCANDIR_POSIX -- Performing Test HAVE_SCANDIR_POSIX - Success -- Looking for SA_NOCLDWAIT -- Looking for SA_NOCLDWAIT - found -- Looking for SO_PEERCRED -- Looking for SO_PEERCRED - found -- Looking for inotify_init1 -- Looking for inotify_init1 - found -- Looking for getpeereid -- Looking for getpeereid - not found -- Looking for setresuid -- Looking for setresuid - found -- Looking for group_member -- Looking for group_member - found -- Performing Test HAVE_EXECINFO -- Performing Test HAVE_EXECINFO - Success -- Performing Test PAM_MESSAGE_CONST -- Performing Test PAM_MESSAGE_CONST - Success -- Found PAM: /usr/lib/aarch64-linux-gnu/libpam.so;/usr/lib/aarch64-linux-gnu/libdl.a -- Configured to build SERVER -- Found LibR: /usr/lib/R
-- Found R: /usr/lib/R -- Packaging RStudio for Ubuntu 22.04.5 LTS -- Configuring done -- Generating done -- Build files have been written to: /home/alexlai/build/rstudio/build .... [ 99%] Building CXX object src/cpp/session/CMakeFiles/rsession.dir/modules/SessionRTests.cpp.o [ 99%] Building CXX object src/cpp/session/CMakeFiles/rsession.dir/modules/SessionTerminalShellTests.cpp.o [100%] Building CXX object src/cpp/session/CMakeFiles/rsession.dir/prefs/PrefTests.cpp.o [100%] Linking CXX executable rsession [100%] Built target rsession [100%] Building GWT sources Buildfile: /home/alexlai/build/rstudio/src/gwt/build.xml [available] DEPRECATED - used to override an existing property. [available] Build file should not reuse the same property name for different values.

i18n-checksum: [echo] Commands.cmd.xml i18n checksum matches: true

i18n-unix-check:

i18n-unix:

i18n-windows-check:

i18n-windows:

generate-i18n:

ext: [jscomp] Compiling 62 file(s) with 93 extern(s) [jscomp] 0 error(s), 0 warning(s)

javac: [mkdir] Created dir: /home/alexlai/build/rstudio/src/gwt/bin [javac] Compiling 3 source files to /home/alexlai/build/rstudio/src/gwt/bin [javac] Note: Some input files use or override a deprecated API. [javac] Note: Recompile with -Xlint:deprecation for details. [javac] Compiling 2625 source files to /home/alexlai/build`` $ conda activate R-4.4 $ conda install -c conda-forge nodejs $ $ which node /home/alexlai/anaconda3/envs/R-4.4/bin/node (R-4.4) alexlai@Jetson:~/build/rstudio/build$ node --version v22.12.0/rstudio/src/gwt/bin [copy] Copying 1904 files to /home/alexlai/build/rstudio/src/gwt/bin

gwtc:

panmirror: [echo] yarn location: ../../dependencies/common/node/20.15.1/bin/yarn [echo] panmirror location: ./lib/quarto/apps/panmirror [echo] panmirror minify: true [mkdir] Created dir: /home/alexlai/build/rstudio/src/gwt/www/js/panmirror [exec] /usr/bin/env: ‘node’: No such file or directory

BUILD FAILED /home/alexlai/build/rstudio/src/gwt/build.xml:189: The following error occurred while executing this line: /home/alexlai/build/rstudio/src/gwt/build.xml:142: exec returned: 127

Total time: 47 seconds make[2]: *** [src/gwt/CMakeFiles/gwt_build.dir/build.make:2706: src/gwt/timestamp] Error 1 make[1]: *** [CMakeFiles/Makefile2:539: src/gwt/CMakeFiles/gwt_build.dir/all] Error 2 make: *** [Makefile:156: all] Error 2

real 30m55.286s user 162m24.825s sys 10m10.149s

gwtc:

panmirror: [echo] yarn location: ../../dependencies/common/node/20.15.1/bin/yarn [echo] panmirror location: ./lib/quarto/apps/panmirror [echo] panmirror minify: true [exec] yarn install v1.22.22 [exec] [1/4] Resolving packages... [exec] [2/4] Fetching packages... [exec] warning quarto@1.119.0: The engine "vscode" appears to be invalid. [exec] info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command. [exec] error external-observablehq-parser@6.0.2: The engine "node" is incompatible with this module. Expected version ">=14.5.0". Got "12.22.9" [exec] error Found incompatible module.

BUILD FAILED /home/alexlai/build/rstudio/src/gwt/build.xml:189: The following error occurred while executing this line: /home/alexlai/build/rstudio/src/gwt/build.xml:142: exec returned: 1

Total time: 7 seconds make[2]: *** [src/gwt/CMakeFiles/gwt_build.dir/build.make:2706: src/gwt/timestamp] Error 1 make[1]: *** [CMakeFiles/Makefile2:539: src/gwt/CMakeFiles/gwt_build.dir/all] Error 2 make: *** [Makefile:156: all] Error 2

real 29m43.347s user 159m27.867s sys 10m1.092s


> put into conda control

$ conda activate R-4.4 $ conda install -c conda-forge nodejs $ $ which node /home/alexlai/anaconda3/envs/R-4.4/bin/node (R-4.4) alexlai@Jetson:~/build/rstudio/build$ node --version v22.12.0

Then compile again build:

BUILD SUCCESSFUL Total time: 6 minutes 56 seconds [100%] Built target gwt_build

real 7m3.713s user 17m32.211s sys 1m5.171s ^C[1]+ Done time make -j6 > make-JetsonOrinNano-01.log 2>&1



----

&sect;2024-12-16

The followings are make suscesully on opi516G

|| ^16.0.0". [exec] warning "workspace-aggregator-67bc0a16-4282-4a31-95a2-a1349dd4440b > editor > prosemirror-dev-tools > react-json-tree@0.11.2" has incorrect peer dependency "react-dom@^15.0.0 || ^16.0.0". [exec] warning "workspace-aggregator-67bc0a16-4282-4a31-95a2-a1349dd4440b > editor > prosemirror-dev-tools > unstated@2.1.1" has incorrect peer dependency "react@^15.0.0 || ^16.0.0". [exec] warning "workspace-aggregator-67bc0a16-4282-4a31-95a2-a1349dd4440b > quarto-ojs-runtime > @rollup/plugin-commonjs > @rollup/pluginutils@3.1.0" has incorrect peer dependency "rollup@^1.20.0||^2.0.0". [exec] warning "workspace-aggregator-67bc0a16-4282-4a31-95a2-a1349dd4440b > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion > @fluentui/react-aria@9.3.22" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-67bc0a16-4282-4a31-95a2-a1349dd4440b > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion > @fluentui/react-aria@9.3.22" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-67bc0a16-4282-4a31-95a2-a1349dd4440b > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion > @fluentui/react-context-selector@9.1.22" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-67bc0a16-4282-4a31-95a2-a1349dd4440b > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion > @fluentui/react-context-selector@9.1.22" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-67bc0a16-4282-4a31-95a2-a1349dd4440b > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion > @fluentui/react-context-selector@9.1.22" has unmet peer dependency "scheduler@^0.19.0 || ^0.20.0". [exec] warning "workspace-aggregator-67bc0a16-4282-4a31-95a2-a1349dd4440b > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion > @fluentui/react-jsx-runtime@9.0.0-alpha.6" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-67bc0a16-4282-4a31-95a2-a1349dd4440b > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-portal > use-disposable@1.0.1" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-67bc0a16-4282-4a31-95a2-a1349dd4440b > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-portal > use-disposable@1.0.1" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-67bc0a16-4282-4a31-95a2-a1349dd4440b > editor > prosemirror-dev-tools > @emotion/css > @emotion/babel-plugin@11.10.5" has unmet peer dependency "@babel/core@^7.0.0". [exec] warning "workspace-aggregator-67bc0a16-4282-4a31-95a2-a1349dd4440b > editor > prosemirror-dev-tools > unstated > create-react-context@0.1.6" has incorrect peer dependency "react@^14.0.0 || ^15.0.0 || ^16.0.0". [exec] warning "workspace-aggregator-67bc0a16-4282-4a31-95a2-a1349dd4440b > editor > prosemirror-dev-tools > @emotion/css > @emotion/babel-plugin > @babel/plugin-syntax-jsx@7.18.6" has unmet peer dependency "@babel/core@^7.0.0-0". [exec] [4/4] Building fresh packages... [exec] info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command. [exec] error /home/alexlai/build/rstudio/src/gwt/lib/quarto/node_modules/keytar: Command failed. [exec] Exit code: 1 [exec] Command: prebuild-install || npm run build [exec] Arguments: [exec] Directory: /home/alexlai/build/rstudio/src/gwt/lib/quarto/node_modules/keytar [exec] Output: [exec] prebuild-install warn install Request timed out [exec] [exec] > keytar@7.9.0 build [exec] > node-gyp rebuild [exec] [exec] gyp info it worked if it ends with ok [exec] gyp info using node-gyp@10.1.0 [exec] gyp info using node@20.14.0 | linux | arm64 [exec] gyp info find Python using Python version 3.10.12 found at "/usr/bin/python3" [exec] [exec] gyp http GET https://nodejs.org/download/release/v20.14.0/node-v20.14.0-headers.tar.gz [exec] gyp http 200 https://nodejs.org/download/release/v20.14.0/node-v20.14.0-headers.tar.gz [exec] gyp http GET https://nodejs.org/download/release/v20.14.0/SHASUMS256.txt [exec] gyp http 200 https://nodejs.org/download/release/v20.14.0/SHASUMS256.txt [exec] gyp info spawn /usr/bin/python3 [exec] gyp info spawn args [ [exec] gyp info spawn args '/home/alexlai/.fnm/node-versions/v20.14.0/installation/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py', [exec] gyp info spawn args 'binding.gyp', [exec] gyp info spawn args '-f', [exec] gyp info spawn args 'make', [exec] gyp info spawn args '-I', [exec] gyp info spawn args '/home/alexlai/build/rstudio/src/gwt/lib/quarto/node_modules/keytar/build/config.gypi', [exec] gyp info spawn args '-I', [exec] gyp info spawn args '/home/alexlai/.fnm/node-versions/v20.14.0/installation/lib/node_modules/npm/node_modules/node-gyp/addon.gypi', [exec] gyp info spawn args '-I', [exec] gyp info spawn args '/home/alexlai/.cache/node-gyp/20.14.0/include/node/common.gypi', [exec] gyp info spawn args '-Dlibrary=shared_library', [exec] gyp info spawn args '-Dvisibility=default', [exec] gyp info spawn args '-Dnode_root_dir=/home/alexlai/.cache/node-gyp/20.14.0', [exec] gyp info spawn args '-Dnode_gyp_dir=/home/alexlai/.fnm/node-versions/v20.14.0/installation/lib/node_modules/npm/node_modules/node-gyp', [exec] gyp info spawn args '-Dnode_lib_file=/home/alexlai/.cache/node-gyp/20.14.0/<(target_arch)/node.lib', [exec] gyp info spawn args '-Dmodule_root_dir=/home/alexlai/build/rstudio/src/gwt/lib/quarto/node_modules/keytar', [exec] gyp info spawn args '-Dnode_engine=v8', [exec] gyp info spawn args '--depth=.', [exec] gyp info spawn args '--no-parallel', [exec] gyp info spawn args '--generator-output', [exec] gyp info spawn args 'build', [exec] gyp info spawn args '-Goutput_dir=.' [exec] gyp info spawn args ] [exec] Package libsecret-1 was not found in the pkg-config search path. [exec] Perhaps you should add the directory containing libsecret-1.pc' [exec] to the PKG_CONFIG_PATH environment variable [exec] No package 'libsecret-1' found [exec] gyp: Call to 'pkg-config --cflags libsecret-1' returned exit status 1 while in binding.gyp. while trying to load binding.gyp [exec] gyp ERR! configure error [exec] gyp ERR! stack Error: gyp` failed with exit code: 1 [exec] gyp ERR! stack at ChildProcess. (/home/alexlai/.fnm/node-versions/v20.14.0/installation/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:297:18) [exec] gyp ERR! stack at ChildProcess.emit (node:events:519:28) [exec] gyp ERR! stack at ChildProcess._handle.onexit (node:internal/child_process:294:12) [exec] gyp ERR! System Linux 6.1.43-rockchip-rk3588 [exec] gyp ERR! command "/home/alexlai/.fnm/node-versions/v20.14.0/installation/bin/node" "/home/alexlai/.fnm/node-versions/v20.14.0/installation/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" [exec] gyp ERR! cwd /home/alexlai/build/rstudio/src/gwt/lib/quarto/node_modules/keytar [exec] gyp ERR! node -v v20.14.0 [exec] gyp ERR! node-gyp -v v10.1.0 [exec] gyp ERR! not ok

BUILD FAILED /home/alexlai/build/rstudio/src/gwt/build.xml:189: The following error occurred while executing this line: /home/alexlai/build/rstudio/src/gwt/build.xml:142: exec returned: 1

Total time: 2 minutes 58 seconds make[2]: *** [src/gwt/CMakeFiles/gwt_build.dir/build.make:2706: src/gwt/timestamp] Error 1 make[1]: *** [CMakeFiles/Makefile2:539: src/gwt/CMakeFiles/gwt_build.dir/all] Error 2 make: *** [Makefile:156: all] Error 2

real 28m34.054s user 194m11.395s sys 9m59.340s alexlai@opi516G:/build/rstudio/build$ sudo apt install libsecret-1-dev [sudo] password for alexlai: Reading package lists... Done Building dependency tree... Done Reading state information... Done The following additional packages will be installed: gir1.2-secret-1 libgcrypt20-dev libgpg-error-dev Suggested packages: libgcrypt20-doc The following NEW packages will be installed: gir1.2-secret-1 libgcrypt20-dev libgpg-error-dev libsecret-1-dev 0 upgraded, 4 newly installed, 0 to remove and 62 not upgraded. Need to get 795 kB of archives. After this operation, 6,187 kB of additional disk space will be used. Do you want to continue? [Y/n] y Get:1 http://repo.huaweicloud.com/ubuntu-ports jammy/main arm64 gir1.2-secret-1 arm64 0.20.5-2 [9,310 B] Get:2 http://repo.huaweicloud.com/ubuntu-ports jammy/main arm64 libgpg-error-dev arm64 1.43-3 [129 kB] Get:3 http://repo.huaweicloud.com/ubuntu-ports jammy/main arm64 libgcrypt20-dev arm64 1.9.4-3ubuntu3 [522 kB] Get:4 http://repo.huaweicloud.com/ubuntu-ports jammy/main arm64 libsecret-1-dev arm64 0.20.5-2 [135 kB] Fetched 795 kB in 6s (132 kB/s)
Selecting previously unselected package gir1.2-secret-1:arm64. (Reading database ... 184540 files and directories currently installed.) Preparing to unpack .../gir1.2-secret-1_0.20.5-2_arm64.deb ... Unpacking gir1.2-secret-1:arm64 (0.20.5-2) ... Selecting previously unselected package libgpg-error-dev. Preparing to unpack .../libgpg-error-dev_1.43-3_arm64.deb ... Unpacking libgpg-error-dev (1.43-3) ... Selecting previously unselected package libgcrypt20-dev. Preparing to unpack .../libgcrypt20-dev_1.9.4-3ubuntu3_arm64.deb ... Unpacking libgcrypt20-dev (1.9.4-3ubuntu3) ... Selecting previously unselected package libsecret-1-dev:arm64. Preparing to unpack .../libsecret-1-dev_0.20.5-2_arm64.deb ... Unpacking libsecret-1-dev:arm64 (0.20.5-2) ... Setting up gir1.2-secret-1:arm64 (0.20.5-2) ... Setting up libgpg-error-dev (1.43-3) ... Setting up libgcrypt20-dev (1.9.4-3ubuntu3) ... Setting up libsecret-1-dev:arm64 (0.20.5-2) ... Processing triggers for man-db (2.10.2-1) ... Processing triggers for install-info (6.8-4build1) ... alexlai@opi516G:
/build/rstudio/build$ time make -j 8 Consolidate compiler generated dependencies of target rstudio-core-synctex Consolidate compiler generated dependencies of target fmt Consolidate compiler generated dependencies of target rstudio-core-hunspell Consolidate compiler generated dependencies of target yaml-cpp [ 0%] Built target fmt [ 1%] Built target rstudio-core-synctex Consolidate compiler generated dependencies of target rstudio-shared-core [ 3%] Built target rstudio-core-hunspell [ 8%] Built target yaml-cpp Consolidate compiler generated dependencies of target yaml-cpp-sandbox Consolidate compiler generated dependencies of target yaml-cpp-read Consolidate compiler generated dependencies of target yaml-cpp-parse [ 9%] Built target yaml-cpp-sandbox [ 12%] Built target rstudio-shared-core [ 12%] Built target yaml-cpp-parse [ 12%] Built target yaml-cpp-read Consolidate compiler generated dependencies of target rstudio-core [ 32%] Built target rstudio-core Consolidate compiler generated dependencies of target rstudio-session-workers Consolidate compiler generated dependencies of target rstudio-shared-core-tests Consolidate compiler generated dependencies of target crash-handler-proxy Consolidate compiler generated dependencies of target rstudio-monitor Consolidate compiler generated dependencies of target rstudio-server-core [ 32%] Built target rstudio-session-workers [ 33%] Built target rstudio-shared-core-tests Consolidate compiler generated dependencies of target rstudio-r Consolidate compiler generated dependencies of target rstudio-core-tests [ 33%] Built target crash-handler-proxy [ 34%] Built target rstudio-monitor [ 36%] Built target rstudio-server-core Consolidate compiler generated dependencies of target rserver-url Consolidate compiler generated dependencies of target rserver-pam Consolidate compiler generated dependencies of target rstudio-server-core-tests Consolidate compiler generated dependencies of target rpostback [ 37%] Built target rserver-pam [ 37%] Built target rserver-url Consolidate compiler generated dependencies of target rserver-url-tests [ 42%] Built target rstudio-core-tests [ 42%] Built target rserver-url-tests Consolidate compiler generated dependencies of target rserver [ 43%] Built target rstudio-server-core-tests [ 43%] Built target rpostback Consolidate compiler generated dependencies of target rserver-tests [ 49%] Built target rstudio-r [ 54%] Built target rserver [ 60%] Built target rserver-tests Consolidate compiler generated dependencies of target rsession [100%] Built target rsession [100%] Building GWT sources Buildfile: /home/alexlai/build/rstudio/src/gwt/build.xml [available] DEPRECATED - used to override an existing property. [available] Build file should not reuse the same property name for different values.

i18n-checksum: [echo] Commands.cmd.xml i18n checksum matches: true

i18n-unix-check:

i18n-unix:

i18n-windows-check:

i18n-windows:

generate-i18n:

ext: [jscomp] None of the files changed. Compilation skipped.

javac: [javac] Compiling 1 source file to /home/alexlai/build/rstudio/src/gwt/bin

gwtc:

panmirror: [echo] yarn location: ../../dependencies/common/node/20.15.1/bin/yarn [echo] panmirror location: ./lib/quarto/apps/panmirror [echo] panmirror minify: true [exec] yarn install v1.22.22 [exec] [1/4] Resolving packages... [exec] [2/4] Fetching packages... [exec] warning quarto@1.119.0: The engine "vscode" appears to be invalid. [exec] warning vscode-languageclient@8.1.0: The engine "vscode" appears to be invalid. [exec] warning "eslint-config-custom > @typescript-eslint/eslint-plugin > tsutils@3.21.0" has unmet peer dependency "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components@9.21.0" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components@9.21.0" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components@9.21.0" has unmet peer dependency "scheduler@^0.19.0 || ^0.20.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > editor-codemirror > @codemirror/autocomplete@6.4.0" has unmet peer dependency "@lezer/common@^1.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > editor > prosemirror-utils@0.9.6" has incorrect peer dependency "prosemirror-tables@^0.9.1". [exec] [3/4] Linking dependencies... [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-ojs-runtime > @rollup/plugin-commonjs@22.0.2" has incorrect peer dependency "rollup@^2.68.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-ojs-runtime > @rollup/plugin-node-resolve@13.3.0" has incorrect peer dependency "rollup@^2.42.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion@9.1.16" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion@9.1.16" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion@9.1.16" has unmet peer dependency "scheduler@^0.19.0 || ^0.20.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-alert@9.0.0-beta.51" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-alert@9.0.0-beta.51" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-avatar@9.5.5" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-avatar@9.5.5" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-avatar@9.5.5" has unmet peer dependency "scheduler@^0.19.0 || ^0.20.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-badge@9.1.15" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-badge@9.1.15" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-button@9.3.16" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-button@9.3.16" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-card@9.0.14" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0".(RStudio) rstudio-server@Jetson:~/RStudio/build/rstudio$ sudo chown -R rstudio-server:rstudio-server ./

 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-card@9.0.14" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-checkbox@9.1.17" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a53895 cmake .. -DRSTUDIO_TARGET=Server -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/opt/rstudio-2024-12-20  >cmake-JetsonOrinNano-2024-12-20.log 2>&1 &^C

0-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-checkbox@9.1.17" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-combobox@9.4.0" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-combobox@9.4.0" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-combobox@9.4.0" has unmet peer dependency "scheduler@^0.19.0 || ^0.20.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-dialog@9.5.9" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-dialog@9.5.9" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-divider@9.2.15" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-divider@9.2.15" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-drawer@9.0.0-beta.1" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-drawer@9.0.0-beta.1" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-field@9.1.6" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-field@9.1.6" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-image@9.1.12" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-image@9.1.12" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-infobutton@9.0.0-beta.34" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-infobutton@9.0.0-beta.34" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-input@9.4.16" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-input@9.4.16" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-label@9.1.15" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0".(RStudio) rstudio-server@Jetson:~/RStudio/build/rstudio$ sudo chown -R rstudio-server:rstudio-server ./

 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-label@9.1.15" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-link@9.0.42" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-link@9.0.42" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-menu@9.7.16" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-menu@9.7.16" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-menu@9.7.16" has unmet peer dependency "scheduler@^0.19.0 || ^0.20.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-overflow@9.0.19" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-overflow@9.0.19" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-overflow@9.0.19" has unmet peer dependency "scheduler@^0.19.0 || ^0.20.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-persona@9.2.15" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-persona@9.2.15" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-popover@9.6.0" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-popover@9.6.0" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-popover@9.6.0" has unmet peer dependency "scheduler@^0.19.0 || ^0.20.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-portal@9.2.12" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-portal@9.2.12" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-positioning@9.6.0" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-positioning@9.6.0" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-progress@9.1.16" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-progress@9.1.16" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-provider@9.7.2" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0".
 [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fl(RStudio) rstudio-server@Jetson:~/RStudio/build/rstudio$ sudo chown -R rstudio-server:rstudio-server ./

uentui/react-components > @fluentui/react-provider@9.7.2" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-radio@9.1.17" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-radio@9.1.17" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-radio@9.1.17" has unmet peer dependency "scheduler@^0.19.0 || ^0.20.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-select@9.1.16" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-select@9.1.16" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-shared-contexts@9.5.0" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-skeleton@9.0.4" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950 cmake .. -DRSTUDIO_TARGET=Server -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/opt/rstudio-2024-12-20 >cmake-JetsonOrinNano-2024-12-20.log 2>&1 &^C -bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-skeleton@9.0.4" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-slider@9.1.17" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-slider@9.1.17" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-spinbutton@9.2.16" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-spinbutton@9.2.16" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-spinner@9.2.2" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-spinner@9.2.2" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-switch@9.1.17" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-switch@9.1.17" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-table@9.3.0" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-table@9.3.0" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-tabs@9.3.17" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-tabs@9.3.17" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-tabs@9.3.17" has unmet peer dependency "scheduler@^0.19.0 || ^0.20.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-tabster@9.7.5" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-tabster@9.7.5" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-text@9.3.12" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-text@9.3.12" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-textarea@9.3.16" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-textarea@9.3.16" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-toolbar@9.1.17" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-toolbar@9.1.17" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-tooltip@9.2.16" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-tooltip@9.2.16" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-tree@9.0.0-beta.18" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-tree@9.0.0-beta.18" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-utilities@9.9.2" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-virtualizer@9.0.0-alpha.22" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-virtualizer@9.0.0-alpha.22" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > editor > prosemirror-dev-tools > react-dock@0.2.4" has unmet peer dependency "babel-runtime@^6.3.13". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > editor > prosemirror-dev-tools > react-json-tree@0.11.2" has incorrect peer dependency "react@^15.0.0 || ^16.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > editor > prosemirror-dev-tools > react-json-tree@0.11.2" has incorrect peer dependency "react-dom@^15.0.0 || ^16.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > editor > prosemirror-dev-tools > unstated@2.1.1" has incorrect peer dependency "react@^15.0.0 || ^16.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-ojs-runtime > @rollup/plugin-commonjs > @rollup/pluginutils@3.1.0" has incorrect peer dependency "rollup@^1.20.0||^2.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion > @fluentui/react-aria@9.3.22" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion > @fluentui/react-aria@9.3.22" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion > @fluentui/react-context-selector@9.1.22" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion > @fluentui/react-context-selector@9.1.22" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion > @fluentui/react-context-selector@9.1.22" has unmet peer dependency "scheduler@^0.19.0 || ^0.20.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-accordion > @fluentui/react-jsx-runtime@9.0.0-alpha.6" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-portal > use-disposable@1.0.1" has unmet peer dependency "@types/react@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > quarto-vscode-editor > @fluentui/react-components > @fluentui/react-portal > use-disposable@1.0.1" has unmet peer dependency "@types/react-dom@>=16.8.0 <19.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > editor > prosemirror-dev-tools > @emotion/css > @emotion/babel-plugin@11.10.5" has unmet peer dependency "@babel/core@^7.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > editor > prosemirror-dev-tools > unstated > create-react-context@0.1.6" has incorrect peer dependency "react@^14.0.0 || ^15.0.0 || ^16.0.0". [exec] warning "workspace-aggregator-1a538950-bc40-42be-be98-a59ff74b9366 > editor > prosemirror-dev-tools > @emotion/css > @emotion/babel-plugin > @babel/plugin-syntax-jsx@7.18.6" has unmet peer dependency "@babel/core@^7.0.0-0". [exec] [4/4] Building fresh packages... [exec] Done in 26.66s. [exec] yarn run v1.22.22 [exec] $ tsc --noEmit && vite build --minify true --sourcemap true [exec] vite v3.2.5 building for production... [exec] transforming... [exec] ✓ 2727 modules transformed. [exec] rendering chunks... [exec] dist-rstudio/panmirror.js 4888.51 KiB / gzip: 994.69 KiB [exec] dist-rstudio/panmirror.js.map 8577.82 KiB [exec] Done in 45.94s. [copy] Copying 2 files to /home/alexlai/build/rstudio/src/gwt/www/js/panmirror [java] Compiling module org.rstudio.studio.RStudio [java] Computing all possible rebind results for 'org.rstudio.studio.client.RStudioGinjector' [java] Rebinding org.rstudio.studio.client.RStudioGinjector [java] Invoking generator com.google.gwt.inject.rebind.GinjectorGenerator [java] [WARN] Class jdk.internal.reflect.ConstructorAccessorImpl is used in Gin, but not available in GWT client code. [java] Computing all possible rebind results for 'org.rstudio.studio.client.rsconnect.RsconnectConstants' [java] Rebinding org.rstudio.studio.client.rsconnect.RsconnectConstants [java] Invoking generator com.google.gwt.i18n.rebind.LocalizableGenerator [java] Processing interface org.rstudio.studio.client.rsconnect.RsconnectConstants [java] Generating method body for envVarsPublishMessage() [java] [WARN] Plural form 'one' unknown in com.google.gwt.i18n.client.impl.plurals.DefaultRule: ignoring [java] Compiling 1 permutation [java] Compiling permutation 0...

build:

BUILD SUCCESSFUL Total time: 6 minutes 27 seconds [100%] Built target gwt_build

real 6m33.835s user 18m59.746s sys 0m33.649s alexlai@opi516G:/build/rstudio/build$ sudo make installcmake .. -DRSTUDIO_TARGET=Server -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/opt/rstudio^C alexlai@opi516G:/build/rstudio/build$

./install-dependencies-jammy > install-dependencies-jammy-log 2> 1
alexlai@opi516G:/opt/sda/alexlai/build/src/rstudio/dependencies/linux$ cd ../..
alexlai@opi516G:/opt/sda/alexlai/build/src/rstudio$ mkdir build && cd $_
alexlai@opi516G:/opt/sda/alexlai/build/src/rstudio/build$ cmake .. -DRSTUDIO_TARGET=Server -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/opt/rstudio > cmake-log 2>&1 &
time make -j8 >make-log 2>&1 &time make -j8 >make-log 2>&1 &


--- 

2024-12-20 error

```
[exec] error Error: EACCES: permission denied, mkdir '/home/rstudio-server/RStudio/build/rstudio/src/gwt/lib/quarto/node_modules'
     [exec] info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.

BUILD FAILED
/home/rstudio-server/RStudio/build/rstudio/src/gwt/build.xml:189: The following error occurred while executing this line:
/home/rstudio-server/RStudio/build/rstudio/src/gwt/build.xml:142: exec returned: 1

Total time: 2 minutes 23 seconds
make[2]: *** [src/gwt/CMakeFiles/gwt_build.dir/build.make:2706: src/gwt/timestamp] Error 1
make[1]: *** [CMakeFiles/Makefile2:539: src/gwt/CMakeFiles/gwt_build.dir/all] Error 2
make: *** [Makefile:156: all] Error 2

real	35m39.773s
user	162m43.938s
sys	10m53.046s

```

reasons

```
$ ls -l  /home/rstudio-server/RStudio/build/rstudio/src/gwt/lib/
total 260
drwxrwxr-x 2 rstudio-server rstudio-server   4096 十二 20 16:38 elemental2
drwxrwxr-x 3 rstudio-server rstudio-server   4096 十二 20 16:38 gin
drwxrwxr-x 3 rstudio-server rstudio-server   4096 十二 20 16:38 gwt
-rw-rw-r-- 1 rstudio-server rstudio-server 247280 十二 20 16:38 junit-4.9b3.jar
drwxr-xr-x 7 root           root             4096 十二 20 16:43 quarto
(RStudio) rstudio-server@Jetson:~/RStudio/build/rstudio$ sudo chown -R rstudio-server:rstudio-server ./

...
     [exec] dist-rstudio/panmirror.js   4888.51 KiB / gzip: 997.05 KiB
     [exec] dist-rstudio/panmirror.js.map 8577.82 KiB
     [exec] Done in 50.19s.
     [copy] Copying 2 files to /home/rstudio-server/RStudio/build/rstudio/src/gwt/www/js/panmirror
     [java] Compiling module org.rstudio.studio.RStudio
     [java]    Computing all possible rebind results for 'org.rstudio.studio.client.RStudioGinjector'
     [java]       Rebinding org.rstudio.studio.client.RStudioGinjector
     [java]          Invoking generator com.google.gwt.inject.rebind.GinjectorGenerator
     [java]             [WARN] Class jdk.internal.reflect.ConstructorAccessorImpl is used in Gin, but not available in GWT client code.
     [java]    Computing all possible rebind results for 'org.rstudio.studio.client.rsconnect.RsconnectConstants'
     [java]       Rebinding org.rstudio.studio.client.rsconnect.RsconnectConstants
     [java]          Invoking generator com.google.gwt.i18n.rebind.LocalizableGenerator
     [java]             Processing interface org.rstudio.studio.client.rsconnect.RsconnectConstants
     [java]                Generating method body for envVarsPublishMessage()
     [java]                   [WARN] Plural form 'one' unknown in com.google.gwt.i18n.client.impl.plurals.DefaultRule: ignoring
     [java]    Compiling 1 permutation
     [java]       Compiling permutation 0...
     [java]    Compile of permutations succeeded
     [java]    Compilation succeeded -- 349.228s
     [java] Linking into /home/rstudio-server/RStudio/build/rstudio/src/gwt/www/rstudio; Writing extras to /home/rstudio-server/RStudio/build/rstudio/src/gwt/extras/rstudio
     [java]    Link succeeded
     [java]    Linking succeeded -- 3.740s

build:

BUILD SUCCESSFUL
Total time: 8 minutes 36 seconds
[100%] Built target gwt_build

real	8m53.601s
user	17m36.411s
sys	1m1.725s
^C[1]+  Done                    time make -j6 > make-JetsonOrinNano-2024-12-20-01.log 2>&1
```
    
    
2024-12-20

- based on ` cmake .. -DRSTUDIO_TARGET=Server -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/opt/rstudio-2024-12-20  >cmake-JetsonOrinNano-2024-12-20.log 2>&1 &``

---

```