Added audio code

This commit is contained in:
Seiji Emery 2012-09-04 13:05:31 -07:00
parent 092fb77a98
commit 933946320a
368 changed files with 58558 additions and 0 deletions

7
README Normal file
View file

@ -0,0 +1,7 @@
Boxing balance surface project
Low latency high FPS display of exact balance point of a standing person,
detected by pressure sensors at corners of a 4' by 4' platform.
Sensors read and processed by Maple ret6 board, sent to MacBook via serial USB.

231
SerialInterface.cpp Normal file
View file

@ -0,0 +1,231 @@
//
// SerialInterface.cpp
// interface
//
// Created by Seiji Emery on 8/10/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#include "SerialInterface.h"
#include <iostream>
// These includes are for serial port reading/writing
#include <unistd.h>
#include <fcntl.h>
#include <termios.h>
// For accessing the serial port
void init_port(int *fd, int baud)
{
struct termios options;
tcgetattr(*fd,&options);
switch(baud)
{
case 9600: cfsetispeed(&options,B9600);
cfsetospeed(&options,B9600);
break;
case 19200: cfsetispeed(&options,B19200);
cfsetospeed(&options,B19200);
break;
case 38400: cfsetispeed(&options,B38400);
cfsetospeed(&options,B38400);
break;
case 115200: cfsetispeed(&options,B115200);
cfsetospeed(&options,B115200);
break;
default:cfsetispeed(&options,B9600);
cfsetospeed(&options,B9600);
break;
}
options.c_cflag |= (CLOCAL | CREAD);
options.c_cflag &= ~PARENB;
options.c_cflag &= ~CSTOPB;
options.c_cflag &= ~CSIZE;
options.c_cflag |= CS8;
tcsetattr(*fd,TCSANOW,&options);
}
bool SerialInterface::enable () {
if (!_enabled) {
// Try to re-initialize the interface.
// May fail (if open() fails), in which case an error code is emitted
// (which we can safely ignore), and _enabled is reset to false
initInterface();
}
return _enabled;
}
void SerialInterface::disable () {
_enabled = false;
closeInterface();
}
void SerialInterface::closeInterface () {
close(_serial_fd);
_enabled = false;
}
int SerialInterface::initInterface () {
if (_enabled) {
_serial_fd = open("/dev/tty.usbmodem411", O_RDWR | O_NOCTTY | O_NDELAY); // List usbSerial devices using Terminal ls /dev/tty.*
if (_serial_fd == -1) {
std::cerr << "Unable to open serial port (" << _serial_fd << ")\n";
_enabled = false;
return 1;
} else {
init_port(&_serial_fd, 115200);
}
}
return 0;
}
// Reads data from a serial interface and updates gyro and accelerometer state
// TODO: implement accelerometer
void SerialInterface::readSensors (float deltaTime) {
// Note: changed to use binary format instead of plaintext
// (Changed in balance_maple.pde as well (toggleable))
/*
int lines_read = 0;
const float AVG_RATE = 0.00001;
if (_enabled)
{
char bufchar[1];
while (read(_serial_fd, bufchar, 1) > 0)
{
serial_buffer[serial_buffer_pos] = bufchar[0];
serial_buffer_pos++;
// Have we reached end of a line of input?
if ((bufchar[0] == '\n') || (serial_buffer_pos >= MAX_BUFFER))
{
lines_read++;
// At end - Extract value from string to variables
if (serial_buffer[0] != 'p')
{
samplecount++;
sscanf(serial_buffer, "%d %d %d %d", &adc_channels[0],
&adc_channels[1],
&adc_channels[2],
&adc_channels[3]);
for (int i = 0; i < 4; i++)
{
if (!first_measurement)
avg_adc_channels[i] = (1.f - AVG_RATE)*avg_adc_channels[i] +
AVG_RATE*(float)adc_channels[i];
else
{
avg_adc_channels[i] = (float)adc_channels[i];
}
}
}
// Clear rest of string for printing onscreen
while(serial_buffer_pos++ < MAX_BUFFER) serial_buffer[serial_buffer_pos] = ' ';
serial_buffer_pos = 0;
}
if (bufchar[0] == 'p')
{
gettimeofday(&end_ping, NULL);
ping = diffclock(begin_ping,end_ping);
display_ping = 1;
}
}
}
return lines_read;
*/
/*
if (_enabled) {
int _channels[CHANNEL_COUNT];
_channels[0] = _channels[1] = _channels[2] = _channels[3] = 0;
for (char c; read(_serial_fd, &c, 1) > 0; ) { // Read bytes from serial port
if (_readPacket) {
// load byte into buffer
_buffer[_bufferPos++] = c;
if (_bufferPos > CHANNEL_COUNT * sizeof(int)) {
// if buffer is full: load into channels
for (int i = 0; i < CHANNEL_COUNT; ++i) {
_channels[i] += *((int*)(_buffer + i * sizeof(int)));
}
//memcpy(_channels, _buffer, CHANNEL_COUNT * sizeof(int));
// And check for next opcode
_readPacket = false;
}
} else {
// read opcode
switch (c) {
case 'd':
_readPacket = true;
_bufferPos = 0;
break;
case 'p':
// TODO: implement pings
break;
}
}
}
}
*/
}
// Old read_sensors()
/*
// Collect sensor data from serial port
void read_sensors(void)
{
if (serial_on)
{
char bufchar[1];
while (read(serial_fd, bufchar, 1) > 0)
{
serial_buffer[serial__bufferpos] = bufchar[0];
serial__bufferpos++;
// Have we reached end of a line of input?
if ((bufchar[0] == '\n') || (serial__bufferpos >= MAX_BUFFER))
{
// At end - Extract value from string to variables
if (serial_buffer[0] != 'p')
{
samplecount++;
sscanf(serial_buffer, "%d %d %d %d", &adc_channels[0],
&adc_channels[1],
&adc_channels[2],
&adc_channels[3]);
for (int i = 0; i < 4; i++)
{
if (!first_measurement)
avg_adc_channels[i] = (1.f - AVG_RATE)*avg_adc_channels[i] +
AVG_RATE*(float)adc_channels[i];
else
{
avg_adc_channels[i] = (float)adc_channels[i];
}
}
first_measurement = 0;
}
// Clear rest of string for printing onscreen
while(serial__bufferpos++ < MAX_BUFFER) serial_buffer[serial__bufferpos] = ' ';
serial__bufferpos = 0;
}
if (bufchar[0] == 'p')
{
gettimeofday(&end_ping, NULL);
ping = diffclock(begin_ping,end_ping);
display_ping = 1;
}
}
}
}
*/

64
SerialInterface.h Normal file
View file

@ -0,0 +1,64 @@
//
// SerialInterface.h
// interface
//
// Created by Seiji Emery on 8/10/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#ifndef interface_SerialInterface_h
#define interface_SerialInterface_h
void init_port (int *fd, int baud);
const int CHANNEL_COUNT = 4;
class SerialInterface {
int _serial_fd; // internal device id
bool _enabled; // Enables/disables serial i/o
// Disabled by default if open() fails
// Internal persistant state for readSensors()
char _buffer [CHANNEL_COUNT * sizeof(int)];
int _bufferPos; // = 0;
bool _readPacket;
// Try to open the serial port. On failure, disable the interface internally, write
// error message to cerr, and return non-zero error code (which can be ignored).
// Called by constructor and enable().
int initInterface();
// Close the serial port.
// Called by deconstructor and disable().
void closeInterface();
public:
SerialInterface()
: _enabled(true),
_bufferPos(0),
_readPacket(false)
{
initInterface();
}
~SerialInterface() {
closeInterface();
}
// Try to reinitialize the interface.
// If already enabled, do nothing.
// If reinitialization fails return false; otherwise return true.
bool enable();
// Disable the interface.
void disable();
bool isEnabled () { return _enabled; }
// Updates gyro using serial input.
// Reads data from serial port into _buffer and accumulates that into _channels.
// Uses delta time and _channel input to update gyro yaw, pitch, and roll
void readSensors (float deltaTime);
};
#endif

243
audio.cpp Normal file
View file

@ -0,0 +1,243 @@
//
// audio.cpp
// interface
//
// Created by Seiji Emery on 9/2/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include "audio.h"
// static member definitions
// (required will cause linker errors if left out...):
bool Audio::initialized;
Audio::AudioData *Audio::data;
PaStream *Audio::stream;
PaError Audio::err;
float Audio::AudioData::inputGain;
int audioCallback (const void *inputBuffer,
void *outputBuffer,
unsigned long frames,
const PaStreamCallbackTimeInfo *timeInfo,
PaStreamCallbackFlags statusFlags,
void *userData)
{
Audio::AudioData *data = (Audio::AudioData*)userData;
float *input = (float*)inputBuffer;
float *output = (float*)outputBuffer;
if (input != NULL) {
// combine input into data buffer
// temp variables (frames and bufferPos need to remain untouched so they can be used in the second block of code)
unsigned int f = (unsigned int)frames,
p = data->bufferPos;
for (; p < data->bufferLength && f > 0; --f, ++p) {
data->buffer[p].l += (*input++) * data->inputGain;
data->buffer[p].r += (*input++) * data->inputGain;
}
if (f > 0) {
// handle data->buffer wraparound
for (p = 0; f > 0; --f, ++p) {
data->buffer[p].l += (*input++) * data->inputGain;
data->buffer[p].r += (*input++) * data->inputGain;
}
}
}
// Write data->buffer into outputBuffer
if (data->bufferPos + frames >= data->bufferLength) {
// wraparound: write first section (end of buffer) first
// note: buffer is just an array of a struct of floats, so it can be typecast to float*
memcpy(output, (float*)(data->buffer + data->bufferPos), // write data buffer
(data->bufferLength - data->bufferPos) * 2 * sizeof(float));
memset((float*)(data->buffer + data->bufferPos), 0, // clear data buffer
(data->bufferLength - data->bufferPos) * 2 * sizeof(float));
frames -= (data->bufferLength - data->bufferPos); // adjust frames to be written
data->bufferPos = 0; // reset position to start
}
memcpy(output, (float*)(data->buffer + data->bufferPos), // write data buffer
frames * 2 * sizeof(float));
memset((float*)(data->buffer + data->bufferPos), 0, // clear data buffer
frames * 2 * sizeof(float));
data->bufferPos += frames; // update position
return paContinue;
}
/*
** Initializes portaudio, and creates and starts an audio stream.
*/
void Audio::init()
{
initialized = true;
data = new AudioData();
err = Pa_Initialize();
if (err != paNoError) goto error;
err = Pa_OpenDefaultStream(&stream,
2, // input channels
2, // output channels
paFloat32, // sample format
44100, // sample rate
256, // frames per buffer
audioCallback, // callback function
(void*)data); // user data to be passed to callback
if (err != paNoError) goto error;
err = Pa_StartStream(stream);
if (err != paNoError) goto error;
return;
error:
fprintf(stderr, "-- Failed to initialize portaudio --\n");
fprintf(stderr, "PortAudio error (%d): %s\n", err, Pa_GetErrorText(err));
exit(err); // replace w/ return value error code?
}
/*
** Closes the running audio stream, and deinitializes portaudio.
*/
void Audio::terminate ()
{
if (!initialized) return;
initialized = false;
// err = Pa_StopStream(stream);
// if (err != paNoError) goto error;
err = Pa_CloseStream(stream);
if (err != paNoError) goto error;
delete data;
err = Pa_Terminate();
if (err != paNoError) goto error;
return;
error:
fprintf(stderr, "-- portaudio termination error --\n");
fprintf(stderr, "PortAudio error (%d): %s\n", err, Pa_GetErrorText(err));
exit(err);
}
void Audio::writeAudio (unsigned int offset, unsigned int length, float *left, float *right) {
if (length > data->bufferLength) {
fprintf(stderr, "Audio::writeAudio length exceeded (%d). Truncating to %d.\n", length, data->bufferLength);
length = data->bufferLength;
}
unsigned int p = data->bufferPos + offset;
if (p > data->bufferLength)
p -= data->bufferLength;
for (; p < data->bufferLength && length > 0; --length, ++p) {
data->buffer[p].l = *left++;
data->buffer[p].r = *right++;
}
if (length > 0) {
p = 0;
for (; length > 0; --length, ++p) {
data->buffer[p].l = *left++;
data->buffer[p].r = *right++;
}
}
}
void Audio::writeTone (unsigned int offset, unsigned int length, float left, float right) {
if (length > data->bufferLength) {
fprintf(stderr, "Audio::writeTone length exceeded (%d). Truncating to %d.\n", length, data->bufferLength);
length = data->bufferLength;
}
unsigned int p = data->bufferPos + offset;
if (p > data->bufferLength)
p -= data->bufferLength;
for (; p < data->bufferLength && length > 0; --length, ++p) {
data->buffer[p].l = left;
data->buffer[p].r = right;
}
if (length > 0) {
p = 0;
for (; length > 0; --length, ++p) {
data->buffer[p].l = left;
data->buffer[p].r = right;
}
}
}
void Audio::addAudio (unsigned int offset, unsigned int length, float *left, float *right) {
if (length > data->bufferLength) {
fprintf(stderr, "Audio::addAudio length exceeded (%d). Truncating to %d.\n", length, data->bufferLength);
length = data->bufferLength;
}
unsigned int p = data->bufferPos + offset;
if (p > data->bufferLength)
p -= data->bufferLength;
for (; p < data->bufferLength && length > 0; --length, ++p) {
data->buffer[p].l += *left++;
data->buffer[p].r += *right++;
}
if (length > 0) {
p = 0;
for (; length > 0; --length, ++p) {
data->buffer[p].l += *left++;
data->buffer[p].r += *right++;
}
}
}
void Audio::addTone (unsigned int offset, unsigned int length, float left, float right) {
if (length > data->bufferLength) {
fprintf(stderr, "Audio::writeTone length exceeded (%d). Truncating to %d.\n", length, data->bufferLength);
length = data->bufferLength;
}
unsigned int p = data->bufferPos + offset;
if (p > data->bufferLength)
p -= data->bufferLength;
for (; p < data->bufferLength && length > 0; --length, ++p) {
data->buffer[p].l += left;
data->buffer[p].r += right;
}
if (length > 0) {
p = 0;
for (; length > 0; --length, ++p) {
data->buffer[p].l += left;
data->buffer[p].r += right;
}
}
}
void Audio::clearAudio(unsigned int offset, unsigned int length) {
if (length > data->bufferLength) {
fprintf(stderr, "Audio::clearAudio length exceeded (%d). Truncating to %d.\n", length, data->bufferLength);
length = data->bufferLength;
}
unsigned int p = data->bufferPos + offset;
if (p > data->bufferLength)
p -= data->bufferLength;
if (length + p < data->bufferLength) {
memset((float*)(data->buffer + p), 0,
sizeof(float) * 2 * length);
} else {
memset((float*)(data->buffer + p), 0,
sizeof(float) * 2 * (data->bufferLength - p));
memset((float*)(data->buffer + p), 0,
sizeof(float) * 2 * (data->bufferLength + p - data->bufferLength));
}
}

