Changes between Version 10 and Version 11 of Other/Summer/2025/Power-efficient


Ignore:
Timestamp:
Jul 18, 2025, 1:40:06 AM (5 days ago)
Author:
extouchtriangle
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Other/Summer/2025/Power-efficient

    v10 v11  
    1818== Other info ==
    1919
    20 * Scripts using the VRS library can be a pain to compile. You should use the following command:
    21 `    g++ FilterCopySamples.cpp -o FilterCopySamples \
     20* This is the command to compile files that use the VRS library:
     21{{{#!bash
     22    g++ FILE_NAME.cpp -o EXECUTABLE_NAME \
    2223        -L/usr/local/lib \
    2324        -I/usr/local/include \
     
    3940        -lxxhash \
    4041        -lfmt \
    41         -lpthread`
    42 
     42        -lpthread
     43}}}