Skip to content

Commit

Permalink
Remove un-needed install code for Linux system
Browse files Browse the repository at this point in the history
With conan2 the need for this command line is gone.  This command failed and did nothing.
  • Loading branch information
schaubh committed Dec 10, 2024
1 parent 5becbd1 commit 0e69b92
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,14 +356,6 @@ def add_basilisk_to_sys_path(self):
# if profile already exists the above command returns an error. Just ignore in this
# case. We don't want to overwrite an existing profile file
pass

if platform.system() == "Linux":
try:
# XXX: This fixes a linker issue due to the dual C++ ABI.
subprocess.check_output(["conan", "profile", "update", "settings.compiler.libcxx=libstdc++11", "default"])
print("\nConfiguring: " + statusColor + "use libstdc++11 by default" + endColor)
except:
pass
print(statusColor + "Checking conan configuration:" + endColor + " Done")

parser = argparse.ArgumentParser(description="Configure the Basilisk framework.")
Expand Down

0 comments on commit 0e69b92

Please sign in to comment.