74
audio.h Normal file
View file

@ -0,0 +1,74 @@
//
// audio.h
// interface
//
// Created by Seiji Emery on 9/2/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#ifndef interface_audio_h
#define interface_audio_h
#include "portaudio.h"
typedef short sample_t;
int audioCallback (const void *inputBuffer,
void *outputBuffer,
unsigned long framesPerBuffer,
const PaStreamCallbackTimeInfo *timeInfo,
PaStreamCallbackFlags statusFlags,
void *userData);
/*
** TODO: Docs
*/
class Audio {
public:
static void init ();
static void terminate ();
// Audio values clamped betewen -1.0f and 1.0f
static void writeAudio (unsigned int offset, unsigned int length, float *left, float *right);
static void addAudio (unsigned int offset, unsigned int length, float *left, float *right);
static void writeTone (unsigned int offset, unsigned int length, float left, float right);
static void addTone (unsigned int offset, unsigned int length, float left, float right);
static void clearAudio (unsigned int offset, unsigned int length);
static void setInputGain (float gain) {
data->inputGain = gain;
}
private:
static bool initialized;
static struct AudioData {
struct BufferFrame{
float l, r;
} *buffer;
const static unsigned int bufferLength = 1000;
unsigned int bufferPos;
static float inputGain;// = 1.f;
AudioData () : bufferPos(0) {
inputGain = 1.0f;
buffer = new BufferFrame[bufferLength];
for (unsigned int i = 0; i < bufferLength; ++i) {
buffer[i].l = buffer[i].r = 0;
}
}
~AudioData () {
delete[] buffer;
}
}*data;
static PaStream *stream;
static PaError err;
Audio (); // prevent instantiation (private constructor)
friend int audioCallback (const void*, void*, unsigned long, const PaStreamCallbackTimeInfo*, PaStreamCallbackFlags, void*);
};
#endif

View file

@ -0,0 +1,96 @@
/*
Balance Platform code for Maple ret6
Read a number of piezo pressure sensors at analog inputs and send data to PC
*/
const int inputPinX = 0;
const int inputPinY = 1;
const int inputPinZ = 2;
const int inputPinW = 3;
int pingRcvd = 0;
int corners[4];
int baseline[4];
float accum[4];
int sampleCount = 0;
const int NUM_SAMPLES=100;
const int debug = 1;
unsigned int time;
char readBuffer[100];
void setup()
{
pinMode(inputPinX, INPUT_ANALOG);
pinMode(inputPinY, INPUT_ANALOG);
pinMode(inputPinZ, INPUT_ANALOG);
pinMode(inputPinW, INPUT_ANALOG);
pinMode(BOARD_LED_PIN, OUTPUT);
corners[0] = corners[1] = corners[2] = corners[3] = 0;
accum[0] = accum[1] = accum[2] = accum[3] = 0.f;
baseline[0] = analogRead(inputPinX);
baseline[1] = analogRead(inputPinY);
baseline[2] = analogRead(inputPinZ);
}
void loop()
{
sampleCount++;
// Read the instantaneous value of the pressure sensors, average over last 10 samples
accum[0] += analogRead(inputPinX);
accum[1] += analogRead(inputPinY);
accum[2] += analogRead(inputPinZ);
accum[3] += analogRead(inputPinW);
//accum[2] += analogRead(inputPinZ);
//corners[0] = accum[0];
//corners[1] = accum[1];
//corners[2] = accum[2];
// Periodically send averaged value to the PC
// Print out the instantaneous deviation from the trailing average
if (sampleCount % NUM_SAMPLES == 0)
{
corners[0] = accum[0] / NUM_SAMPLES;
corners[1] = accum[1] / NUM_SAMPLES;
corners[2] = accum[2] / NUM_SAMPLES;
corners[3] = accum[3] / NUM_SAMPLES;
//corners[3] = accum[3] / NUM_SAMPLES;
accum[0] = accum[1] = accum[2] = accum[3] = 0.f;
if (debug)
{
//SerialUSB.print("Measured = ");
SerialUSB.print(corners[0]);
SerialUSB.print(" ");
SerialUSB.print(corners[1]);
SerialUSB.print(" ");
SerialUSB.print(corners[2]);
SerialUSB.print(" ");
SerialUSB.print(corners[3]);
SerialUSB.println("");
}
}
pingRcvd = 0;
while (SerialUSB.available() > 0)
{
pingRcvd = 1;
readBuffer[0] = SerialUSB.read();
}
if (pingRcvd == 1)
{
SerialUSB.println("pong");
toggleLED();
}
}

BIN
build/.DS_Store vendored Normal file

Binary file not shown.

BIN
build/Debug/automata6 Executable file

Binary file not shown.

3
build/Debug/junk.txt Normal file
View file

@ -0,0 +1,3 @@
blah blah blah
Philip is a weenie

BIN
build/Debug/test_c_plus Executable file

Binary file not shown.

BIN
build/Release/.DS_Store vendored Normal file

Binary file not shown.

BIN
build/Release/automata6 Executable file

Binary file not shown.

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.apple.xcode.dsym.automata6</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>dSYM</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>

BIN
build/Release/automata7 Executable file

Binary file not shown.

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.apple.xcode.dsym.automata7</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>dSYM</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>

View file

@ -0,0 +1 @@
/Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/main.o

View file

@ -0,0 +1,2 @@
000000000070e2100000000000001dee f2e6d648fa53a608fdd4d42f67ad2db6 ffffffffffffffffffffffffffffffff 99708 /Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/main.o
f2e6d648b0a188d3fdd4d42f67b32aa6 be93829766c551603abdbc16216bcb6b ffffffffffffffffffffffffffffffff 25472 /Users/philip/Desktop/test_c_plus/build/Debug/automata6

View file

@ -0,0 +1,2 @@
f2e6d648b0d62bacfdd4d42f67b32efb be93829766c551603abdbc16216bcb6b ffffffffffffffffffffffffffffffff 25232 /Users/philip/Desktop/test_c_plus/build/Debug/automata6
000000000052eefc00000000000019b3 f2e6d648fa53a608fdd4d42f67ad2db6 ffffffffffffffffffffffffffffffff 98180 /Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/main.o

View file

@ -0,0 +1,108 @@
Tautomata6
v7
r0
t325212964.225906
cCheck dependencies
cCompileC build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
cLd /Users/philip/Desktop/test_c_plus/build/Debug/automata6 normal x86_64
N/Developer/SDKs/MacOSX10.6.sdk
c000000004CAA740B00000000000000EE
t1286239243
s238
N/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/GLUT.framework/Headers/glut.h
c000000004C23CCCC000000000000578C
t1277414604
s22412
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/math.h
c000000004A5C14A000000000000004F1
t1247548576
s1265
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdio.h
c000000004BBD2CE90000000000004174
t1270689001
s16756
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdlib.h
c000000004BBD2CE90000000000002DF5
t1270689001
s11765
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/string.h
c000000004BBD2CE90000000000001731
t1270689001
s5937
N/System/Library/Frameworks/GLUT.framework/GLUT
c000000004B5FAB1A00000000001A2920
t1264560922
s1714464
N/System/Library/Frameworks/OpenGL.framework/OpenGL
c000000004D7713DA0000000000043330
t1299649498
s275248
N/Users/philip/Desktop/test_c_plus/build/Debug/automata6
t1303519236
s25472
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/automata6.LinkFileList
c000000004D901AEB000000000000006B
t1301289707
s107
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/main.o
t1303519236
s99708
N/Users/philip/Desktop/test_c_plus/main.cpp
c000000004DB216950000000000003523
t1303516821
s13603
i<iostream>
i<fstream>
i<string>
i<stdlib.h>
i<GLUT/glut.h>
i<iostream>
i<fstream>
i<math.h>
i<string.h>
i<stdio.h>
CCheck dependencies
r0
lSLF07#2@18"Check dependencies325212964#325212964#0(0"0(0#1#0"8605789600#0"0#
CCompileC build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
s325212036.060392
e325212036.492859
r1
xCompileC
xbuild/automata6.build/Debug/automata6.build/Objects-normal/x86_64/main.o
x/Users/philip/Desktop/test_c_plus/main.cpp
xnormal
xx86_64
xc++
xcom.apple.compilers.gcc.4_2
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()':
o/Users/philip/Desktop/test_c_plus/main.cpp:401: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_io()':
o/Users/philip/Desktop/test_c_plus/main.cpp:412: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/test_c_plus/main.cpp:414: warning: deprecated conversion from string constant to 'char*'
lSLF07#2@50"Compile /Users/philip/Desktop/test_c_plus/main.cpp325212036#325212036#0(490"/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()': /Users/philip/Desktop/test_c_plus/main.cpp:401: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_io()': /Users/philip/Desktop/test_c_plus/main.cpp:412: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/test_c_plus/main.cpp:414: warning: deprecated conversion from string constant to 'char*' 3(22@53"Deprecated conversion from string constant to 'char*'325212036#80#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp325209621#401#0#401#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'325212036#268#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp325209621#412#0#412#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'325212036#379#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp325209621#414#0#414#0#49"deprecated conversion from string constant to '*'0(0#0#42"/Users/philip/Desktop/test_c_plus/main.cpp8605465536#1272" cd /Users/philip/Desktop/test_c_plus setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/automata6-generated-files.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/automata6-own-target-headers.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/automata6-all-target-headers.hmap -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/automata6-project-headers.hmap -F/Users/philip/Desktop/test_c_plus/build/Debug -I/Users/philip/Desktop/test_c_plus/build/Debug/include -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/DerivedSources/x86_64 -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/DerivedSources -c /Users/philip/Desktop/test_c_plus/main.cpp -o /Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/main.o 0#
CLd /Users/philip/Desktop/test_c_plus/build/Debug/automata6 normal x86_64
s325212036.492944
e325212036.513658
r1
xLd
x/Users/philip/Desktop/test_c_plus/build/Debug/automata6
xnormal
xx86_64
lSLF07#2@60"Link /Users/philip/Desktop/test_c_plus/build/Debug/automata6325212036#325212036#0(0"0(0#0#0"8606088000#515" cd /Users/philip/Desktop/test_c_plus setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/test_c_plus/build/Debug -F/Users/philip/Desktop/test_c_plus/build/Debug -filelist /Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/automata6.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/test_c_plus/build/Debug/automata6 0#

