Lines Matching +full:- +full:o
11 system is based on a micro-kernel design, with the file system(s), network
18 ----------------
20 - 64-bit only, runs on x86_64 and ARMv8
21 - Requires an MMU as the design mandates separation among processes
22 - Support for thousands of processes and millions of threads
23 - Up to 64 cores, up to 16TB of RAM
24 - Virtualization support (as host and guest)
25 - Full POSIX compatibility
26 - Safety certification to various automotive, industrial and medical standards
36 ----------------------------
43 .. code-block:: c
49 .. code-block:: c
53 3. (Optional) Enable double-buffering:
55 .. code-block:: c
60 -----------------------
66 The top-level `qnx` directory includes a recursive make file for building LVGL,
70 .. code-block:: shell
79 .. code-block:: shell
90 double-buffering.
93 --------------------------
103 Steps 2, 3 and 5 use QNX-specific calls, but the rest of the code should be
108 .. code-block:: c
139 ---------------------
146 .. code-block:: makefile
148 CC=qcc -Vgcc_ntoaarch64le
151 CCFLAGS=-I$(LVGL_ROOT)/env_support/qnx -I$(LVGL_ROOT)
152 LDFLAGS=-lscreen -llvgl -L$(LVGL_ROOT)/env_support/qnx/aarch64/so.le
155 $(CC) $(CCFLAGS) -Wall -o $@ $< $(LDFLAGS)
158 rm -f *.o *~ lvgl_example