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
# Ubuntu 12.04 LTS Clang3.3 + libc++ | |
# ================================== | |
# Do not use old Clang 3.0 for bootstrapping... | |
# which does not work. | |
# Perl is required in some LLVM build processes. | |
set -e | |
# apt-get sometimes exits with non-zero code even it installed successfully. | |
# And that makes script to halt. This is nonsense and ridiculous! |
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
# Don't trust the fucking manual about minimum requirements. | |
# You always need 2GB of *swap* space at least and 512MB physical RAM. | |
# Maybe server can run with less resources, but it fails to create initial database. | |
# So don't expect it to run on low-end machine. | |
# Configure hostname properly... Oracle fails if it cannot find the server using hostname. | |
# Example. | |
echo "127.0.0.1 oracle11g.local" | |
# Install requirements properly. Especially, 'bc' is undocumented dependency. |
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
// Example usage | |
// fixed and added some codes | |
// | |
#define EEGL_DEBUG_STUB_FUNC_DECORATION static | |
#define EEGL_DEBUG_STUB_EXCEPT_ERROR {HelperAssertGLError();} | |
static | |
void | |
HelperAssertGLError() |
NewerOlder