View file

@ -0,0 +1,111 @@
Tautomata6
v7
r0
t322982507.904974
cCheck dependencies
cCompileC build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
cLd /Users/philip/Desktop/test_c_plus/build/Debug/automata6 normal x86_64
N/Developer/SDKs/MacOSX10.6.sdk
c000000004CAA740B00000000000000EE
t1286239243
s238
N/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/GLUT.framework/Headers/glut.h
c000000004C23CCCC000000000000578C
t1277414604
s22412
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/math.h
c000000004A5C14A000000000000004F1
t1247548576
s1265
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdio.h
c000000004BBD2CE90000000000004174
t1270689001
s16756
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdlib.h
c000000004BBD2CE90000000000002DF5
t1270689001
s11765
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/string.h
c000000004BBD2CE90000000000001731
t1270689001
s5937
N/System/Library/Frameworks/GLUT.framework/GLUT
c000000004B5FAB1A00000000001A2920
t1264560922
s1714464
N/System/Library/Frameworks/OpenGL.framework/OpenGL
c000000004D22BC490000000000043330
t1294122057
s275248
N/Users/philip/Desktop/test_c_plus/build/Debug/automata6
t1301289707
s25232
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/automata6.LinkFileList
c000000004D901AEB000000000000006B
t1301289707
s107
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/main.o
t1301289707
s98180
N/Users/philip/Desktop/test_c_plus/main.cpp
c000000004D901A79000000000000317E
t1301289593
s12670
i<iostream>
i<fstream>
i<string>
i<stdlib.h>
i<GLUT/glut.h>
i<iostream>
i<fstream>
i<math.h>
i<string.h>
i<stdio.h>
CCheck dependencies
r0
lSLF07#2@18"Check dependencies322982507#322982507#0(0"0(0#1#0"8612578496#0"0#
CCompileC build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
s322982507.458512
e322982507.884903
r1
xCompileC
xbuild/automata6.build/Debug/automata6.build/Objects-normal/x86_64/main.o
x/Users/philip/Desktop/test_c_plus/main.cpp
xnormal
xx86_64
xc++
xcom.apple.compilers.gcc.4_2
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void init_cells()':
o/Users/philip/Desktop/test_c_plus/main.cpp:131: warning: unused variable 'centersize'
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void update_cells()':
o/Users/philip/Desktop/test_c_plus/main.cpp:165: warning: unused variable 'neighborsum'
o/Users/philip/Desktop/test_c_plus/main.cpp:167: warning: unused variable 'io_char_counter'
o/Users/philip/Desktop/test_c_plus/main.cpp:174: warning: unused variable 'UPDATE_MEMORY_DECAY'
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()':
o/Users/philip/Desktop/test_c_plus/main.cpp:361: warning: deprecated conversion from string constant to 'char*'
lSLF07#2@50"Compile /Users/philip/Desktop/test_c_plus/main.cpp322982507#322982507#0(706"/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void init_cells()': /Users/philip/Desktop/test_c_plus/main.cpp:131: warning: unused variable 'centersize' /Users/philip/Desktop/test_c_plus/main.cpp: In function 'void update_cells()': /Users/philip/Desktop/test_c_plus/main.cpp:165: warning: unused variable 'neighborsum' /Users/philip/Desktop/test_c_plus/main.cpp:167: warning: unused variable 'io_char_counter' /Users/philip/Desktop/test_c_plus/main.cpp:174: warning: unused variable 'UPDATE_MEMORY_DECAY' /Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()': /Users/philip/Desktop/test_c_plus/main.cpp:361: warning: deprecated conversion from string constant to 'char*' 5(22@28"Unused variable 'centersize'322982507#77#86#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp322982393#131#0#131#0#19"unused variable '*'0(22@29"Unused variable 'neighborsum'322982507#242#87#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp322982393#165#0#165#0#19"unused variable '*'0(22@33"Unused variable 'io_char_counter'322982507#329#91#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp322982393#167#0#167#0#19"unused variable '*'0(22@37"Unused variable 'UPDATE_MEMORY_DECAY'322982507#420#95#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp322982393#174#0#174#0#19"unused variable '*'0(22@53"Deprecated conversion from string constant to 'char*'322982507#595#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp322982393#361#0#361#0#49"deprecated conversion from string constant to '*'0(0#0#42"/Users/philip/Desktop/test_c_plus/main.cpp8611293184#1272" cd /Users/philip/Desktop/test_c_plus setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/automata6-generated-files.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/automata6-own-target-headers.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/automata6-all-target-headers.hmap -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/automata6-project-headers.hmap -F/Users/philip/Desktop/test_c_plus/build/Debug -I/Users/philip/Desktop/test_c_plus/build/Debug/include -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/DerivedSources/x86_64 -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/DerivedSources -c /Users/philip/Desktop/test_c_plus/main.cpp -o /Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/main.o 0#
CLd /Users/philip/Desktop/test_c_plus/build/Debug/automata6 normal x86_64
s322982507.885011
e322982507.904926
r1
xLd
x/Users/philip/Desktop/test_c_plus/build/Debug/automata6
xnormal
xx86_64
lSLF07#2@60"Link /Users/philip/Desktop/test_c_plus/build/Debug/automata6322982507#322982507#0(0"0(0#0#0"8611887200#515" cd /Users/philip/Desktop/test_c_plus setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/test_c_plus/build/Debug -F/Users/philip/Desktop/test_c_plus/build/Debug -filelist /Users/philip/Desktop/test_c_plus/build/automata6.build/Debug/automata6.build/Objects-normal/x86_64/automata6.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/test_c_plus/build/Debug/automata6 0#

View file

@ -0,0 +1 @@
/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o

View file

@ -0,0 +1 @@
/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o

View file

@ -0,0 +1 @@
/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o

View file

@ -0,0 +1,16 @@
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 105476 /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 100184 /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 105132 /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o
00000000000000000000000000000000 d8add73606ccbc4d815f460ac9e84903 ffffffffffffffffffffffffffffffff 102 /Users/philip/Desktop/automata/test_c_plus/build/Release/automata6.dSYM
65c4b152c0d828b38da52ff20bbe7080 1a5b4231140b88802ee1dee0e007d8ff ffffffffffffffffffffffffffffffff 71272 /Users/philip/Desktop/automata/test_c_plus/build/Release/automata6
a35a6ceaef6e85867b8c2045d24761d1 c7c1c795286a6bef9492a1301dbaf1ea ffffffffffffffffffffffffffffffff 22120 /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6
8f643bb7574536e8cda8974487e8318b 3af6063a2af0fa1345ea0ff0083c409e ffffffffffffffffffffffffffffffff 19596 /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6
9d0ced60c56f699e0e1edd1b5a8ca9c9 29c1cac0bf0663bfe4e7eb28111b3867 ffffffffffffffffffffffffffffffff 24544 /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6
000000000015f9ca0000000000001ece 37116946c6c1af292497fd4fda2efdc1 ffffffffffffffffffffffffffffffff 105476 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o
000000000015f9ca0000000000001ece d754e235ca464465c3c2d339726fb394 ffffffffffffffffffffffffffffffff 100184 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o
000000000015f9ca0000000000001ece dc5fa72143e5c64ac997c8eafa56c016 ffffffffffffffffffffffffffffffff 105132 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o
00000000000000000000000000000000 d8c56ede45789364d976a2b1e21d68f5 ffffffffffffffffffffffffffffffff 102 /Users/philip/Desktop/test_c_plus/build/Release/automata6.dSYM
edb73db0cda822287152d50d3d625065 faa6ca067b2cb1ee97e89c815125fdbe ffffffffffffffffffffffffffffffff 71264 /Users/philip/Desktop/test_c_plus/build/Release/automata6
371169468f0906582497fd4fda30f9a1 c74bc30de7dd61880616e520aa027b2c ffffffffffffffffffffffffffffffff 22112 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6
d754e235838eed14c3c2d3397271b7f4 39b810ca89510d7930e25f6604689a03 ffffffffffffffffffffffffffffffff 19588 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6
dc5fa7210a2d6f3bc997c8eafa48c476 2f5ec225a58ecaae696489d7c1013b69 ffffffffffffffffffffffffffffffff 24536 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6

View file

@ -0,0 +1,8 @@
00000000000000000000000000000000 d8c56ede45789364d976a2b1e21d68f5 ffffffffffffffffffffffffffffffff 102 /Users/philip/Desktop/test_c_plus/build/Release/automata6.dSYM
edb73db0ce92a5827152d50d3d625315 faa6ca067b2cb1ee97e89c815125fdbe ffffffffffffffffffffffffffffffff 71104 /Users/philip/Desktop/test_c_plus/build/Release/automata6
371169468c3381f22497fd4fda30fad1 c74bc30de7dd61880616e520aa027b2c ffffffffffffffffffffffffffffffff 21952 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6
d754e23580b46abec3c2d3397271b484 39b810ca89510d7930e25f6604689a03 ffffffffffffffffffffffffffffffff 19408 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6
dc5fa7210917e891c997c8eafa48c706 2f5ec225a58ecaae696489d7c1013b69 ffffffffffffffffffffffffffffffff 24312 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6
000000000070e2100000000000001dee 37116946c6c1af292497fd4fda2efdc1 ffffffffffffffffffffffffffffffff 103740 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o
000000000070e2100000000000001dee d754e235ca464465c3c2d339726fb394 ffffffffffffffffffffffffffffffff 98868 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o
000000000070e2100000000000001dee dc5fa72143e5c64ac997c8eafa56c016 ffffffffffffffffffffffffffffffff 103624 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o

View file

