File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 436
436
" Compile a C source file with MSVC to an object file. Return the command arguments."
437
437
[from to ]
438
438
(exec [(cl.exe ) " /c" (msvc-cstd ) " /utf-8" " /nologo" ;(cflags ) ;(msvc-compile-paths ) ;(msvc-opt ) ;(msvc-defines )
439
- " /I " ( dyn *syspath* " . " ) from (string " /Fo" to )]
439
+ from (string " /Fo" to )]
440
440
[from ] [to ] (string " compiling " from " ..." )))
441
441
442
442
(defn msvc-compile-c ++
443
443
" Compile a C++ source file with MSVC to an object file. Return the command arguments."
444
444
[from to ]
445
445
(exec [(cl.exe ) " /c" (msvc-c ++std ) " /utf-8" " /nologo" " /EHsc" ;(c ++flags ) ;(msvc-compile-paths ) ;(msvc-opt ) ;(msvc-defines )
446
- " /I " ( dyn *syspath* " . " ) from (string " /Fo" to )]
446
+ from (string " /Fo" to )]
447
447
[from ] [to ] (string " compiling " from " ..." )))
448
448
449
449
(defn msvc-link-shared
You can’t perform that action at this time.
0 commit comments