File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -223,11 +223,12 @@ cudaLibraryPaths (Platform arch os) installPath = [ installPath </> path | path
223223 where
224224 libpaths =
225225 case (os, arch) of
226- (Windows , I386 ) -> [" lib/Win32" ]
227- (Windows , X86_64 ) -> [" lib/x64" ]
228- (OSX , _) -> [" lib" ] -- MacOS does not distinguish 32- vs. 64-bit paths
229- (_, X86_64 ) -> [" lib64" , " lib" ] -- prefer lib64 for 64-bit systems
230- _ -> [" lib" ]
226+ (Windows , I386 ) -> [" lib/Win32" ]
227+ (Windows , X86_64 ) -> [" lib/x64" ]
228+ (OSX , _) -> [" lib" ] -- MacOS does not distinguish 32- vs. 64-bit paths
229+ (_, X86_64 ) -> [" lib64" , " lib" ] -- prefer lib64 for 64-bit systems
230+ (_, AArch64 ) -> [" lib64" , " lib" ]
231+ _ -> [" lib" ] -- otherwise
231232
232233
233234-- On Windows and OSX we use different libraries depending on whether we are
You can’t perform that action at this time.
0 commit comments