@ -0,0 +1,24 @@
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 105476 /Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 100184 /Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 105132 /Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 102 /Users/philip/Desktop/automata/Automata7/build/Release/automata6.dSYM
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 71272 /Users/philip/Desktop/automata/Automata7/build/Release/automata6
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 22120 /Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 19596 /Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 24544 /Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 105476 /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 100184 /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 105132 /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o
00000000000000000000000000000000 d8add73606ccbc4d815f460ac9e84903 ffffffffffffffffffffffffffffffff 102 /Users/philip/Desktop/automata/test_c_plus/build/Release/automata6.dSYM
65c4b152c0d828b38da52ff20bbe7080 1a5b4231140b88802ee1dee0e007d8ff ffffffffffffffffffffffffffffffff 71272 /Users/philip/Desktop/automata/test_c_plus/build/Release/automata6
a35a6ceaef6e85867b8c2045d24761d1 c7c1c795286a6bef9492a1301dbaf1ea ffffffffffffffffffffffffffffffff 22120 /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6
8f643bb7574536e8cda8974487e8318b 3af6063a2af0fa1345ea0ff0083c409e ffffffffffffffffffffffffffffffff 19596 /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6
9d0ced60c56f699e0e1edd1b5a8ca9c9 29c1cac0bf0663bfe4e7eb28111b3867 ffffffffffffffffffffffffffffffff 24544 /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6
000000000015f9ca0000000000001ece 37116946c6c1af292497fd4fda2efdc1 ffffffffffffffffffffffffffffffff 105476 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o
000000000015f9ca0000000000001ece d754e235ca464465c3c2d339726fb394 ffffffffffffffffffffffffffffffff 100184 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o
000000000015f9ca0000000000001ece dc5fa72143e5c64ac997c8eafa56c016 ffffffffffffffffffffffffffffffff 105132 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o
00000000000000000000000000000000 d8c56ede45789364d976a2b1e21d68f5 ffffffffffffffffffffffffffffffff 102 /Users/philip/Desktop/test_c_plus/build/Release/automata6.dSYM
edb73db0cda822287152d50d3d625065 faa6ca067b2cb1ee97e89c815125fdbe ffffffffffffffffffffffffffffffff 71264 /Users/philip/Desktop/test_c_plus/build/Release/automata6
371169468f0906582497fd4fda30f9a1 c74bc30de7dd61880616e520aa027b2c ffffffffffffffffffffffffffffffff 22112 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6
d754e235838eed14c3c2d3397271b7f4 39b810ca89510d7930e25f6604689a03 ffffffffffffffffffffffffffffffff 19588 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6
dc5fa7210a2d6f3bc997c8eafa48c476 2f5ec225a58ecaae696489d7c1013b69 ffffffffffffffffffffffffffffffff 24536 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6

View file

@ -0,0 +1,429 @@
Tautomata6
v7
r0
t348473925.833389
cCheck dependencies
cCompileC build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o /Users/philip/Desktop/automata/test_c_plus/main.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
cLd /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6 normal x86_64
cCompileC build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o /Users/philip/Desktop/automata/test_c_plus/main.cpp normal i386 c++ com.apple.compilers.gcc.4_2
cLd /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6 normal i386
cCompileC build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o /Users/philip/Desktop/automata/test_c_plus/main.cpp normal ppc c++ com.apple.compilers.gcc.4_2
cLd /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6 normal ppc
cCreateUniversalBinary /Users/philip/Desktop/automata/test_c_plus/build/Release/automata6 normal "x86_64 i386 ppc"
cGenerateDSYMFile /Users/philip/Desktop/automata/test_c_plus/build/Release/automata6.dSYM /Users/philip/Desktop/automata/test_c_plus/build/Release/automata6
N/Developer/SDKs/MacOSX10.6.sdk
c000000004CAA740B00000000000000EE
t1286239243
s238
N/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/GLUT.framework/Headers/glut.h
c000000004C23CCCC000000000000578C
t1277414604
s22412
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/math.h
c000000004A5C14A000000000000004F1
t1247548576
s1265
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdio.h
c000000004BBD2CE90000000000004174
t1270689001
s16756
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdlib.h
c000000004BBD2CE90000000000002DF5
t1270689001
s11765
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/string.h
c000000004BBD2CE90000000000001731
t1270689001
s5937
N/System/Library/Frameworks/GLUT.framework/GLUT
c000000004B5FAB1A00000000001A2920
t1264560922
s1714464
N/System/Library/Frameworks/OpenGL.framework/OpenGL
c000000004E288FAA0000000000043360
t1311281066
s275296
N/Users/philip/Desktop/automata/Automata7/build/Release/automata6
t1323458780
s71272
N/Users/philip/Desktop/automata/Automata7/build/Release/automata6.dSYM
t1323458780
s102
N/Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6
t1323458779
s19596
N/Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6.LinkFileList
c000000004EE260DA0000000000000074
t1323458778
s116
N/Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o
t1305939280
s100184
N/Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6
t1323458780
s22120
N/Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6.LinkFileList
c000000004EE260DA0000000000000073
t1323458778
s115
N/Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o
t1305939281
s105476
N/Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6
t1323458779
s24544
N/Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6.LinkFileList
c000000004EE260DA0000000000000076
t1323458778
s118
N/Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o
t1305939280
s105132
N/Users/philip/Desktop/automata/Automata7/main.cpp
c000000004DD70D4F0000000000003603
t1305939279
s13827
i<iostream>
i<fstream>
i<string>
i<stdlib.h>
i<GLUT/glut.h>
i<iostream>
i<fstream>
i<math.h>
i<string.h>
i<stdio.h>
N/Users/philip/Desktop/automata/test_c_plus/build/Release/automata6
t1323458780
s71272
N/Users/philip/Desktop/automata/test_c_plus/build/Release/automata6.dSYM
t1323458780
s102
N/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6
t1323458779
s19596
N/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6.LinkFileList
c000000004EE260DA0000000000000074
t1323458778
s116
N/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o
t1305939280
s100184
N/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6
t1323458780
s22120
N/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6.LinkFileList
c000000004EE260DA0000000000000073
t1323458778
s115
N/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o
t1305939281
s105476
N/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6
t1323458779
s24544
N/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6.LinkFileList
c000000004EE260DA0000000000000076
t1323458778
s118
N/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o
t1305939280
s105132
N/Users/philip/Desktop/automata/test_c_plus/main.cpp
c000000004DD70D4F0000000000003603
t1305939279
s13827
i<iostream>
i<fstream>
i<string>
i<stdlib.h>
i<GLUT/glut.h>
i<iostream>
i<fstream>
i<math.h>
i<string.h>
i<stdio.h>
N/Users/philip/Desktop/test_c_plus/build/Release/automata6
t1317247237
s71264
N/Users/philip/Desktop/test_c_plus/build/Release/automata6.dSYM
t1317247237
s102
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6
t1317247237
s19588
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6.LinkFileList
c000000004DB223B3000000000000006B
t1303520179
s107
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o
t1305939280
s100184
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6
t1317247237
s22112
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6.LinkFileList
c000000004DB223B3000000000000006A
t1303520179
s106
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o
t1305939281
s105476
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6
t1317247237
s24536
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6.LinkFileList
c000000004DB223B3000000000000006D
t1303520179
s109
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o
t1305939280
s105132
N/Users/philip/Desktop/test_c_plus/main.cpp
c000000004DD70D4F0000000000003603
t1305939279
s13827
i<iostream>
i<fstream>
i<string>
i<stdlib.h>
i<GLUT/glut.h>
i<iostream>
i<fstream>
i<math.h>
i<string.h>
i<stdio.h>
CCheck dependencies
r0
lSLF07#2@18"Check dependencies348473925#348473925#0(0"0(0#1#0"3343187568374212096#0"0#
CCompileC build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o /Users/philip/Desktop/automata/Automata7/main.cpp normal i386 c++ com.apple.compilers.gcc.4_2
r0
CCompileC build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o /Users/philip/Desktop/automata/test_c_plus/main.cpp normal i386 c++ com.apple.compilers.gcc.4_2
r0
CCompileC build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal i386 c++ com.apple.compilers.gcc.4_2
s327632079.443604
e327632080.886590
r1
xCompileC
xbuild/automata6.build/Release/automata6.build/Objects-normal/i386/main.o
x/Users/philip/Desktop/test_c_plus/main.cpp
xnormal
xi386
xc++
xcom.apple.compilers.gcc.4_2
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()':
o/Users/philip/Desktop/test_c_plus/main.cpp:404: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_io()':
o/Users/philip/Desktop/test_c_plus/main.cpp:415: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/test_c_plus/main.cpp:417: warning: deprecated conversion from string constant to 'char*'
lSLF07#2@50"Compile /Users/philip/Desktop/test_c_plus/main.cpp327632079#327632080#0(490"/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()': /Users/philip/Desktop/test_c_plus/main.cpp:404: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_io()': /Users/philip/Desktop/test_c_plus/main.cpp:415: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/test_c_plus/main.cpp:417: warning: deprecated conversion from string constant to 'char*' 3(22@53"Deprecated conversion from string constant to 'char*'327632080#80#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp327632079#404#0#404#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'327632080#268#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp327632079#415#0#415#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'327632080#379#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp327632079#417#0#417#0#49"deprecated conversion from string constant to '*'0(0#0#42"/Users/philip/Desktop/test_c_plus/main.cpp8611796032#1302" cd /Users/philip/Desktop/test_c_plus setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch i386 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -mdynamic-no-pic -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -fvisibility=hidden -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-generated-files.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-own-target-headers.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-all-target-headers.hmap -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-project-headers.hmap -F/Users/philip/Desktop/test_c_plus/build/Release -I/Users/philip/Desktop/test_c_plus/build/Release/include -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/DerivedSources/i386 -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/DerivedSources -c /Users/philip/Desktop/test_c_plus/main.cpp -o /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o 0#
CCompileC build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o /Users/philip/Desktop/automata/Automata7/main.cpp normal ppc c++ com.apple.compilers.gcc.4_2
r0
CCompileC build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o /Users/philip/Desktop/automata/test_c_plus/main.cpp normal ppc c++ com.apple.compilers.gcc.4_2
r0
CCompileC build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal ppc c++ com.apple.compilers.gcc.4_2
s327632080.777848
e327632081.521888
r1
xCompileC
xbuild/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o
x/Users/philip/Desktop/test_c_plus/main.cpp
xnormal
xppc
xc++
xcom.apple.compilers.gcc.4_2
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()':
o/Users/philip/Desktop/test_c_plus/main.cpp:404: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_io()':
o/Users/philip/Desktop/test_c_plus/main.cpp:415: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/test_c_plus/main.cpp:417: warning: deprecated conversion from string constant to 'char*'
lSLF07#2@50"Compile /Users/philip/Desktop/test_c_plus/main.cpp327632080#327632081#0(490"/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()': /Users/philip/Desktop/test_c_plus/main.cpp:404: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_io()': /Users/philip/Desktop/test_c_plus/main.cpp:415: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/test_c_plus/main.cpp:417: warning: deprecated conversion from string constant to 'char*' 3(22@53"Deprecated conversion from string constant to 'char*'327632081#80#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp327632079#404#0#404#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'327632081#268#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp327632079#415#0#415#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'327632081#379#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp327632079#417#0#417#0#49"deprecated conversion from string constant to '*'0(0#0#42"/Users/philip/Desktop/test_c_plus/main.cpp8612944928#1309" cd /Users/philip/Desktop/test_c_plus setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch ppc -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -mdynamic-no-pic -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mtune=G5 -fvisibility=hidden -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-generated-files.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-own-target-headers.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-all-target-headers.hmap -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-project-headers.hmap -F/Users/philip/Desktop/test_c_plus/build/Release -I/Users/philip/Desktop/test_c_plus/build/Release/include -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/DerivedSources/ppc -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/DerivedSources -c /Users/philip/Desktop/test_c_plus/main.cpp -o /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o 0#
CCompileC build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o /Users/philip/Desktop/automata/Automata7/main.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
r0
CCompileC build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o /Users/philip/Desktop/automata/test_c_plus/main.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
r0
CCompileC build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
s327632079.441634
e327632080.739638
r1
xCompileC
xbuild/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o
x/Users/philip/Desktop/test_c_plus/main.cpp
xnormal
xx86_64
xc++
xcom.apple.compilers.gcc.4_2
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()':
o/Users/philip/Desktop/test_c_plus/main.cpp:404: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_io()':
o/Users/philip/Desktop/test_c_plus/main.cpp:415: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/test_c_plus/main.cpp:417: warning: deprecated conversion from string constant to 'char*'
lSLF07#2@50"Compile /Users/philip/Desktop/test_c_plus/main.cpp327632079#327632080#0(490"/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()': /Users/philip/Desktop/test_c_plus/main.cpp:404: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_io()': /Users/philip/Desktop/test_c_plus/main.cpp:415: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/test_c_plus/main.cpp:417: warning: deprecated conversion from string constant to 'char*' 3(22@53"Deprecated conversion from string constant to 'char*'327632080#80#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp327632079#404#0#404#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'327632080#268#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp327632079#415#0#415#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'327632080#379#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp327632079#417#0#417#0#49"deprecated conversion from string constant to '*'0(0#0#42"/Users/philip/Desktop/test_c_plus/main.cpp8612891456#1308" cd /Users/philip/Desktop/test_c_plus setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -mdynamic-no-pic -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -fvisibility=hidden -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-generated-files.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-own-target-headers.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-all-target-headers.hmap -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-project-headers.hmap -F/Users/philip/Desktop/test_c_plus/build/Release -I/Users/philip/Desktop/test_c_plus/build/Release/include -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/DerivedSources/x86_64 -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/DerivedSources -c /Users/philip/Desktop/test_c_plus/main.cpp -o /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o 0#
CCreateUniversalBinary /Users/philip/Desktop/automata/Automata7/build/Release/automata6 normal "x86_64 i386 ppc"
r0
CCreateUniversalBinary /Users/philip/Desktop/automata/test_c_plus/build/Release/automata6 normal "x86_64 i386 ppc"
s345151580.159936
e345151580.250088
r1
xCreateUniversalBinary
x/Users/philip/Desktop/automata/test_c_plus/build/Release/automata6
xnormal
xx86_64 i386 ppc
lSLF07#2@70"CreateUniversalBinary build/Release/automata6 normal "x86_64 i386 ppc"345151580#345151580#0(0"0(0#0#58"/Users/philip/Desktop/automata/test_c_plus/x86_64 i386 ppc8599802624#509" cd /Users/philip/Desktop/automata/test_c_plus /usr/bin/lipo -create /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6 /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6 /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6 -output /Users/philip/Desktop/automata/test_c_plus/build/Release/automata6 0#
CCreateUniversalBinary /Users/philip/Desktop/test_c_plus/build/Release/automata6 normal "x86_64 i386 ppc"
s338940037.597251
e338940037.628864
r1
xCreateUniversalBinary
x/Users/philip/Desktop/test_c_plus/build/Release/automata6
xnormal
xx86_64 i386 ppc
lSLF07#2@70"CreateUniversalBinary build/Release/automata6 normal "x86_64 i386 ppc"338940037#338940037#0(0"0(0#0#49"/Users/philip/Desktop/test_c_plus/x86_64 i386 ppc8603913728#464" cd /Users/philip/Desktop/test_c_plus /usr/bin/lipo -create /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6 -output /Users/philip/Desktop/test_c_plus/build/Release/automata6 0#
CGenerateDSYMFile /Users/philip/Desktop/automata/Automata7/build/Release/automata6.dSYM /Users/philip/Desktop/automata/Automata7/build/Release/automata6
r0
CGenerateDSYMFile /Users/philip/Desktop/automata/test_c_plus/build/Release/automata6.dSYM /Users/philip/Desktop/automata/test_c_plus/build/Release/automata6
s345151580.250417
e345151580.542370
r1
xGenerateDSYMFile
x/Users/philip/Desktop/automata/test_c_plus/build/Release/automata6.dSYM
x/Users/philip/Desktop/automata/test_c_plus/build/Release/automata6
lSLF07#2@69"GenerateDSYMFile build/Release/automata6.dSYM build/Release/automata6345151580#345151580#0(0"0(0#0#66"/Users/philip/Desktop/automata/test_c_plus/build/Release/automata68603549760#224" cd /Users/philip/Desktop/automata/test_c_plus /Developer/usr/bin/dsymutil /Users/philip/Desktop/automata/test_c_plus/build/Release/automata6 -o /Users/philip/Desktop/automata/test_c_plus/build/Release/automata6.dSYM 0#
CGenerateDSYMFile /Users/philip/Desktop/test_c_plus/build/Release/automata6.dSYM /Users/philip/Desktop/test_c_plus/build/Release/automata6
s338940037.628944
e338940037.775128
r1
xGenerateDSYMFile
x/Users/philip/Desktop/test_c_plus/build/Release/automata6.dSYM
x/Users/philip/Desktop/test_c_plus/build/Release/automata6
lSLF07#2@69"GenerateDSYMFile build/Release/automata6.dSYM build/Release/automata6338940037#338940037#0(0"0(0#0#57"/Users/philip/Desktop/test_c_plus/build/Release/automata68603896896#197" cd /Users/philip/Desktop/test_c_plus /Developer/usr/bin/dsymutil /Users/philip/Desktop/test_c_plus/build/Release/automata6 -o /Users/philip/Desktop/test_c_plus/build/Release/automata6.dSYM 0#
CLd /Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6 normal i386
r0
CLd /Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6 normal ppc
r0
CLd /Users/philip/Desktop/automata/Automata7/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6 normal x86_64
r0
CLd /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6 normal i386
s345151578.823083
e345151579.814760
r1
xLd
x/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6
xnormal
xi386
lSLF07#2@123"Link /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6345151578#345151579#0(0"0(0#0#0"8601133056#616" cd /Users/philip/Desktop/automata/test_c_plus setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch i386 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/automata/test_c_plus/build/Release -F/Users/philip/Desktop/automata/test_c_plus/build/Release -filelist /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6 0#
CLd /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6 normal ppc
s345151579.814925
e345151580.159823
r1
xLd
x/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6
xnormal
xppc
lSLF07#2@122"Link /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6345151579#345151580#0(0"0(0#0#0"8598791200#613" cd /Users/philip/Desktop/automata/test_c_plus setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch ppc -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/automata/test_c_plus/build/Release -F/Users/philip/Desktop/automata/test_c_plus/build/Release -filelist /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6 0#
CLd /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6 normal x86_64
s345151578.723383
e345151579.816211
r1
xLd
x/Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6
xnormal
xx86_64
lSLF07#2@125"Link /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6345151578#345151579#0(0"0(0#0#0"13229753409208424#622" cd /Users/philip/Desktop/automata/test_c_plus setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/automata/test_c_plus/build/Release -F/Users/philip/Desktop/automata/test_c_plus/build/Release -filelist /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/automata/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6 0#
CLd /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6 normal i386
s338940036.881354
e338940037.424465
r1
xLd
x/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6
xnormal
xi386
lSLF07#2@114"Link /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6338940036#338940037#0(0"0(0#0#0"8603123776#571" cd /Users/philip/Desktop/test_c_plus setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch i386 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/test_c_plus/build/Release -F/Users/philip/Desktop/test_c_plus/build/Release -filelist /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6 0#
CLd /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6 normal ppc
s338940037.424683
e338940037.597159
r1
xLd
x/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6
xnormal
xppc
lSLF07#2@113"Link /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6338940037#338940037#0(0"0(0#0#0"8603716128#568" cd /Users/philip/Desktop/test_c_plus setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch ppc -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/test_c_plus/build/Release -F/Users/philip/Desktop/test_c_plus/build/Release -filelist /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6 0#
CLd /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6 normal x86_64
s338940036.825460
e338940037.425924
r1
xLd
x/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6
xnormal
xx86_64
lSLF07#2@116"Link /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6338940036#338940037#0(0"0(0#0#0"30962440719237236#577" cd /Users/philip/Desktop/test_c_plus setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/test_c_plus/build/Release -F/Users/philip/Desktop/test_c_plus/build/Release -filelist /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6 0#

