Building Blender using Clang on Linux
ends up with a linker error when linking USD,
specifically "/usr/bin/ld: -f may not be used without -shared".
This is because USD is linked with "-Wl,-force_load <lib>"
which is unsupported on Linux by ld or lld and
it's only supported on macOS.
Use "-Wl,--whole-archive <lib> -Wl,--no-whole-archive" instead,
and also link TBB libraries.