Changes between Version 10 and Version 11 of Other/Summer/2025/Power-efficient
- Timestamp:
- Jul 18, 2025, 1:40:06 AM (5 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Other/Summer/2025/Power-efficient
v10 v11 18 18 == Other info == 19 19 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 \ 22 23 -L/usr/local/lib \ 23 24 -I/usr/local/include \ … … 39 40 -lxxhash \ 40 41 -lfmt \ 41 -lpthread `42 42 -lpthread 43 }}}