View file

@ -0,0 +1,229 @@
Tautomata6
v7
r0
t325212981.320645
cCheck dependencies
cCompileC build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
cCompileC build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal i386 c++ com.apple.compilers.gcc.4_2
cLd /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6 normal i386
cLd /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6 normal x86_64
cCompileC build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal ppc c++ com.apple.compilers.gcc.4_2
cLd /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6 normal ppc
cCreateUniversalBinary /Users/philip/Desktop/test_c_plus/build/Release/automata6 normal "x86_64 i386 ppc"
cGenerateDSYMFile /Users/philip/Desktop/test_c_plus/build/Release/automata6.dSYM /Users/philip/Desktop/test_c_plus/build/Release/automata6
N/Developer/SDKs/MacOSX10.6.sdk
c000000004CAA740B00000000000000EE
t1286239243
s238
N/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/GLUT.framework/Headers/glut.h
c000000004C23CCCC000000000000578C
t1277414604
s22412
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/math.h
c000000004A5C14A000000000000004F1
t1247548576
s1265
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdio.h
c000000004BBD2CE90000000000004174
t1270689001
s16756
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdlib.h
c000000004BBD2CE90000000000002DF5
t1270689001
s11765
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/string.h
c000000004BBD2CE90000000000001731
t1270689001
s5937
N/System/Library/Frameworks/GLUT.framework/GLUT
c000000004B5FAB1A00000000001A2920
t1264560922
s1714464
N/System/Library/Frameworks/OpenGL.framework/OpenGL
c000000004D7713DA0000000000043330
t1299649498
s275248
N/Users/philip/Desktop/test_c_plus/build/Release/automata6
t1303520181
s71104
N/Users/philip/Desktop/test_c_plus/build/Release/automata6.dSYM
t1303520181
s102
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6
t1303520179
s19408
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6.LinkFileList
c000000004DB223B3000000000000006B
t1303520179
s107
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o
t1303520179
s98868
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6
t1303520181
s21952
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6.LinkFileList
c000000004DB223B3000000000000006A
t1303520179
s106
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o
t1303520180
s103740
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6
t1303520179
s24312
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6.LinkFileList
c000000004DB223B3000000000000006D
t1303520179
s109
N/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o
t1303520179
s103624
N/Users/philip/Desktop/test_c_plus/main.cpp
c000000004DB216950000000000003523
t1303516821
s13603
i<iostream>
i<fstream>
i<string>
i<stdlib.h>
i<GLUT/glut.h>
i<iostream>
i<fstream>
i<math.h>
i<string.h>
i<stdio.h>
CCheck dependencies
r0
lSLF07#2@18"Check dependencies325212979#325212979#0(0"0(0#1#0"8605821280#0"0#
CCompileC build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal i386 c++ com.apple.compilers.gcc.4_2
s325212979.064154
e325212979.774767
r1
xCompileC
xbuild/automata6.build/Release/automata6.build/Objects-normal/i386/main.o
x/Users/philip/Desktop/test_c_plus/main.cpp
xnormal
xi386
xc++
xcom.apple.compilers.gcc.4_2
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()':
o/Users/philip/Desktop/test_c_plus/main.cpp:401: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_io()':
o/Users/philip/Desktop/test_c_plus/main.cpp:412: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/test_c_plus/main.cpp:414: warning: deprecated conversion from string constant to 'char*'
lSLF07#2@50"Compile /Users/philip/Desktop/test_c_plus/main.cpp325212979#325212979#0(490"/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()': /Users/philip/Desktop/test_c_plus/main.cpp:401: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_io()': /Users/philip/Desktop/test_c_plus/main.cpp:412: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/test_c_plus/main.cpp:414: warning: deprecated conversion from string constant to 'char*' 3(22@53"Deprecated conversion from string constant to 'char*'325212979#80#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp325209621#401#0#401#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'325212979#268#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp325209621#412#0#412#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'325212979#379#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp325209621#414#0#414#0#49"deprecated conversion from string constant to '*'0(0#0#42"/Users/philip/Desktop/test_c_plus/main.cpp8603018720#1302" cd /Users/philip/Desktop/test_c_plus setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch i386 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -mdynamic-no-pic -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -fvisibility=hidden -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-generated-files.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-own-target-headers.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-all-target-headers.hmap -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-project-headers.hmap -F/Users/philip/Desktop/test_c_plus/build/Release -I/Users/philip/Desktop/test_c_plus/build/Release/include -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/DerivedSources/i386 -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/DerivedSources -c /Users/philip/Desktop/test_c_plus/main.cpp -o /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/main.o 0#
CCompileC build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal ppc c++ com.apple.compilers.gcc.4_2
s325212979.838430
e325212980.998926
r1
xCompileC
xbuild/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o
x/Users/philip/Desktop/test_c_plus/main.cpp
xnormal
xppc
xc++
xcom.apple.compilers.gcc.4_2
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()':
o/Users/philip/Desktop/test_c_plus/main.cpp:401: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_io()':
o/Users/philip/Desktop/test_c_plus/main.cpp:412: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/test_c_plus/main.cpp:414: warning: deprecated conversion from string constant to 'char*'
lSLF07#2@50"Compile /Users/philip/Desktop/test_c_plus/main.cpp325212979#325212980#0(490"/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()': /Users/philip/Desktop/test_c_plus/main.cpp:401: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_io()': /Users/philip/Desktop/test_c_plus/main.cpp:412: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/test_c_plus/main.cpp:414: warning: deprecated conversion from string constant to 'char*' 3(22@53"Deprecated conversion from string constant to 'char*'325212980#80#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp325209621#401#0#401#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'325212980#268#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp325209621#412#0#412#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'325212980#379#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp325209621#414#0#414#0#49"deprecated conversion from string constant to '*'0(0#0#42"/Users/philip/Desktop/test_c_plus/main.cpp8607898080#1309" cd /Users/philip/Desktop/test_c_plus setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch ppc -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -mdynamic-no-pic -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mtune=G5 -fvisibility=hidden -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-generated-files.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-own-target-headers.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-all-target-headers.hmap -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-project-headers.hmap -F/Users/philip/Desktop/test_c_plus/build/Release -I/Users/philip/Desktop/test_c_plus/build/Release/include -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/DerivedSources/ppc -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/DerivedSources -c /Users/philip/Desktop/test_c_plus/main.cpp -o /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/main.o 0#
CCompileC build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
s325212979.062758
e325212979.811548
r1
xCompileC
xbuild/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o
x/Users/philip/Desktop/test_c_plus/main.cpp
xnormal
xx86_64
xc++
xcom.apple.compilers.gcc.4_2
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()':
o/Users/philip/Desktop/test_c_plus/main.cpp:401: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_io()':
o/Users/philip/Desktop/test_c_plus/main.cpp:412: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/test_c_plus/main.cpp:414: warning: deprecated conversion from string constant to 'char*'
lSLF07#2@50"Compile /Users/philip/Desktop/test_c_plus/main.cpp325212979#325212979#0(490"/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()': /Users/philip/Desktop/test_c_plus/main.cpp:401: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_io()': /Users/philip/Desktop/test_c_plus/main.cpp:412: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/test_c_plus/main.cpp:414: warning: deprecated conversion from string constant to 'char*' 3(22@53"Deprecated conversion from string constant to 'char*'325212979#80#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp325209621#401#0#401#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'325212979#268#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp325209621#412#0#412#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'325212979#379#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp325209621#414#0#414#0#49"deprecated conversion from string constant to '*'0(0#0#42"/Users/philip/Desktop/test_c_plus/main.cpp8605807840#1308" cd /Users/philip/Desktop/test_c_plus setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -mdynamic-no-pic -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -fvisibility=hidden -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-generated-files.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-own-target-headers.hmap -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-all-target-headers.hmap -iquote /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/automata6-project-headers.hmap -F/Users/philip/Desktop/test_c_plus/build/Release -I/Users/philip/Desktop/test_c_plus/build/Release/include -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/DerivedSources/x86_64 -I/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/DerivedSources -c /Users/philip/Desktop/test_c_plus/main.cpp -o /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/main.o 0#
CCreateUniversalBinary /Users/philip/Desktop/test_c_plus/build/Release/automata6 normal "x86_64 i386 ppc"
s325212981.199258
e325212981.232548
r1
xCreateUniversalBinary
x/Users/philip/Desktop/test_c_plus/build/Release/automata6
xnormal
xx86_64 i386 ppc
lSLF07#2@70"CreateUniversalBinary build/Release/automata6 normal "x86_64 i386 ppc"325212981#325212981#0(0"0(0#0#49"/Users/philip/Desktop/test_c_plus/x86_64 i386 ppc8606179168#464" cd /Users/philip/Desktop/test_c_plus /usr/bin/lipo -create /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6 /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6 -output /Users/philip/Desktop/test_c_plus/build/Release/automata6 0#
CGenerateDSYMFile /Users/philip/Desktop/test_c_plus/build/Release/automata6.dSYM /Users/philip/Desktop/test_c_plus/build/Release/automata6
s325212981.232633
e325212981.320604
r1
xGenerateDSYMFile
x/Users/philip/Desktop/test_c_plus/build/Release/automata6.dSYM
x/Users/philip/Desktop/test_c_plus/build/Release/automata6
lSLF07#2@69"GenerateDSYMFile build/Release/automata6.dSYM build/Release/automata6325212981#325212981#0(0"0(0#0#57"/Users/philip/Desktop/test_c_plus/build/Release/automata68606138464#197" cd /Users/philip/Desktop/test_c_plus /Developer/usr/bin/dsymutil /Users/philip/Desktop/test_c_plus/build/Release/automata6 -o /Users/philip/Desktop/test_c_plus/build/Release/automata6.dSYM 0#
CLd /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6 normal i386
s325212979.774860
e325212979.838344
r1
xLd
x/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6
xnormal
xi386
old: warning: directory '/Users/philip/Desktop/test_c_plus/build/Release' following -L not found
old: warning: directory '/Users/philip/Desktop/test_c_plus/build/Release' following -F not found
lSLF07#2@114"Link /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6325212979#325212979#0(192"ld: warning: directory '/Users/philip/Desktop/test_c_plus/build/Release' following -L not found ld: warning: directory '/Users/philip/Desktop/test_c_plus/build/Release' following -F not found 2(22@82"Directory '/Users/philip/Desktop/test_c_plus/build/Release' following -L not found325212979#0#96#0(6@0"325212979#0#0#0#0#0"0(22@82"Directory '/Users/philip/Desktop/test_c_plus/build/Release' following -F not found325212979#96#96#0(6@0"325212979#0#0#0#0#0"0(0#0#0"8606340384#571" cd /Users/philip/Desktop/test_c_plus setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch i386 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/test_c_plus/build/Release -F/Users/philip/Desktop/test_c_plus/build/Release -filelist /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/i386/automata6 0#
CLd /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6 normal ppc
s325212980.999045
e325212981.199160
r1
xLd
x/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6
xnormal
xppc
old: warning: directory '/Users/philip/Desktop/test_c_plus/build/Release' following -L not found
old: warning: directory '/Users/philip/Desktop/test_c_plus/build/Release' following -F not found
lSLF07#2@113"Link /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6325212980#325212981#0(192"ld: warning: directory '/Users/philip/Desktop/test_c_plus/build/Release' following -L not found ld: warning: directory '/Users/philip/Desktop/test_c_plus/build/Release' following -F not found 2(22@82"Directory '/Users/philip/Desktop/test_c_plus/build/Release' following -L not found325212981#0#96#0(6@0"325212981#0#0#0#0#0"0(22@82"Directory '/Users/philip/Desktop/test_c_plus/build/Release' following -F not found325212981#96#96#0(6@0"325212981#0#0#0#0#0"0(0#0#0"8606342784#568" cd /Users/philip/Desktop/test_c_plus setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch ppc -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/test_c_plus/build/Release -F/Users/philip/Desktop/test_c_plus/build/Release -filelist /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/ppc/automata6 0#
CLd /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6 normal x86_64
s325212979.811638
e325212979.842318
r1
xLd
x/Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6
xnormal
xx86_64
old: warning: directory '/Users/philip/Desktop/test_c_plus/build/Release' following -L not found
old: warning: directory '/Users/philip/Desktop/test_c_plus/build/Release' following -F not found
lSLF07#2@116"Link /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6325212979#325212979#0(192"ld: warning: directory '/Users/philip/Desktop/test_c_plus/build/Release' following -L not found ld: warning: directory '/Users/philip/Desktop/test_c_plus/build/Release' following -F not found 2(22@82"Directory '/Users/philip/Desktop/test_c_plus/build/Release' following -L not found325212979#0#96#0(6@0"325212979#0#0#0#0#0"0(22@82"Directory '/Users/philip/Desktop/test_c_plus/build/Release' following -F not found325212979#96#96#0(6@0"325212979#0#0#0#0#0"0(0#0#0"8608111424#577" cd /Users/philip/Desktop/test_c_plus setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/test_c_plus/build/Release -F/Users/philip/Desktop/test_c_plus/build/Release -filelist /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/test_c_plus/build/automata6.build/Release/automata6.build/Objects-normal/x86_64/automata6 0#

