This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#ifdef __APPLE__ | |
#include <OpenCL/opencl.h> | |
#else | |
#include <CL/cl.h> | |
#endif | |
int main() { |
This file contains 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
#!/bin/sh | |
# Download and build OS X Mavericks XNU Source | |
if [ ! -d "dtrace-118" ]; then | |
curl -O http://opensource.apple.com/tarballs/dtrace/dtrace-118.tar.gz | |
tar zxf dtrace-118.tar.gz | |
rm dtrace-118.tar.gz | |
fi | |
if [ ! -d "AvailabilityVersions-6" ]; then | |
curl -O http://opensource.apple.com/tarballs/AvailabilityVersions/AvailabilityVersions-6.tar.gz | |
tar zxf AvailabilityVersions-6.tar.gz |