emrainey / hobbies

A place to collect and share all my hobby projects.
The Unlicense
0 stars 1 forks source link

hobbies

A place to collect and share all my hobby projects.

Check the README in each folder for it's own progress and issues.

General Design Principles

Developing

You can open either the hobbies.code-workspace or the folder itself. VSCode can configure CMake now but you'll need a compiler which supports OpenMP and the Homebrew installation of it.

Building

Due to issues with OpenMP no longer being supported on Apple Clang and GCC not being able to link (can't find libgcrt1.a), LLVM 18 is the currently working compiler.

# Building on Apple Silicon
cmake --preset native-llvm-18
cmake --build build/native-llvm-18

Conan

Conan support has been removed until I have time to read up on Conan 2.0 builds. This will make it hard to build on WSL as that was my preferred method.

Running

While in the hobbies' root, you can run things by pre-pending the LD (DYLD) path.

# Running the NCurses Raytracing Console on Mac
DYLD_LIBRARY_PATH=install/lib:build/projects/raytrace ./build/projects/raytrace/demo_curses -m libworld_example.dylib

Testing Folder

I've added an explicit folder to run tests. You can run them using the testing wrapper script (it will temporarily modify your PATH and LD_LIBRARY_PATH).

# Basic
./testing.sh demo_curses -m world_example
# Advanced (Stereoscopic)
./testing.sh demo_sdl2 -m world_snowman --dims CIF --aaa 128 --separation 2.0

Profiling

There's two ways to run the profiling tools which have been tested on Mac OS.

# This will generate a "testing/profiling.txt" with the top 100 called functions.
./raytrace.sh ... options ...
# This will generate a *-perf.pdf with the details (a call tree with % time spent)
./profile_run.sh

VS Code order of precedence processing

VSCode will take settings in the order of:

However, all settings have been moved to the workspace file.