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
There is one mistake in parser_setup.md. The variable LIB_INSTALL_PATH=$PWD is ShadeWatcher/lib. While building the gcc-8.4.0, the param --prefix is set to $LIB_INSTALL_PATH/lib. Therefore, the target directory of building the gcc is ShadeWatcher/lib/lib and the executable will be generated in ShadeWatcher/lib/lib/bin.
So, the system path should be set as echo export PATH=$LIB_INSTALL_PATH/lib/bin:$PATH >> ~/.bashrc, instead of echo export PATH=$LIB_INSTALL_PATH/bin:$PATH >> ~/.bashrc. In this way, the building process could find the correct complier.
The text was updated successfully, but these errors were encountered:
There is one mistake in parser_setup.md. The variable
LIB_INSTALL_PATH=$PWD
isShadeWatcher/lib
. While building the gcc-8.4.0, the param--prefix
is set to$LIB_INSTALL_PATH/lib
. Therefore, the target directory of building the gcc isShadeWatcher/lib/lib
and the executable will be generated inShadeWatcher/lib/lib/bin
.So, the system path should be set as
echo export PATH=$LIB_INSTALL_PATH/lib/bin:$PATH >> ~/.bashrc
, instead ofecho export PATH=$LIB_INSTALL_PATH/bin:$PATH >> ~/.bashrc
. In this way, the building process could find the correct complier.The text was updated successfully, but these errors were encountered: