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
The configure setting --enable-openmp and --enable-pthread do not add the appropriate flags (i.e. -fopenmp) to the CXXFLAGS variable, they only add to the CFLAGS variable.
The corresponding settings come from the sc library and maybe should get fixed there.
Or we implement our own openmp and pthread configure settings and overwrite those of sc.
The current workaround is to set the CXXFLAGS manually:
configure --enable-openmp CXXFLAGS="-fopenmp"
The text was updated successfully, but these errors were encountered:
The configure setting
--enable-openmp
and--enable-pthread
do not add the appropriate flags (i.e.-fopenmp
) to the CXXFLAGS variable, they only add to the CFLAGS variable.The corresponding settings come from the sc library and maybe should get fixed there.
Or we implement our own openmp and pthread configure settings and overwrite those of sc.
The current workaround is to set the CXXFLAGS manually:
The text was updated successfully, but these errors were encountered: