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


Ignore:
Timestamp:
11/21/25 12:01:10 (6 hours ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/825gen2/Dev/825Gen2SimProjectReference

    v1 v2  
    11== Simulator Project Settings Reference ==
    22
     3**Debug-ARM825-SIM build configuration**
     4
     5=== Compiler and Linker ===
     6
     7If the properties sheet has "Cross Settings" section set:
     8
     9Prefix: **<blank>**
     10
     11||=Tool Settings=||=Command=||
     12||Cross G++ Compiler||g++||
     13||Cross GCC Compiler ,,1,,||gcc||
     14||Cross G++ Linker||g++||
     15||Cross GCC Assembler ,,1,,||as||
     16
     17,,1,, "Cross GCC Compiler" and "Cross GCC Assembler" items may not be present in all projects.
     18
     19If the properties sheet does not have "Cross Settings" section:
     20
     21||=Tool Settings=||=Command=||
     22||GCC C++ Compiler||g++||
     23||GCC C Compiler ,,1,,||gcc||
     24||GCC C++ Linker||g++||
     25||GCC Assembler ,,1,,||as||
     26
     27,,1,, "GCC C Compiler" and "GCC Assembler" items may not be present in all projects.
     28
     29=== Preprocessor ===
     30
     31||=Defined symbols=||=Description=||
     32||DEBUG|| ||
     33||ARM64=1|| ||
     34||SIM825=1|| ||
     35
     36=== Includes ===
     37
     38||=Includes=||=Description=||
     39||"${workspace_loc:/lib825ev/inc}" ,,1,,||Main 825 library||
     40||"${workspace_loc:/lib825lang/inc}" ,,2,,||825 Multi language||
     41||"${workspace_loc:/lib825sql/inc}" ,,3,,||825 SQLite||
     42||"${workspace_loc:/lib825db/inc}" ,,4,,||825 SQLite/MySQL||
     43||/usr/include/freetype2|| ||
     44||/usr/include/pixman-1/|| ||
     45||/usr/include/gstreamer-1.0/|| ||
     46||/usr/include/glib-2.0/|| ||
     47||/usr/lib64/glib-2.0/include|| ||
     48||/usr/include/cairo|| ||
     49||/usr/include/mysql|| ||
     50
     51,,1,, Older apps may use //825// instead of //825ev//. In this case change the include to: "${workspace_loc:/lib825/inc}"
     52
     53,,2,, //825lang// is used for newer 825 Gen2 apps. This is not needed for recompile of Legacy 825 apps.
     54
     55,,3,, Older recompiled apps may instead use //sql3_7_9//. To use //sql3_7_9// library change include path "${workspace_loc:/libsql3_7_9/inc}".
     56
     57,,4,, For newer apps //lib825db// may be used instead of //lib825sql// to allow for SQLite and MySQL database support.
     58
     59=== Libraries ===
     60
     61||=Library=||=Description=||
     62||825ev ,,1,,||Main 825 library||
     63||825lang ,,2,,||825 Multi language||
     64||825sql ,,3,,||825 SQLite||
     65||825db ,,4,,||825 SQLite/MySQL||
     66||sqlite3 ,,3 or 4,,||825 SQLite||
     67||mysqlclient ,,4,,||MySQL client||
     68||${UI_LIBS}|| ||
     69||${CAIRO_SIM_LIBS}|| ||
     70||${GLIB_LIBS}|| ||
     71||${PRT_SIM_LIBS} ,,5,,||(PRT_SIM_LIBS new 2025-03-05)||
     72||curl ,,6,,||libcurl||
     73||gstreamer-1.0 ,,7,,||gstreamer library||
     74
     75,,1,, Older apps may use //825// instead of //825ev//.
     76
     77,,2,, //825lang// is used for newer 825 Gen2 apps. This is not needed for recompile of Legacy 825 apps.
     78
     79,,3,, For newer apps it is preferred to use //825sql// and //sqlite3// for dynamically linked SQLite shared object that is already on 825 Gen2. Older recompiled apps may instead use //sql3_7_9// which is statically linked.
     80
     81,,4,, For even newer apps to allow support for SQLite and MySQL use //825db//, //sqlite3//, and //mysqlclient//. Some code changes are needed.
     82
     83,,5,, If VM is not updated to have PRT_SIM_LIBS environment variable instead use individual lines: cups, json-c, esmtp, ssl, crypto
     84
     85,,6,, Include //curl// if the app retrieves images from IP cameras or data from the internet using libcurl.
     86
     87,,7,, Include //gstreamer-1.0// if the app displays images or video, or captures images or video from USB webcams using the //gstreamer// library.
     88
     89[[br]]
     90
     91||=Library search path=||
     92||${workspace_loc:/lib825ev/Debug-ARM825-SIM} ,,1,,||
     93||${workspace_loc:/lib825lang/Debug-ARM825-SIM} ,,2,,||
     94||${workspace_loc:/lib825sql/Debug-ARM825-SIM} ,,3,,||
     95||${workspace_loc:/lib825db/Debug-ARM825-SIM} ,,4,,||
     96
     97,,1,, If the older //lib825// is used change search path to "${workspace_loc:/lib825/Debug-ARM825-SIM}".
     98
     99,,2,, The //lib825lang// search path is not needed if not using //lib825lang//.
     100
     101,,3,, If //sql3_7_9// library is used change search path to "${workspace_loc:/libsql3_7_9/Debug-ARM825-SIM}".
     102
     103,,4,, If //825db// library is used set this search path instead of the lib825sql search path.
     104
     105