This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php // ~/.config/psysh/config.php | |
| // Anything not Laravel - let's try to autoload something likely to exist | |
| if (!defined('LARAVEL_START')) { | |
| return [ | |
| 'defaultIncludes' => [ | |
| getcwd().'/vendor/autoload.php', | |
| getcwd().'/bootstrap/autoload.php', | |
| ], | |
| ]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //instructions are taken from: https://github.com/intel/linux-sgx | |
| //Installing SGX driver: | |
| //----------------------- | |
| git clone https://github.com/intel/linux-sgx-driver.git | |
| //Check if matching Kernel headers are installed: | |
| dpkg-query -s linux-headers-$(uname -r) | |
| //If not run: | |
| sudo apt-get install linux-headers-$(uname -r) | |
| //In order to build: |