Echo the configure command

This commit is contained in:
Benson Chu 2024-07-17 08:35:09 -05:00
parent d74c0c8292
commit b3644f6f70

View file

@ -83,14 +83,15 @@
packages = with pkgs; [ mps-debug ];
# inputsFrom = with pkgs; [ emacs ];
# LDFLAGS="-L$MPS_LIB" CFLAGS="-O0 -g3 -isystem $MPS_INC" \
# ./configure --with-mps=debug --with-native-compilation=no --enable-checking='yes,glyphs'
shellHook = ''
export MPS_LIB="${pkgs.mps-debug}/lib"
export MPS_INC="${pkgs.mps-debug}/include"
echo "MPS debug environment!"
echo "MPS_LIB = $MPS_LIB"
echo "MPS_INC = $MPS_INC"
echo "Configure Command: "
echo -n ' LDFLAGS="-L$MPS_LIB" CFLAGS="-O0 -g3 -isystem $MPS_INC" '
echo './configure --with-mps=debug --with-native-compilation=no --enable-checking="yes,glyphs"'
'';
};
};