Binary file not shown.

BIN
build/automata7.build/.DS_Store vendored Normal file

Binary file not shown.

BIN
build/automata7.build/Release/.DS_Store vendored Normal file

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1 @@
/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/i386/main.o

View file

@ -0,0 +1 @@
/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/ppc/main.o

View file

@ -0,0 +1 @@
/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/x86_64/main.o

View file

@ -0,0 +1,24 @@
/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void init_cells()':
/Users/philip/Desktop/automata/Automata7/main.cpp:179: error: 'cells' was not declared in this scope
/Users/philip/Desktop/automata/Automata7/main.cpp:181: error: 'cells' was not declared in this scope
/Users/philip/Desktop/automata/Automata7/main.cpp:183: error: 'memory' was not declared in this scope
/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void update_cells()':
/Users/philip/Desktop/automata/Automata7/main.cpp:259: error: 'neighbors' was not declared in this scope
/Users/philip/Desktop/automata/Automata7/main.cpp:259: error: 'cells' was not declared in this scope
/Users/philip/Desktop/automata/Automata7/main.cpp:274: error: 'memory' was not declared in this scope
/Users/philip/Desktop/automata/Automata7/main.cpp:279: error: 'cells1' was not declared in this scope
/Users/philip/Desktop/automata/Automata7/main.cpp:322: error: 'cells1' was not declared in this scope
/Users/philip/Desktop/automata/Automata7/main.cpp:332: error: 'cells1' was not declared in this scope
/Users/philip/Desktop/automata/Automata7/main.cpp:354: error: 'cells' was not declared in this scope
/Users/philip/Desktop/automata/Automata7/main.cpp:354: error: 'cells1' was not declared in this scope
/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void key(unsigned char, int, int)':
/Users/philip/Desktop/automata/Automata7/main.cpp:396: error: 'cells' was not declared in this scope
/Users/philip/Desktop/automata/Automata7/main.cpp:397: error: 'cells1' was not declared in this scope
/Users/philip/Desktop/automata/Automata7/main.cpp:398: error: 'memory' was not declared in this scope
/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display_stats()':
/Users/philip/Desktop/automata/Automata7/main.cpp:427: warning: deprecated conversion from string constant to 'char*'
/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display_io()':
/Users/philip/Desktop/automata/Automata7/main.cpp:438: warning: deprecated conversion from string constant to 'char*'
/Users/philip/Desktop/automata/Automata7/main.cpp:440: warning: deprecated conversion from string constant to 'char*'
/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display()':
/Users/philip/Desktop/automata/Automata7/main.cpp:461: error: 'cells' was not declared in this scope

