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
cflags=``, # Specify libraries you would like to link against, and other compiler options here
36
36
also_expose=[],
37
37
target::StaticTarget=StaticTarget(),
38
+
llvm_to_clang = Sys.iswindows(),
38
39
method_table=StaticCompiler.method_table,
39
40
kwargs...
40
41
)
@@ -109,6 +110,7 @@ function compile_executable(funcs::Union{Array,Tuple}, path::String=pwd(), name=
109
110
demangle =true,
110
111
cflags =``,
111
112
target::StaticTarget=StaticTarget(),
113
+
llvm_to_clang = Sys.iswindows(),
112
114
kwargs...
113
115
)
114
116
@@ -122,7 +124,7 @@ function compile_executable(funcs::Union{Array,Tuple}, path::String=pwd(), name=
122
124
nativetype =isprimitivetype(rt) ||isa(rt, Ptr)
123
125
nativetype ||@warn"Return type `$rt` of `$f$types` does not appear to be a native type. Consider returning only a single value of a native machine type (i.e., a single float, int/uint, bool, or pointer). \n\nIgnoring this warning may result in Undefined Behavior!"
0 commit comments