Skip to content
This repository was archived by the owner on Jan 4, 2026. It is now read-only.

Commit b3d695a

Browse files
committed
Build issues
1 parent c31fc77 commit b3d695a

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,8 @@ git clone https://github.com/assembler-0/VoidFrame.git
4545
cd VoidFrame
4646
mkdir build
4747
cd 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 ..
5250
ninja -j$(nproc)
5351
ninja 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

cmake/ccache.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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

77
if(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()

cmake/configuration.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ option(VF_CONFIG_CERBERUS_STACK_PROTECTION "Enable Cerberus stack protection" ON
3636
option(VF_CONFIG_INTEL "Enable Intel-specific optimizations" ON)
3737
option(VF_CONFIG_ENABLE_OPIC "Enable OPIC support" ON)
3838
option(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)

0 commit comments

Comments
 (0)