View file

@ -0,0 +1,8 @@
00000000000000000000000000000000 027a3a4db0c1e0205fd45131beee743e ffffffffffffffffffffffffffffffff 102 /Users/philip/Desktop/automata/Automata7/build/Release/automata7.dSYM
a50975e4e52ae5847b3a00682835c0fc 5795387fc1f15114541a98a0d3d6fc16 ffffffffffffffffffffffffffffffff 71276 /Users/philip/Desktop/automata/Automata7/build/Release/automata7
df6e245a528b37bba9d03b944a5155e3 ef2a9cee50674a7e633478984e504966 ffffffffffffffffffffffffffffffff 22124 /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/ppc/automata7
94df1b0a4f092f43461806828063eae4 3dd0a5a36af517659d94738a3a1b590e ffffffffffffffffffffffffffffffff 19604 /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/i386/automata7
73f7c7db32152076540baad90442cc8a 4fb5b422f02f80113e599cb5920ea319 ffffffffffffffffffffffffffffffff 24544 /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/x86_64/automata7
000000000015f9ca0000000000001ece df6e245a1b439ecaa9d03b944a4f5183 ffffffffffffffffffffffffffffffff 105492 /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/ppc/main.o
000000000015f9ca0000000000001ece 94df1b0a06c1863246180682807dee84 ffffffffffffffffffffffffffffffff 100196 /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/i386/main.o
000000000015f9ca0000000000001ece 73f7c7db7bdd8907540baad9045cc8ea ffffffffffffffffffffffffffffffff 105148 /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/x86_64/main.o

View file

@ -0,0 +1,223 @@
Tautomata7
v7
r0
t348474253.522900
cCheck dependencies
cCompileC build/automata7.build/Release/automata7.build/Objects-normal/x86_64/main.o /Users/philip/Desktop/automata/Automata7/main.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
cCompileC build/automata7.build/Release/automata7.build/Objects-normal/i386/main.o /Users/philip/Desktop/automata/Automata7/main.cpp normal i386 c++ com.apple.compilers.gcc.4_2
cLd /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/i386/automata7 normal i386
cLd /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/x86_64/automata7 normal x86_64
cCompileC build/automata7.build/Release/automata7.build/Objects-normal/ppc/main.o /Users/philip/Desktop/automata/Automata7/main.cpp normal ppc c++ com.apple.compilers.gcc.4_2
cLd /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/ppc/automata7 normal ppc
cCreateUniversalBinary /Users/philip/Desktop/automata/Automata7/build/Release/automata7 normal "x86_64 i386 ppc"
cGenerateDSYMFile /Users/philip/Desktop/automata/Automata7/build/Release/automata7.dSYM /Users/philip/Desktop/automata/Automata7/build/Release/automata7
N/Developer/SDKs/MacOSX10.6.sdk
c000000004CAA740B00000000000000EE
t1286239243
s238
N/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/GLUT.framework/Headers/glut.h
c000000004C23CCCC000000000000578C
t1277414604
s22412
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/math.h
c000000004A5C14A000000000000004F1
t1247548576
s1265
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdio.h
c000000004BBD2CE90000000000004174
t1270689001
s16756
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdlib.h
c000000004BBD2CE90000000000002DF5
t1270689001
s11765
N/Developer/SDKs/MacOSX10.6.sdk/usr/include/string.h
c000000004BBD2CE90000000000001731
t1270689001
s5937
N/System/Library/Frameworks/GLUT.framework/GLUT
c000000004B5FAB1A00000000001A2920
t1264560922
s1714464
N/System/Library/Frameworks/OpenGL.framework/OpenGL
c000000004E288FAA0000000000043360
t1311281066
s275296
N/Users/philip/Desktop/automata/Automata7/build/Release/automata7
t1326781453
s71276
N/Users/philip/Desktop/automata/Automata7/build/Release/automata7.dSYM
t1326781453
s102
N/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/i386/automata7
t1326781452
s19604
N/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/i386/automata7.LinkFileList
c000000004F15140A0000000000000072
t1326781450
s114
N/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/i386/main.o
t1326781451
s100196
N/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/ppc/automata7
t1326781453
s22124
N/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/ppc/automata7.LinkFileList
c000000004F15140A0000000000000071
t1326781450
s113
N/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/ppc/main.o
t1326781453
s105492
N/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/x86_64/automata7
t1326781452
s24544
N/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/x86_64/automata7.LinkFileList
c000000004F15140A0000000000000074
t1326781450
s116
N/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/x86_64/main.o
t1326781451
s105148
N/Users/philip/Desktop/automata/Automata7/main.cpp
c000000004DD70D4F0000000000003603
t1305939279
s13827
i<iostream>
i<fstream>
i<string>
i<stdlib.h>
i<GLUT/glut.h>
i<iostream>
i<fstream>
i<math.h>
i<string.h>
i<stdio.h>
CCheck dependencies
r0
lSLF07#2@18"Check dependencies348474250#348474250#0(0"0(0#1#0"3343187568374212096#0"0#
CCompileC build/automata7.build/Release/automata7.build/Objects-normal/i386/main.o /Users/philip/Desktop/automata/Automata7/main.cpp normal i386 c++ com.apple.compilers.gcc.4_2
s348474250.746387
e348474251.635211
r1
xCompileC
xbuild/automata7.build/Release/automata7.build/Objects-normal/i386/main.o
x/Users/philip/Desktop/automata/Automata7/main.cpp
xnormal
xi386
xc++
xcom.apple.compilers.gcc.4_2
o/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display_stats()':
o/Users/philip/Desktop/automata/Automata7/main.cpp:404: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display_io()':
o/Users/philip/Desktop/automata/Automata7/main.cpp:415: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/automata/Automata7/main.cpp:417: warning: deprecated conversion from string constant to 'char*'
lSLF07#2@57"Compile /Users/philip/Desktop/automata/Automata7/main.cpp348474250#348474251#0(525"/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display_stats()': /Users/philip/Desktop/automata/Automata7/main.cpp:404: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display_io()': /Users/philip/Desktop/automata/Automata7/main.cpp:415: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/automata/Automata7/main.cpp:417: warning: deprecated conversion from string constant to 'char*' 3(22@53"Deprecated conversion from string constant to 'char*'348474251#87#118#0(6@49"/Users/philip/Desktop/automata/Automata7/main.cpp327632079#404#0#404#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'348474251#289#118#0(6@49"/Users/philip/Desktop/automata/Automata7/main.cpp327632079#415#0#415#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'348474251#407#118#0(6@49"/Users/philip/Desktop/automata/Automata7/main.cpp327632079#417#0#417#0#49"deprecated conversion from string constant to '*'0(0#0#49"/Users/philip/Desktop/automata/Automata7/main.cpp8606306976#1379" cd /Users/philip/Desktop/automata/Automata7 setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch i386 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -mdynamic-no-pic -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -fvisibility=hidden -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/automata7-generated-files.hmap -I/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/automata7-own-target-headers.hmap -I/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/automata7-all-target-headers.hmap -iquote /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/automata7-project-headers.hmap -F/Users/philip/Desktop/automata/Automata7/build/Release -I/Users/philip/Desktop/automata/Automata7/build/Release/include -I/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/DerivedSources/i386 -I/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/DerivedSources -c /Users/philip/Desktop/automata/Automata7/main.cpp -o /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/i386/main.o 0#
CCompileC build/automata7.build/Release/automata7.build/Objects-normal/ppc/main.o /Users/philip/Desktop/automata/Automata7/main.cpp normal ppc c++ com.apple.compilers.gcc.4_2
s348474252.108240
e348474253.234601
r1
xCompileC
xbuild/automata7.build/Release/automata7.build/Objects-normal/ppc/main.o
x/Users/philip/Desktop/automata/Automata7/main.cpp
xnormal
xppc
xc++
xcom.apple.compilers.gcc.4_2
o/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display_stats()':
o/Users/philip/Desktop/automata/Automata7/main.cpp:404: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display_io()':
o/Users/philip/Desktop/automata/Automata7/main.cpp:415: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/automata/Automata7/main.cpp:417: warning: deprecated conversion from string constant to 'char*'
lSLF07#2@57"Compile /Users/philip/Desktop/automata/Automata7/main.cpp348474252#348474253#0(525"/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display_stats()': /Users/philip/Desktop/automata/Automata7/main.cpp:404: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display_io()': /Users/philip/Desktop/automata/Automata7/main.cpp:415: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/automata/Automata7/main.cpp:417: warning: deprecated conversion from string constant to 'char*' 3(22@53"Deprecated conversion from string constant to 'char*'348474252#87#118#0(6@49"/Users/philip/Desktop/automata/Automata7/main.cpp327632079#404#0#404#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'348474252#289#118#0(6@49"/Users/philip/Desktop/automata/Automata7/main.cpp327632079#415#0#415#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'348474252#407#118#0(6@49"/Users/philip/Desktop/automata/Automata7/main.cpp327632079#417#0#417#0#49"deprecated conversion from string constant to '*'0(0#0#49"/Users/philip/Desktop/automata/Automata7/main.cpp8603396000#1386" cd /Users/philip/Desktop/automata/Automata7 setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch ppc -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -mdynamic-no-pic -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mtune=G5 -fvisibility=hidden -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/automata7-generated-files.hmap -I/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/automata7-own-target-headers.hmap -I/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/automata7-all-target-headers.hmap -iquote /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/automata7-project-headers.hmap -F/Users/philip/Desktop/automata/Automata7/build/Release -I/Users/philip/Desktop/automata/Automata7/build/Release/include -I/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/DerivedSources/ppc -I/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/DerivedSources -c /Users/philip/Desktop/automata/Automata7/main.cpp -o /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/ppc/main.o 0#
CCompileC build/automata7.build/Release/automata7.build/Objects-normal/x86_64/main.o /Users/philip/Desktop/automata/Automata7/main.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
s348474250.704910
e348474251.647391
r1
xCompileC
xbuild/automata7.build/Release/automata7.build/Objects-normal/x86_64/main.o
x/Users/philip/Desktop/automata/Automata7/main.cpp
xnormal
xx86_64
xc++
xcom.apple.compilers.gcc.4_2
o/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display_stats()':
o/Users/philip/Desktop/automata/Automata7/main.cpp:404: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display_io()':
o/Users/philip/Desktop/automata/Automata7/main.cpp:415: warning: deprecated conversion from string constant to 'char*'
o/Users/philip/Desktop/automata/Automata7/main.cpp:417: warning: deprecated conversion from string constant to 'char*'
lSLF07#2@57"Compile /Users/philip/Desktop/automata/Automata7/main.cpp348474250#348474251#0(525"/Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display_stats()': /Users/philip/Desktop/automata/Automata7/main.cpp:404: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/automata/Automata7/main.cpp: In function 'void display_io()': /Users/philip/Desktop/automata/Automata7/main.cpp:415: warning: deprecated conversion from string constant to 'char*' /Users/philip/Desktop/automata/Automata7/main.cpp:417: warning: deprecated conversion from string constant to 'char*' 3(22@53"Deprecated conversion from string constant to 'char*'348474251#87#118#0(6@49"/Users/philip/Desktop/automata/Automata7/main.cpp327632079#404#0#404#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'348474251#289#118#0(6@49"/Users/philip/Desktop/automata/Automata7/main.cpp327632079#415#0#415#0#49"deprecated conversion from string constant to '*'0(22@53"Deprecated conversion from string constant to 'char*'348474251#407#118#0(6@49"/Users/philip/Desktop/automata/Automata7/main.cpp327632079#417#0#417#0#49"deprecated conversion from string constant to '*'0(0#0#49"/Users/philip/Desktop/automata/Automata7/main.cpp8660259774160596992#1385" cd /Users/philip/Desktop/automata/Automata7 setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -mdynamic-no-pic -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -fvisibility=hidden -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/automata7-generated-files.hmap -I/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/automata7-own-target-headers.hmap -I/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/automata7-all-target-headers.hmap -iquote /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/automata7-project-headers.hmap -F/Users/philip/Desktop/automata/Automata7/build/Release -I/Users/philip/Desktop/automata/Automata7/build/Release/include -I/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/DerivedSources/x86_64 -I/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/DerivedSources -c /Users/philip/Desktop/automata/Automata7/main.cpp -o /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/x86_64/main.o 0#
CCreateUniversalBinary /Users/philip/Desktop/automata/Automata7/build/Release/automata7 normal "x86_64 i386 ppc"
s348474253.416869
e348474253.434810
r1
xCreateUniversalBinary
x/Users/philip/Desktop/automata/Automata7/build/Release/automata7
xnormal
xx86_64 i386 ppc
lSLF07#2@70"CreateUniversalBinary build/Release/automata7 normal "x86_64 i386 ppc"348474253#348474253#0(0"0(0#0#56"/Users/philip/Desktop/automata/Automata7/x86_64 i386 ppc8606164768#499" cd /Users/philip/Desktop/automata/Automata7 /usr/bin/lipo -create /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/x86_64/automata7 /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/i386/automata7 /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/ppc/automata7 -output /Users/philip/Desktop/automata/Automata7/build/Release/automata7 0#
CGenerateDSYMFile /Users/philip/Desktop/automata/Automata7/build/Release/automata7.dSYM /Users/philip/Desktop/automata/Automata7/build/Release/automata7
s348474253.434902
e348474253.522846
r1
xGenerateDSYMFile
x/Users/philip/Desktop/automata/Automata7/build/Release/automata7.dSYM
x/Users/philip/Desktop/automata/Automata7/build/Release/automata7
lSLF07#2@69"GenerateDSYMFile build/Release/automata7.dSYM build/Release/automata7348474253#348474253#0(0"0(0#0#64"/Users/philip/Desktop/automata/Automata7/build/Release/automata78605493600#218" cd /Users/philip/Desktop/automata/Automata7 /Developer/usr/bin/dsymutil /Users/philip/Desktop/automata/Automata7/build/Release/automata7 -o /Users/philip/Desktop/automata/Automata7/build/Release/automata7.dSYM 0#
CLd /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/i386/automata7 normal i386
s348474251.635300
e348474252.108148
r1
xLd
x/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/i386/automata7
xnormal
xi386
lSLF07#2@121"Link /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/i386/automata7348474251#348474252#0(0"0(0#0#0"27584887023140964#606" cd /Users/philip/Desktop/automata/Automata7 setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch i386 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/automata/Automata7/build/Release -F/Users/philip/Desktop/automata/Automata7/build/Release -filelist /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/i386/automata7.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/i386/automata7 0#
CLd /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/ppc/automata7 normal ppc
s348474253.234754
e348474253.416776
r1
xLd
x/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/ppc/automata7
xnormal
xppc
lSLF07#2@120"Link /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/ppc/automata7348474253#348474253#0(0"0(0#0#0"8605444352#603" cd /Users/philip/Desktop/automata/Automata7 setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch ppc -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/automata/Automata7/build/Release -F/Users/philip/Desktop/automata/Automata7/build/Release -filelist /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/ppc/automata7.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/ppc/automata7 0#
CLd /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/x86_64/automata7 normal x86_64
s348474251.647482
e348474252.115109
r1
xLd
x/Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/x86_64/automata7
xnormal
xx86_64
lSLF07#2@123"Link /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/x86_64/automata7348474251#348474252#0(0"0(0#0#0"8598307424#612" cd /Users/philip/Desktop/automata/Automata7 setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/automata/Automata7/build/Release -F/Users/philip/Desktop/automata/Automata7/build/Release -filelist /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/x86_64/automata7.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/automata/Automata7/build/automata7.build/Release/automata7.build/Objects-normal/x86_64/automata7 0#

