Skip to content

Commit ff399fb

Browse files
[Build] Support GCC 8.x to build Triton (triton-lang#1036)
1 parent 4023149 commit ff399fb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

CMakeLists.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,10 @@ target_link_options(triton PRIVATE ${LLVM_LDFLAGS})
222222

223223
if(WIN32)
224224
target_link_libraries(triton PRIVATE ${LLVM_LIBRARIES} dl) # dl is from dlfcn-win32
225-
else()
225+
elseif(APPLE)
226226
target_link_libraries(triton ${LLVM_LIBRARIES} z)
227+
else()
228+
target_link_libraries(triton ${LLVM_LIBRARIES} z stdc++fs)
227229
endif()
228230

229231

0 commit comments

Comments
 (0)