diff --git a/examples/make.py b/examples/make.py index 7f208d92df6dc51097c91f70a9eaa970741cc429..40da5721455880d48e559995ce51e7f9875c29cb 100644 --- a/examples/make.py +++ b/examples/make.py @@ -4,6 +4,7 @@ for c_file in glob.glob(script_path + "/*/*.c", recursive=False): print("compiling", c_file) args = [ "gcc", # compiler + "-std=c11" # C11 mode "-L", # lib path flag "./", # where to look for libs "-lreowolf_rs", # add lib called "reowolf_rs"