Binary file not shown.

BIN
build/test_c_plus.build/.DS_Store vendored Normal file

Binary file not shown.

BIN
build/test_c_plus.build/Debug/.DS_Store vendored Normal file

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1 @@
/Users/philip/Desktop/test_c_plus/build/test_c_plus.build/Debug/test_c_plus.build/Objects-normal/x86_64/main.o

View file

@ -0,0 +1,2 @@
5d159624d3ce50946eace2ae57ea00c2 b610339f3980234a8c54ac152978b227 ffffffffffffffffffffffffffffffff 25240 /Users/philip/Desktop/test_c_plus/build/Debug/test_c_plus
000000004d901a79000000000000317e 5d159624d48929b56eace2ae57f42b42 ffffffffffffffffffffffffffffffff 98180 /Users/philip/Desktop/test_c_plus/build/test_c_plus.build/Debug/test_c_plus.build/Objects-normal/x86_64/main.o

View file

@ -0,0 +1,71 @@
Ttest_c_plus
v7
r0
t322982393.975896
cCheck dependencies
cCompileC build/test_c_plus.build/Debug/test_c_plus.build/Objects-normal/x86_64/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
cLd /Users/philip/Desktop/test_c_plus/build/Debug/test_c_plus normal x86_64
N/Developer/SDKs/MacOSX10.6.sdk
c000000004CAA740B00000000000000EE
t1286239243
s238
N/System/Library/Frameworks/GLUT.framework/GLUT
c000000004B5FAB1A00000000001A2920
t1264560922
s1714464
N/System/Library/Frameworks/OpenGL.framework/OpenGL
c000000004D22BC490000000000043330
t1294122057
s275248
N/Users/philip/Desktop/test_c_plus/build/Debug/test_c_plus
t1301289593
s25240
N/Users/philip/Desktop/test_c_plus/build/test_c_plus.build/Debug/test_c_plus.build/Objects-normal/x86_64/main.o
t1301289593
s98180
N/Users/philip/Desktop/test_c_plus/build/test_c_plus.build/Debug/test_c_plus.build/Objects-normal/x86_64/test_c_plus.LinkFileList
c000000004D900895000000000000006F
t1301285013
s111
N/Users/philip/Desktop/test_c_plus/main.cpp
c000000004D901A79000000000000317E
t1301289593
s12670
i<iostream>
i<fstream>
i<string>
CCheck dependencies
r0
lSLF07#2@18"Check dependencies322982393#322982393#0(0"0(0#1#0"8611291200#0"0#
CCompileC build/test_c_plus.build/Debug/test_c_plus.build/Objects-normal/x86_64/main.o /Users/philip/Desktop/test_c_plus/main.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
s322982393.573246
e322982393.953401
r1
xCompileC
xbuild/test_c_plus.build/Debug/test_c_plus.build/Objects-normal/x86_64/main.o
x/Users/philip/Desktop/test_c_plus/main.cpp
xnormal
xx86_64
xc++
xcom.apple.compilers.gcc.4_2
lSLF07#2@50"Compile /Users/philip/Desktop/test_c_plus/main.cpp322982393#322982393#0(706"/Users/philip/Desktop/test_c_plus/main.cpp: In function 'void init_cells()': /Users/philip/Desktop/test_c_plus/main.cpp:131: warning: unused variable 'centersize' /Users/philip/Desktop/test_c_plus/main.cpp: In function 'void update_cells()': /Users/philip/Desktop/test_c_plus/main.cpp:165: warning: unused variable 'neighborsum' /Users/philip/Desktop/test_c_plus/main.cpp:167: warning: unused variable 'io_char_counter' /Users/philip/Desktop/test_c_plus/main.cpp:174: warning: unused variable 'UPDATE_MEMORY_DECAY' /Users/philip/Desktop/test_c_plus/main.cpp: In function 'void display_stats()': /Users/philip/Desktop/test_c_plus/main.cpp:361: warning: deprecated conversion from string constant to 'char*' 5(22@28"Unused variable 'centersize'322982393#77#86#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp322982393#131#0#131#0#19"unused variable '*'0(22@29"Unused variable 'neighborsum'322982393#242#87#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp322982393#165#0#165#0#19"unused variable '*'0(22@33"Unused variable 'io_char_counter'322982393#329#91#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp322982393#167#0#167#0#19"unused variable '*'0(22@37"Unused variable 'UPDATE_MEMORY_DECAY'322982393#420#95#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp322982393#174#0#174#0#19"unused variable '*'0(22@53"Deprecated conversion from string constant to 'char*'322982393#595#111#0(6@42"/Users/philip/Desktop/test_c_plus/main.cpp322982393#361#0#361#0#49"deprecated conversion from string constant to '*'0(0#0#42"/Users/philip/Desktop/test_c_plus/main.cpp8611182272#1308" cd /Users/philip/Desktop/test_c_plus setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/philip/Desktop/test_c_plus/build/test_c_plus.build/Debug/test_c_plus.build/test_c_plus-generated-files.hmap -I/Users/philip/Desktop/test_c_plus/build/test_c_plus.build/Debug/test_c_plus.build/test_c_plus-own-target-headers.hmap -I/Users/philip/Desktop/test_c_plus/build/test_c_plus.build/Debug/test_c_plus.build/test_c_plus-all-target-headers.hmap -iquote /Users/philip/Desktop/test_c_plus/build/test_c_plus.build/Debug/test_c_plus.build/test_c_plus-project-headers.hmap -F/Users/philip/Desktop/test_c_plus/build/Debug -I/Users/philip/Desktop/test_c_plus/build/Debug/include -I/Users/philip/Desktop/test_c_plus/build/test_c_plus.build/Debug/test_c_plus.build/DerivedSources/x86_64 -I/Users/philip/Desktop/test_c_plus/build/test_c_plus.build/Debug/test_c_plus.build/DerivedSources -c /Users/philip/Desktop/test_c_plus/main.cpp -o /Users/philip/Desktop/test_c_plus/build/test_c_plus.build/Debug/test_c_plus.build/Objects-normal/x86_64/main.o 0#
CLd /Users/philip/Desktop/test_c_plus/build/Debug/test_c_plus normal x86_64
s322982393.953467
e322982393.975851
r1
xLd
x/Users/philip/Desktop/test_c_plus/build/Debug/test_c_plus
xnormal
xx86_64
lSLF07#2@62"Link /Users/philip/Desktop/test_c_plus/build/Debug/test_c_plus322982393#322982393#0(0"0(0#0#0"8612011840#523" cd /Users/philip/Desktop/test_c_plus setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/philip/Desktop/test_c_plus/build/Debug -F/Users/philip/Desktop/test_c_plus/build/Debug -filelist /Users/philip/Desktop/test_c_plus/build/test_c_plus.build/Debug/test_c_plus.build/Objects-normal/x86_64/test_c_plus.LinkFileList -mmacosx-version-min=10.6 -framework GLUT -framework OpenGL -o /Users/philip/Desktop/test_c_plus/build/Debug/test_c_plus 0#

Some files were not shown because too many files have changed in this diff Show more