Changes between Version 1 and Version 2 of Docs/825gen2/Dev/DevVMTechnical


Ignore:
Timestamp:
03/06/25 12:57:38 (8 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified Docs/825gen2/Dev/DevVMTechnical

    v1 v2  
    11= Development VM Technical Information =
    22
    3 == 2025-03-04 Eclipse Subclipse may stop working ==
     3== Environment Variables ==
     4The development VM uses a number of environment variables. To review or edit these from a terminal window type **kate /etc/profile.d/arm825env.sh**
     5{{{
     6#Setup environment variables for ARM825 development
    47
     8AARCH64=/opt/armv8a
     9export AARCH64
     10
     11AARCH64MX8M=/opt/armv8a-mx8m
     12export AARCH64MX8M
     13
     14export DSPWIDTH=1280
     15export DSPHEIGHT=800
     16
     17export UI_LIBS="wayland-client -lwayland-cursor -lxkbcommon -lffi -ljpeg -lpng -lpixman-1 -lfreetype -lz"
     18export CURL_LIBS="curl -lcrypto -lssl -lidn2 -lunistring"
     19export GLIB_LIBS="glib-2.0 -lgio-2.0 -lgmodule-2.0 -lgobject-2.0 -lpcre -lmount -lblkid"
     20export NM_LIBS="nm -lsmime3 -lnss3 -lnssutil3 -lnspr4 -lplds4 -lplc4 -ludev"
     21export CAIRO_LIBS="pango-1.0 -lpangocairo-1.0 -lharfbuzz -lfribidi -lcairo -lfontconfig -lGLESv2 -lEGL -lexpat -luuid -lGAL -lVSC -lwayland-server -ldrm -lgbm -lgbm_viv"
     22export CAIRO_SIM_LIBS="pango-1.0 -lpangocairo-1.0 -lharfbuzz -lfribidi -lcairo -lfontconfig -lGLESv2 -lEGL -lxcb-shm -lxcb -lxcb-render -lX11 -lXext -lXrender -lXau -lXdmcp -lexpat -luuid -lwayland-server -ldrm -lgbm"
     23export CUPS_LIBS="cups -lavahi-common -lavahi-client -ldbus-1 -lsystemd -lzstd -lcap"
     24export PRT_LIBS="cups -lavahi-common -lavahi-client -ldbus-1 -lsystemd -lzstd -lcap -ljson-c -lesmtp -lssl -lcrypto"
     25
     26# User specific environment and startup programs
     27PATH=$PATH:$HOME/bin:/opt/arm-gnu-toolchain-11.3.rel1-x86_64-aarch64-none-linux-gnu/bin/:/opt/freescale/usr/local/gcc-4.4.53-uclibc-0.9.53/m68k-uclinux/bin/
     28
     29
     30}}}