From f293d41d27ff83bda01a5328c020fd5a996683bf Mon Sep 17 00:00:00 2001 From: Austin Kelway Date: Mon, 27 May 2024 13:08:59 -0700 Subject: [PATCH] feat: Add experimental lib for par_unseq foreach (#103) --- ecsact/cli/commands/build/recipe/cook.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/ecsact/cli/commands/build/recipe/cook.cc b/ecsact/cli/commands/build/recipe/cook.cc index 365d551..9f8fc4a 100644 --- a/ecsact/cli/commands/build/recipe/cook.cc +++ b/ecsact/cli/commands/build/recipe/cook.cc @@ -363,6 +363,7 @@ auto clang_gcc_compile(compile_options options) -> int { #if !defined(_WIN32) compile_proc_args.push_back("-fPIC"); + compile_proc_args.push_back("-fexperimental-library"); #endif compile_proc_args.push_back("-std=c++20"); compile_proc_args.push_back("-stdlib=libc++");