You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: fortran/examples/Makefile.common
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,8 @@ ifeq ($(FFORT),"") # The quotation marks are necessary
24
24
endif
25
25
# On Windows, we need to specify the clang_rt.
26
26
ifeq ($(OS),Windows_NT)
27
-
ARCH := $(shell uname -m)
28
-
CLANGRT := "$(shell find "/c/Program Files/LLVM" -name "clang_rt.builtins*$(ARCH)" 2>/dev/null)" # Note the quotation marks to handle spaces in the path.
CLANGRT := "$(shell find "/c/Program Files/LLVM" -name "clang_rt.builtins*$(ARCH)*" 2>/dev/null)" # Note the quotation marks to handle spaces in the path.
29
29
FFORT := $(FFORT) $(CLANGRT)
30
30
endif
31
31
# On macOS, we need to link against the system libraries.
0 commit comments