We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I see that install_batch.sh sets LD_LIBRARY_PATH to $SDE_INSTALL/lib.
install_batch.sh
LD_LIBRARY_PATH
$SDE_INSTALL/lib
This is OK, but was never required with the original SDE and I think it is only needed because we build the compiler from scratch.
It might be better to fix RPATH in the compiler executable and do not require that extra environment variable.
The procedure is:
sudo apt-get install -y patchelf patchelf --set-rpath $SDE_INSTALL/lib p4c-barefoot
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I see that
install_batch.sh
setsLD_LIBRARY_PATH
to$SDE_INSTALL/lib
.This is OK, but was never required with the original SDE and I think it is only needed because we build the compiler from scratch.
It might be better to fix RPATH in the compiler executable and do not require that extra environment variable.
The procedure is:
The text was updated successfully, but these errors were encountered: