This repository was archived by the owner on Jan 4, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed
Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -45,10 +45,8 @@ git clone https://github.com/assembler-0/VoidFrame.git
4545cd VoidFrame
4646mkdir build
4747cd build
48- cmake .. -DCMAKE_BUILD_TYPE=Release \
49- -DCMAKE_TOOLCHAIN_FILE=../cmake/toolchain/linux-x64.cmake \
50- -G Ninja
51- ccmake . # Optinal, tune as needed
48+ ccmake .. -G Ninja # 'c' -> 'e' -> 'q' -- IMPORTATNT!
49+ cmake ..
5250ninja -j$( nproc)
5351ninja run
5452```
@@ -184,4 +182,4 @@ ninja run
184182 - [x] PATA (IDE)
185183 - [x] VirtIO Block
186184 - [x] AHCI
187- - [x] NVMe
185+ - [x] NVMe
Original file line number Diff line number Diff line change 22# CCache Configuration for Faster Builds
33# ============================================================================
44
5- option (VF_ENABLE_CCACHE "Enable ccache for faster compilation" OFF )
5+ option (VF_ENABLE_CCACHE "Enable ccache for faster compilation" ON )
66
77if (VF_ENABLE_CCACHE)
88 find_program (CCACHE_PROGRAM ccache)
@@ -31,4 +31,4 @@ if(VF_ENABLE_CCACHE)
3131 else ()
3232 message (WARNING "ccache requested but not found" )
3333 endif ()
34- endif ()
34+ endif ()
Original file line number Diff line number Diff line change @@ -36,4 +36,4 @@ option(VF_CONFIG_CERBERUS_STACK_PROTECTION "Enable Cerberus stack protection" ON
3636option (VF_CONFIG_INTEL "Enable Intel-specific optimizations" ON )
3737option (VF_CONFIG_ENABLE_OPIC "Enable OPIC support" ON )
3838option (VF_CONFIG_VESA_FB "Enable VESA framebuffer support" ON )
39- option (VF_CONFIG_MEMCPY_NT "Enable non-temporal memcpy optimizations" OFF )
39+ option (VF_CONFIG_MEMCPY_NT "Enable non-temporal memcpy optimizations" ON )
You can’t perform that action at this time.
0 commit comments