Skip to content

Commit

Permalink
Update select_makefile.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
borisbolliet authored Sep 29, 2024
1 parent f79302c commit 9b6f20d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions class-sz/select_makefile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,21 @@ if [ "$UNAME_S" == "Darwin" ] && [ "$UNAME_M" == "arm64" ]; then
elif [ "$UNAME_S" == "Linux" ]; then
echo "using Linux Makefile"
cp Makefile_linux Makefile

# Print contents of /usr/include/ and /usr/lib/x86_64-linux-gnu/
echo "Contents of /usr/include/:"
ls -la /usr/include/

echo "Contents of /usr/lib/x86_64-linux-gnu/:"
ls -la /usr/lib/x86_64-linux-gnu/

# Print environment variables
echo "Environment Variables:"
echo "C_INCLUDE_PATH: $C_INCLUDE_PATH"
echo "LD_LIBRARY_PATH: $LD_LIBRARY_PATH"
echo "LIBRARY_PATH: $LIBRARY_PATH"
echo "CFLAGS: $CFLAGS"
echo "LDFLAGS: $LDFLAGS"
else
echo "OS not supported yet: $UNAME_S. See README.md for preM1 mac. Otherwise, please get in touch or open an issue on the CLASS-SZ github."
echo "UNAME_S: $UNAME_S"
Expand Down

0 comments on commit 9b6f20d

Please sign in to comment.