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
Apple has enabled a new default security oriented featured called System Integrity Protection, often called rootless, in OS X 10.11 onwards. This new feature prevents the BCVTB version 1.5.0 and older to set environment variables which are required by the BCVTB to run. As a workaround, proceed as follows:
to create the symbolic link if you do not have Admin rights on your machine.
Furthermore, Mac OS X 10.11 does not set the computer's HostName correctly. This is needed by all versions of the BCVTB. As a workaround, proceed as follows:
Check if a HostName is set on your machine from a terminal with:
scutil --get HostName
If there's no HostName set, then set your HostName.
Your HostName must be the same as your computer's local network name.
To find out your computer's local network name,
Open Sharing preferences (choose Apple menu > System Preferences, then click Sharing).
The local network name is displayed beneath the computer’s name. For example, if your entry looks like
then set your HostName with
sudo scutil --set HostName mbp-2.local
The text was updated successfully, but these errors were encountered:
Apple has enabled a new default security oriented featured called System Integrity Protection, often called rootless, in OS X 10.11 onwards. This new feature prevents the BCVTB version 1.5.0 and older to set environment variables which are required by the BCVTB to run. As a workaround, proceed as follows:
create a symbolic link to
libbcvtb.dylib
with:ln -s $BCVTB_PATH/lib/util/libbcvtb.dylib /usr/local/lib/libbcvtb.dylib
where
$BCVTB_PATH
is the path to the BCVTB version to use.Note that you might have to use
sudo ln -s $BCVTB_PATH/lib/util/libbcvtb.dylib /usr/local/lib/libbcvtb.dylib
to create the symbolic link if you do not have Admin rights on your machine.
Furthermore, Mac OS X 10.11 does not set the computer's HostName correctly. This is needed by all versions of the BCVTB. As a workaround, proceed as follows:
Check if a HostName is set on your machine from a terminal with:
scutil --get HostName
If there's no HostName set, then set your HostName.
Your HostName must be the same as your computer's local network name.
To find out your computer's local network name,
Open Sharing preferences (choose Apple menu > System Preferences, then click Sharing)
.The local network name is displayed beneath the computer’s name. For example, if your entry looks like
![computername](https://cloud.githubusercontent.com/assets/1329080/14717040/7c4bf9aa-07a4-11e6-96fc-cd86b01d2e58.png)
then set your HostName with
sudo scutil --set HostName mbp-2.local
The text was updated successfully, but these errors were encountered: