Skip to content

Commit ae1488f

Browse files
committed
Fix a configuration error detected on macosx with --use_vulkan --embed_kernels
me:~/RadeonRays_SDK$ ./Tools/premake/osx/premake5 --use_vulkan --embed_kernels >> Vulkan backend enabled ** Warning: the flags value Symbols has been deprecated. Use `symbols "On"` instead Traceback (most recent call last): File "../Tools/scripts/stringify.py", line 29, in <module> files = os.listdir(dir) OSError: [Errno 2] No such file or directory: '/Users/me/RadeonRays_SDK/RadeonRays./../RadeonRays/src/kernels/GLSL/' >> RadeonRays: VK kernels embedded Type 'premake5 --help' for help
1 parent 89f375f commit ae1488f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RadeonRays/RadeonRays.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ project "RadeonRays"
7272

7373
if _OPTIONS["use_vulkan"] then
7474
os.execute( "python ../Tools/scripts/stringify.py " ..
75-
os.getcwd() .. "./../RadeonRays/src/kernels/GLSL/ " ..
75+
os.getcwd() .. "/../RadeonRays/src/kernels/GLSL/ " ..
7676
".comp " ..
7777
"vulkan " ..
7878
"> ./src/kernelcache/kernels_vk.h"

0 commit comments

Comments
 (0)