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
I am trying to compile an apptainer using debian:bullseye-slim. The addition of this statement in the configure file stops the compilation
if [[ uname -eq Darwin ]] ; then
compflags=" ${compflags} -isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 -stdlib=libc++ "
fi
as it always equals true. The first test
This format of check works for the bash shells I have tested.
if [[ uname == 'Darwin' ]] ; then echo hey ;fi
The text was updated successfully, but these errors were encountered:
I can take a look later, but if you could review the script and make a PR @JustScreaming it would be great, and you can then be credited as a contributor to the project.
I am trying to compile an apptainer using debian:bullseye-slim. The addition of this statement in the configure file stops the compilation
if [[
uname
-eq Darwin ]] ; thencompflags=" ${compflags} -isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 -stdlib=libc++ "
fi
as it always equals true. The first test
This format of check works for the bash shells I have tested.
if [[
uname
== 'Darwin' ]] ; then echo hey ;fiThe text was updated successfully, but these errors were encountered: