diff --git a/plugins/LinuxVST/src/BuildATPDF/.vs/Console4Channel64/v14/.suo b/plugins/LinuxVST/src/BuildATPDF/.vs/Console4Channel64/v14/.suo
deleted file mode 100755
index 777b84637..000000000
Binary files a/plugins/LinuxVST/src/BuildATPDF/.vs/Console4Channel64/v14/.suo and /dev/null differ
diff --git a/plugins/LinuxVST/src/BuildATPDF/.vs/VSTProject/v14/.suo b/plugins/LinuxVST/src/BuildATPDF/.vs/VSTProject/v14/.suo
deleted file mode 100755
index 48c954dae..000000000
Binary files a/plugins/LinuxVST/src/BuildATPDF/.vs/VSTProject/v14/.suo and /dev/null differ
diff --git a/plugins/LinuxVST/src/BuildATPDF/BuildATPDF.cpp b/plugins/LinuxVST/src/BuildATPDF/BuildATPDF.cpp
index e9f01a8ef..50f8100ec 100755
--- a/plugins/LinuxVST/src/BuildATPDF/BuildATPDF.cpp
+++ b/plugins/LinuxVST/src/BuildATPDF/BuildATPDF.cpp
@@ -22,6 +22,9 @@ BuildATPDF::BuildATPDF(audioMasterCallback audioMaster) :
H = 0.5;
I = 0.5;
J = 0.5;
+
+ for(int count = 0; count < 11; count++) {bL[count] = 0.0; bR[count] = 0.0; f[count] = 0.0;}
+
//this is reset: values being initialized only once. Startup values, whatever they are.
_canDo.insert("plugAsChannelInsert"); // plug-in can be used as a channel insert effect.
diff --git a/plugins/LinuxVST/src/IronOxideClassic2/IronOxideClassic2.cpp b/plugins/LinuxVST/src/IronOxideClassic2/IronOxideClassic2.cpp
index 2caadf4bd..2fcd3e002 100755
--- a/plugins/LinuxVST/src/IronOxideClassic2/IronOxideClassic2.cpp
+++ b/plugins/LinuxVST/src/IronOxideClassic2/IronOxideClassic2.cpp
@@ -18,6 +18,8 @@ IronOxideClassic2::IronOxideClassic2(audioMasterCallback audioMaster) :
for (int x = 0; x < 15; x++) {biquadA[x] = 0.0; biquadB[x] = 0.0;}
for (int temp = 0; temp < 263; temp++) {dL[temp] = 0.0;dR[temp] = 0.0;}
+ for(int count = 0; count < 6; count++) {lastRefL[count] = 0.0;lastRefR[count] = 0.0;}
+ cycle = 0;
gcount = 0;
fastIIRAL = fastIIRBL = slowIIRAL = slowIIRBL = 0.0;
iirSampleAL = iirSampleBL = 0.0;
diff --git a/plugins/LinuxVST/src/PodcastDeluxe/PodcastDeluxe.cpp b/plugins/LinuxVST/src/PodcastDeluxe/PodcastDeluxe.cpp
index 59ad637c8..2b48a0d56 100755
--- a/plugins/LinuxVST/src/PodcastDeluxe/PodcastDeluxe.cpp
+++ b/plugins/LinuxVST/src/PodcastDeluxe/PodcastDeluxe.cpp
@@ -27,7 +27,7 @@ PodcastDeluxe::PodcastDeluxe(audioMasterCallback audioMaster) :
d5R[count] = 0.0;
}
c1L = 2.0; c2L = 2.0; c3L = 2.0; c4L = 2.0; c5L = 2.0; //startup comp gains
-
+ lastSampleL = lastOutSampleL = lastSampleR = lastOutSampleR = 0.0;
tap1 = 1; tap2 = 1; tap3 = 1; tap4 = 1; tap5 = 1;
maxdelay1 = 9001; maxdelay2 = 9001; maxdelay3 = 9001; maxdelay4 = 9001; maxdelay5 = 9001;
c1R = 2.0; c2R = 2.0; c3R = 2.0; c4R = 2.0; c5R = 2.0; //startup comp gains
diff --git a/plugins/LinuxVST/src/ResEQ/ResEQ.cpp b/plugins/LinuxVST/src/ResEQ/ResEQ.cpp
index b36612f27..37a7b4244 100755
--- a/plugins/LinuxVST/src/ResEQ/ResEQ.cpp
+++ b/plugins/LinuxVST/src/ResEQ/ResEQ.cpp
@@ -21,6 +21,11 @@ ResEQ::ResEQ(audioMasterCallback audioMaster) :
G = 0.0;
H = 0.0;
I = 0.0;
+ for(int count = 0; count < 60; count++) {
+ bL[count] = 0.0; fL[count] = 0.0;
+ bR[count] = 0.0; fR[count] = 0.0;
+ }
+ framenumber = 0;
fpd = 17;
//this is reset: values being initialized only once. Startup values, whatever they are.
diff --git a/plugins/LinuxVST/src/Slew/.vs/Console4Channel64/v14/.suo b/plugins/LinuxVST/src/Slew/.vs/Console4Channel64/v14/.suo
deleted file mode 100755
index 777b84637..000000000
Binary files a/plugins/LinuxVST/src/Slew/.vs/Console4Channel64/v14/.suo and /dev/null differ
diff --git a/plugins/LinuxVST/src/Slew/.vs/VSTProject/v14/.suo b/plugins/LinuxVST/src/Slew/.vs/VSTProject/v14/.suo
deleted file mode 100755
index 95f301802..000000000
Binary files a/plugins/LinuxVST/src/Slew/.vs/VSTProject/v14/.suo and /dev/null differ
diff --git a/plugins/LinuxVST/src/Slew/Slew.cpp b/plugins/LinuxVST/src/Slew/Slew.cpp
index bba987566..a90a72f94 100755
--- a/plugins/LinuxVST/src/Slew/Slew.cpp
+++ b/plugins/LinuxVST/src/Slew/Slew.cpp
@@ -16,6 +16,7 @@ AudioEffect* createEffectInstance(audioMasterCallback audioMaster)
Slew::Slew(audioMasterCallback audioMaster) :
AudioEffectX(audioMaster, kNumPrograms, kNumParameters)
{
+ gain = 0.0;
lastSampleL = 0.0;
lastSampleR = 0.0;
diff --git a/plugins/LinuxVST/src/StarChild/.vs/Console4Channel64/v14/.suo b/plugins/LinuxVST/src/StarChild/.vs/Console4Channel64/v14/.suo
deleted file mode 100755
index 777b84637..000000000
Binary files a/plugins/LinuxVST/src/StarChild/.vs/Console4Channel64/v14/.suo and /dev/null differ
diff --git a/plugins/LinuxVST/src/StarChild/.vs/VSTProject/v14/.suo b/plugins/LinuxVST/src/StarChild/.vs/VSTProject/v14/.suo
deleted file mode 100755
index 1c72906df..000000000
Binary files a/plugins/LinuxVST/src/StarChild/.vs/VSTProject/v14/.suo and /dev/null differ
diff --git a/plugins/LinuxVST/src/StarChild/StarChild.cpp b/plugins/LinuxVST/src/StarChild/StarChild.cpp
index 1b29d502f..6e4bf3e9a 100755
--- a/plugins/LinuxVST/src/StarChild/StarChild.cpp
+++ b/plugins/LinuxVST/src/StarChild/StarChild.cpp
@@ -19,11 +19,12 @@ StarChild::StarChild(audioMasterCallback audioMaster) :
int count;
for(count = 0; count < 44101; count++) {d[count] = 0.0;}
+ dCount = 0;
for(count = 0; count < 11; count++) {wearL[count] = 0.0; wearR[count] = 0.0; factor[count] = 0.0;}
wearLPrev = 0.0; wearRPrev = 0.0;
-
+ p[0] = 1;
p[1] = 11; p[2] = 13; p[3] = 17; p[4] = 19; p[5] = 23; p[6] = 29; p[7] = 31; p[8] = 37; p[9] = 41;
p[10] = 43; p[11] = 47; p[12] = 53; p[13] = 59; p[14] = 61; p[15] = 67; p[16] = 71; p[17] = 73; p[18] = 79; p[19] = 83; p[20] = 89;
p[21] = 97; p[22] = 101; p[23] = 103; p[24] = 107; p[25] = 109; p[26] = 113; p[27] = 127; p[28] = 131; p[29] = 137; p[30] = 139;
diff --git a/plugins/MacAU/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.pbxuser b/plugins/MacAU/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.pbxuser
index a8e22a58e..375757f7f 100755
--- a/plugins/MacAU/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacAU/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569590151;
- PBXWorkspaceStateSaveDate = 569590151;
+ PBXPerProjectTemplateStateSaveDate = 639858013;
+ PBXWorkspaceStateSaveDate = 639858013;
};
perUserProjectItems = {
8B753DE91E4005E400347157 /* PlistBookmark */ = 8B753DE91E4005E400347157 /* PlistBookmark */;
- 8B79285A21F341B0006E9731 /* PBXTextBookmark */ = 8B79285A21F341B0006E9731 /* PBXTextBookmark */;
- 8B9D72F41F7F11CA007AB60F /* PBXTextBookmark */ = 8B9D72F41F7F11CA007AB60F /* PBXTextBookmark */;
+ 8BA6294F2623752B00483AAF /* PBXTextBookmark */ = 8BA6294F2623752B00483AAF /* PBXTextBookmark */;
+ 8BA629512623752B00483AAF /* PBXTextBookmark */ = 8BA629512623752B00483AAF /* PBXTextBookmark */;
+ 8BA6296A2623757300483AAF /* PBXTextBookmark */ = 8BA6296A2623757300483AAF /* PBXTextBookmark */;
};
sourceControlManager = 8BD3CCB8148830B20062E48C /* Source Control */;
userBuildSettings = {
@@ -73,32 +74,12 @@
rLen = 0;
rLoc = 9223372036854775808;
};
- 8B79285A21F341B0006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BC6025B073B072D006C4272 /* BuildATPDF.h */;
- name = "BuildATPDF.h: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 548;
- vrLoc = 0;
- };
- 8B9D72F41F7F11CA007AB60F /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BC6025B073B072D006C4272 /* BuildATPDF.h */;
- name = "BuildATPDF.h: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 550;
- vrLoc = 0;
- };
8BA05A660720730100365D66 /* BuildATPDF.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {876, 4316}}";
+ sepNavIntBoundsRect = "{{0, 0}, {876, 5832}}";
sepNavSelRange = "{12469, 0}";
- sepNavVisRange = "{12444, 2132}";
- sepNavWindowFrame = "{{496, 41}, {923, 837}}";
+ sepNavVisRange = "{12018, 258}";
+ sepNavWindowFrame = "{{496, 42}, {923, 836}}";
};
};
8BA05A690720730100365D66 /* BuildATPDFVersion.h */ = {
@@ -109,12 +90,42 @@
sepNavWindowFrame = "{{15, 39}, {923, 837}}";
};
};
+ 8BA6294F2623752B00483AAF /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BC6025B073B072D006C4272 /* BuildATPDF.h */;
+ name = "BuildATPDF.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 131;
+ vrLoc = 0;
+ };
+ 8BA629512623752B00483AAF /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* BuildATPDF.cpp */;
+ name = "BuildATPDF.cpp: 263";
+ rLen = 0;
+ rLoc = 12469;
+ rType = 0;
+ vrLen = 280;
+ vrLoc = 11996;
+ };
+ 8BA6296A2623757300483AAF /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* BuildATPDF.cpp */;
+ name = "BuildATPDF.cpp: 263";
+ rLen = 0;
+ rLoc = 12469;
+ rType = 0;
+ vrLen = 258;
+ vrLoc = 12018;
+ };
8BC6025B073B072D006C4272 /* BuildATPDF.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {803, 2106}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1029, 2970}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 548}";
- sepNavWindowFrame = "{{517, 39}, {923, 837}}";
+ sepNavVisRange = "{0, 131}";
+ sepNavWindowFrame = "{{108, 42}, {923, 836}}";
};
};
8BD3CCB8148830B20062E48C /* Source Control */ = {
diff --git a/plugins/MacAU/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacAU/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.perspectivev3
index a6dd77af2..4f12e944b 100755
--- a/plugins/MacAU/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacAU/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.perspectivev3
@@ -341,7 +341,7 @@
PBXProjectModuleGUID
8BD7274A1D46E5A5000176F0
PBXProjectModuleLabel
- BuildATPDF.h
+ BuildATPDF.cpp
PBXSplitModuleInNavigatorKey
Split0
@@ -349,15 +349,16 @@
PBXProjectModuleGUID
8BD7274B1D46E5A5000176F0
PBXProjectModuleLabel
- BuildATPDF.h
+ BuildATPDF.cpp
_historyCapacity
0
bookmark
- 8B79285A21F341B0006E9731
+ 8BA6296A2623757300483AAF
history
8B753DE91E4005E400347157
- 8B9D72F41F7F11CA007AB60F
+ 8BA6294F2623752B00483AAF
+ 8BA629512623752B00483AAF
SplitCount
@@ -371,18 +372,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {531, 202}}
+ {{0, 0}, {531, 158}}
RubberWindowFrame
599 205 841 654 0 0 1440 878
Module
PBXNavigatorGroup
Proportion
- 202pt
+ 158pt
Proportion
- 406pt
+ 450pt
Tabs
@@ -396,7 +397,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {531, 379}}
+ {{10, 27}, {531, 423}}
RubberWindowFrame
599 205 841 654 0 0 1440 878
@@ -480,11 +481,11 @@
TableOfContents
- 8B79285B21F341B0006E9731
+ 8BA6296B2623757300483AAF
1CA23ED40692098700951B8B
- 8B79285C21F341B0006E9731
+ 8BA6296C2623757300483AAF
8BD7274A1D46E5A5000176F0
- 8B79285D21F341B0006E9731
+ 8BA6296D2623757300483AAF
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -657,7 +658,7 @@
StatusbarIsVisible
TimeStamp
- 569590192.67660701
+ 639858035.10268104
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -674,7 +675,7 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacAU/BuildATPDF/BuildATPDF.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/BuildATPDF.xcodeproj
WindowString
599 205 841 654 0 0 1440 878
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/categories.pbxbtree b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/categories.pbxbtree
new file mode 100644
index 000000000..d3f6bb3b6
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/categories.pbxbtree differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/cdecls.pbxbtree b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/cdecls.pbxbtree
new file mode 100644
index 000000000..62be8f764
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/cdecls.pbxbtree differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/decls.pbxbtree b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/decls.pbxbtree
new file mode 100644
index 000000000..e86354c66
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/decls.pbxbtree differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/files.pbxbtree b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/files.pbxbtree
new file mode 100644
index 000000000..e415ad733
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/files.pbxbtree differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/imports.pbxbtree b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/imports.pbxbtree
new file mode 100644
index 000000000..15b205968
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/imports.pbxbtree differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/pbxindex.header b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/pbxindex.header
new file mode 100644
index 000000000..cf8033ddd
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/pbxindex.header differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/protocols.pbxbtree b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/protocols.pbxbtree
new file mode 100644
index 000000000..d3f6bb3b6
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/protocols.pbxbtree differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/refs.pbxbtree b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/refs.pbxbtree
new file mode 100644
index 000000000..eba73245f
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/refs.pbxbtree differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/strings.pbxstrings/control b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/strings.pbxstrings/control
new file mode 100644
index 000000000..01b30ec86
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/strings.pbxstrings/control differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/strings.pbxstrings/strings b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/strings.pbxstrings/strings
new file mode 100644
index 000000000..ddadbca88
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/strings.pbxstrings/strings differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/subclasses.pbxbtree b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/subclasses.pbxbtree
new file mode 100644
index 000000000..97a56b200
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/subclasses.pbxbtree differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/symbols0.pbxsymbols b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/symbols0.pbxsymbols
new file mode 100644
index 000000000..f53b5d891
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/BuildATPDF.pbxindex/symbols0.pbxsymbols differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/BuildATPDF.dep b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/BuildATPDF.dep
new file mode 100644
index 000000000..00b1357db
--- /dev/null
+++ b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/BuildATPDF.dep
@@ -0,0 +1,59 @@
+0000000009085486000000000001b528 5dbe9987b80af13764b5ab3905e338f8 ffffffffffffffffffffffffffffffff 2300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBaseHelper.o
+0000000009085486000000000001b528 7937506e03874305f36e7a6ae2eee0b6 ffffffffffffffffffffffffffffffff 2216 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBaseHelper.o
+0000000009085486000000000001b528 fe2f3f0e808de27eafbdb185cbac31a7 ffffffffffffffffffffffffffffffff 2664 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBaseHelper.o
+000000000d89aa8e0000000000006fbd 0256857f8fe3611fc2f43f32af7cbe22 ffffffffffffffffffffffffffffffff 1284 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 452909b820eff07a6a228ccbae13e58a ffffffffffffffffffffffffffffffff 1340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 588d36225b4d24452750d0d0cae31643 ffffffffffffffffffffffffffffffff 1520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAVectorUnit.o
+000000004864a73b00000000000067f6 3d39bdca11c21af13fe073ffa2b8f509 ffffffffffffffffffffffffffffffff 9460 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAAUParameter.o
+000000004864a73b00000000000067f6 d691b30fe2392b5869e508eb1cc5b137 ffffffffffffffffffffffffffffffff 8912 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAAUParameter.o
+000000004864a73b00000000000067f6 bd3f3e1293c06c1f67186cbb6ee32152 ffffffffffffffffffffffffffffffff 10844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAAUParameter.o
+00000000459e514c000000000000b0e9 4c13545fd2c36a9143cc1ae02fac7e06 ffffffffffffffffffffffffffffffff 9476 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 74df46356381748d13de9cd07a0403b2 ffffffffffffffffffffffffffffffff 8332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 17e4d9921132c5ed9133c0bd421b20da ffffffffffffffffffffffffffffffff 10324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAStreamBasicDescription.o
+000000000fde02b3000000000000e8c5 68c4e9615647cdfc31b5144f74341358 ffffffffffffffffffffffffffffffff 4556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAMutex.o
+000000000fde02b3000000000000e8c5 2849947c191e21ff2860e2b296c92a35 ffffffffffffffffffffffffffffffff 4332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAMutex.o
+000000000fde02b3000000000000e8c5 27b4dc744af3a56f59e92eb97e411a87 ffffffffffffffffffffffffffffffff 5376 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAMutex.o
+000000000224c870000000000000a1ca b711882cc2506649207d4a4867e4cd56 ffffffffffffffffffffffffffffffff 3652 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca 8fbef4623ed79fbbb48a236bc47e1880 ffffffffffffffffffffffffffffffff 3452 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca 8e59e500f66bbe5d2d54279b8e71cd78 ffffffffffffffffffffffffffffffff 4512 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAAudioChannelLayout.o
+000000000b2c9e1300000000000045af ee84d7b708e5b09294c3e19ab84ddf9a ffffffffffffffffffffffffffffffff 344 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 9489876cd2697032e53e15259fe37ffb ffffffffffffffffffffffffffffffff 288 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 2fcac49bdd50d8873a1c74ee9893ae24 ffffffffffffffffffffffffffffffff 356 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUDebugDispatcher.o
+0000000000735ce0000000000000debb 2840add1aae11c5cf9e6aa25066b4186 ffffffffffffffffffffffffffffffff 3748 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBuffer.o
+0000000000735ce0000000000000debb 999e356db0715468832a04a063bc71b7 ffffffffffffffffffffffffffffffff 3596 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBuffer.o
+0000000000735ce0000000000000debb a41a593210447fd39ee585834794884e ffffffffffffffffffffffffffffffff 4340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBuffer.o
+000000000b7e84bf00000000000078d4 4c92b8a16be00707071cad893b82b018 ffffffffffffffffffffffffffffffff 20844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUEffectBase.o
+000000000b7e84bf00000000000078d4 d265a8316b790b56773fe420b0e1705d ffffffffffffffffffffffffffffffff 19796 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUEffectBase.o
+000000000b7e84bf00000000000078d4 812f3ed61d8905b6a155d2309975b322 ffffffffffffffffffffffffffffffff 22368 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUEffectBase.o
+000000004cd54809000000000000c180 6f562f6c4233a34552d61dfc14c94878 ffffffffffffffffffffffffffffffff 4836 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/ComponentBase.o
+000000004cd54809000000000000c180 79879486c1dd63b4dd07fd2b2a39c779 ffffffffffffffffffffffffffffffff 4300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/ComponentBase.o
+000000004cd54809000000000000c180 0b87c9a837fcdb3bd7c8880744e08645 ffffffffffffffffffffffffffffffff 5080 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/ComponentBase.o
+000000000257e57600000000000074ab 9b279534337624fad0be9d6614a71c8c ffffffffffffffffffffffffffffffff 25916 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUScopeElement.o
+000000000257e57600000000000074ab 48ca13a9fa81448bcfcea39c6076b911 ffffffffffffffffffffffffffffffff 24616 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUScopeElement.o
+000000000257e57600000000000074ab 90ec37254f972f112d6e4f4e8fc50575 ffffffffffffffffffffffffffffffff 29532 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUScopeElement.o
+00000000459e20a7000000000000dea0 cdcae0a08736326c25b3b69e151325a5 ffffffffffffffffffffffffffffffff 5712 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUOutputElement.o
+00000000459e20a7000000000000dea0 24a41d7a74a7d6298cfa492534533922 ffffffffffffffffffffffffffffffff 5484 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUOutputElement.o
+00000000459e20a7000000000000dea0 8182c34119deb2dbf53d67938c8e1f3b ffffffffffffffffffffffffffffffff 6632 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUOutputElement.o
+000000000b7e84bf00000000000004cc a1cb753094f37bf9d4bbfc9c08ac1472 ffffffffffffffffffffffffffffffff 7848 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUInputElement.o
+000000000b7e84bf00000000000004cc 240da42ac9f62d659df6069d43192335 ffffffffffffffffffffffffffffffff 7552 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUInputElement.o
+000000000b7e84bf00000000000004cc 28d583ed56bf962b02d68447b78d68c9 ffffffffffffffffffffffffffffffff 9176 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUInputElement.o
+0000000004a0f5680000000000000b33 bd2837698635572b7f5e5157bed8f9f3 ffffffffffffffffffffffffffffffff 4456 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUDispatch.o
+0000000004a0f5680000000000000b33 00e4a7d21dfa9738671473a69695e154 ffffffffffffffffffffffffffffffff 5324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUDispatch.o
+0000000004a0f5680000000000000b33 7ededcc7e9b2dc14e8452a2ef51c5e55 ffffffffffffffffffffffffffffffff 6360 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUDispatch.o
+00000000413e98c60000000000017e35 981f6f3b2103b7bd50ce568a45e4ffc2 ffffffffffffffffffffffffffffffff 63236 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBase.o
+00000000413e98c60000000000017e35 cc65a4f40e081585047d6ea034e27f68 ffffffffffffffffffffffffffffffff 62760 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBase.o
+00000000413e98c60000000000017e35 3bb3f50abe4f6413bd97b39e20864d65 ffffffffffffffffffffffffffffffff 73140 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBase.o
+0000000060076c5e00000000000068d5 d82618c78de62cad997dc891059eb486 ffffffffffffffffffffffffffffffff 18640 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF-1DB483EC8D75827.o
+0000000060076c5e00000000000068d5 32ddbffb2f57d17f1de24bec486006ec ffffffffffffffffffffffffffffffff 17432 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF-1DB483EC8D75827.o
+0000000060076c5e00000000000068d5 a911175d3039d683fb9419f5db64c3f8 ffffffffffffffffffffffffffffffff 22148 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF-1DB483EC8D75827.o
+5c6c1049ff84ab2540c7d15aae18cb6a 5e0efd1cb77a0aa93f7ed1247d0e9847 ffffffffffffffffffffffffffffffff 102 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component
+cc4eff75a3b21298bf13af09b88fc2d2 763beac97da352c5c145196fde5685bf ffffffffffffffffffffffffffffffff 544 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component/Contents/Resources/BuildATPDF.rsrc
+60d77ec1ba1e12dac4516cbc2b6edd4f ac9981b419ac00427b42c3b593e11f9d ffffffffffffffffffffffffffffffff 544 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/ResourceManagerResources/BuildATPDF.rsrc
+000000004864a72d000000000000055e 60d77ec1f27ab5f7c4516cbc2b6ed811 ffffffffffffffffffffffffffffffff 544 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/ResourceManagerResources/Objects/BuildATPDF-F2DE06932BC77829.rsrc
+f234c008a1b64954ca7f27786c4bb3c0 ec56cdec11d86c74aab6269001115197 ffffffffffffffffffffffffffffffff 347072 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component/Contents/MacOS/BuildATPDF
+1e2039baa62f42c4641140f152de7305 48a1f7407ef14c49f7138332f2b399be ffffffffffffffffffffffffffffffff 117696 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF
+296d546071b452b213f81103e3755efc db3a85e3503dadad76fe9fd644c6bbc0 ffffffffffffffffffffffffffffffff 106800 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF
+712bf416229dc8a6acdc43f4657f199f 27c92b677a7c706090a7299a0eeaa5d8 ffffffffffffffffffffffffffffffff 111144 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF
+00000000605576f20000000000000180 f87b0811f1aeb8aa5e5866d4a59b6fd0 ffffffffffffffffffffffffffffffff 384 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component/Contents/Resources/English.lproj/InfoPlist.strings
+00000000000000000000000000000000 c1ac62b0cb490e6e0266a9500b986122 ffffffffffffffffffffffffffffffff 8 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component/Contents/PkgInfo
+00000000000000000000000000000000 c1ac62b0cb490e6e0266a9500b986122 ffffffffffffffffffffffffffffffff 1119 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component/Contents/Info.plist
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/BuildATPDF.hmap b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/BuildATPDF.hmap
new file mode 100644
index 000000000..f90e16491
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/BuildATPDF.hmap differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/BuildATPDF~.dep b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/BuildATPDF~.dep
new file mode 100644
index 000000000..36254b943
--- /dev/null
+++ b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/BuildATPDF~.dep
@@ -0,0 +1,59 @@
+5c6c1049ff84ab2540c7d15aae18cb6a 5e0efd1cb77a0aa93f7ed1247d0e9847 ffffffffffffffffffffffffffffffff 102 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component
+cc4eff75a3b21298bf13af09b88fc2d2 763beac97da352c5c145196fde5685bf ffffffffffffffffffffffffffffffff 544 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component/Contents/Resources/BuildATPDF.rsrc
+f234c008a1b64954ca7f27786c4bb3c0 ec56cdec11d86c74aab6269001115197 ffffffffffffffffffffffffffffffff 347072 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component/Contents/MacOS/BuildATPDF
+00000000605576f20000000000000180 f87b0811f1aeb8aa5e5866d4a59b6fd0 ffffffffffffffffffffffffffffffff 384 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component/Contents/Resources/English.lproj/InfoPlist.strings
+00000000000000000000000000000000 c1ac62b0cb490e6e0266a9500b986122 ffffffffffffffffffffffffffffffff 8 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component/Contents/PkgInfo
+00000000000000000000000000000000 c1ac62b0cb490e6e0266a9500b986122 ffffffffffffffffffffffffffffffff 1119 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component/Contents/Info.plist
+60d77ec1ba1e12dac4516cbc2b6edd4f ac9981b419ac00427b42c3b593e11f9d ffffffffffffffffffffffffffffffff 544 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/ResourceManagerResources/BuildATPDF.rsrc
+000000004864a72d000000000000055e 60d77ec1f27ab5f7c4516cbc2b6ed811 ffffffffffffffffffffffffffffffff 544 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/ResourceManagerResources/Objects/BuildATPDF-F2DE06932BC77829.rsrc
+1e2039baa62f42c4641140f152de7305 48a1f7407ef14c49f7138332f2b399be ffffffffffffffffffffffffffffffff 117696 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF
+296d546071b452b213f81103e3755efc db3a85e3503dadad76fe9fd644c6bbc0 ffffffffffffffffffffffffffffffff 106800 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF
+712bf416229dc8a6acdc43f4657f199f 27c92b677a7c706090a7299a0eeaa5d8 ffffffffffffffffffffffffffffffff 111144 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF
+0000000009085486000000000001b528 5dbe9987b80af13764b5ab3905e338f8 ffffffffffffffffffffffffffffffff 2300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBaseHelper.o
+0000000009085486000000000001b528 7937506e03874305f36e7a6ae2eee0b6 ffffffffffffffffffffffffffffffff 2216 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBaseHelper.o
+0000000009085486000000000001b528 fe2f3f0e808de27eafbdb185cbac31a7 ffffffffffffffffffffffffffffffff 2664 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBaseHelper.o
+000000000d89aa8e0000000000006fbd 0256857f8fe3611fc2f43f32af7cbe22 ffffffffffffffffffffffffffffffff 1284 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 452909b820eff07a6a228ccbae13e58a ffffffffffffffffffffffffffffffff 1340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 588d36225b4d24452750d0d0cae31643 ffffffffffffffffffffffffffffffff 1520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAVectorUnit.o
+000000004864a73b00000000000067f6 3d39bdca11c21af13fe073ffa2b8f509 ffffffffffffffffffffffffffffffff 9460 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAAUParameter.o
+000000004864a73b00000000000067f6 d691b30fe2392b5869e508eb1cc5b137 ffffffffffffffffffffffffffffffff 8912 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAAUParameter.o
+000000004864a73b00000000000067f6 bd3f3e1293c06c1f67186cbb6ee32152 ffffffffffffffffffffffffffffffff 10844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAAUParameter.o
+00000000459e514c000000000000b0e9 4c13545fd2c36a9143cc1ae02fac7e06 ffffffffffffffffffffffffffffffff 9476 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 74df46356381748d13de9cd07a0403b2 ffffffffffffffffffffffffffffffff 8332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 17e4d9921132c5ed9133c0bd421b20da ffffffffffffffffffffffffffffffff 10324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAStreamBasicDescription.o
+000000000fde02b3000000000000e8c5 68c4e9615647cdfc31b5144f74341358 ffffffffffffffffffffffffffffffff 4556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAMutex.o
+000000000fde02b3000000000000e8c5 2849947c191e21ff2860e2b296c92a35 ffffffffffffffffffffffffffffffff 4332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAMutex.o
+000000000fde02b3000000000000e8c5 27b4dc744af3a56f59e92eb97e411a87 ffffffffffffffffffffffffffffffff 5376 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAMutex.o
+000000000224c870000000000000a1ca b711882cc2506649207d4a4867e4cd56 ffffffffffffffffffffffffffffffff 3652 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca 8fbef4623ed79fbbb48a236bc47e1880 ffffffffffffffffffffffffffffffff 3452 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca 8e59e500f66bbe5d2d54279b8e71cd78 ffffffffffffffffffffffffffffffff 4512 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAAudioChannelLayout.o
+000000000b2c9e1300000000000045af ee84d7b708e5b09294c3e19ab84ddf9a ffffffffffffffffffffffffffffffff 344 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 9489876cd2697032e53e15259fe37ffb ffffffffffffffffffffffffffffffff 288 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 2fcac49bdd50d8873a1c74ee9893ae24 ffffffffffffffffffffffffffffffff 356 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUDebugDispatcher.o
+0000000000735ce0000000000000debb 2840add1aae11c5cf9e6aa25066b4186 ffffffffffffffffffffffffffffffff 3748 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBuffer.o
+0000000000735ce0000000000000debb 999e356db0715468832a04a063bc71b7 ffffffffffffffffffffffffffffffff 3596 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBuffer.o
+0000000000735ce0000000000000debb a41a593210447fd39ee585834794884e ffffffffffffffffffffffffffffffff 4340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBuffer.o
+000000000b7e84bf00000000000078d4 4c92b8a16be00707071cad893b82b018 ffffffffffffffffffffffffffffffff 20844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUEffectBase.o
+000000000b7e84bf00000000000078d4 d265a8316b790b56773fe420b0e1705d ffffffffffffffffffffffffffffffff 19796 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUEffectBase.o
+000000000b7e84bf00000000000078d4 812f3ed61d8905b6a155d2309975b322 ffffffffffffffffffffffffffffffff 22368 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUEffectBase.o
+000000004cd54809000000000000c180 6f562f6c4233a34552d61dfc14c94878 ffffffffffffffffffffffffffffffff 4836 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/ComponentBase.o
+000000004cd54809000000000000c180 79879486c1dd63b4dd07fd2b2a39c779 ffffffffffffffffffffffffffffffff 4300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/ComponentBase.o
+000000004cd54809000000000000c180 0b87c9a837fcdb3bd7c8880744e08645 ffffffffffffffffffffffffffffffff 5080 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/ComponentBase.o
+000000000257e57600000000000074ab 9b279534337624fad0be9d6614a71c8c ffffffffffffffffffffffffffffffff 25916 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUScopeElement.o
+000000000257e57600000000000074ab 48ca13a9fa81448bcfcea39c6076b911 ffffffffffffffffffffffffffffffff 24616 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUScopeElement.o
+000000000257e57600000000000074ab 90ec37254f972f112d6e4f4e8fc50575 ffffffffffffffffffffffffffffffff 29532 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUScopeElement.o
+00000000459e20a7000000000000dea0 cdcae0a08736326c25b3b69e151325a5 ffffffffffffffffffffffffffffffff 5712 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUOutputElement.o
+00000000459e20a7000000000000dea0 24a41d7a74a7d6298cfa492534533922 ffffffffffffffffffffffffffffffff 5484 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUOutputElement.o
+00000000459e20a7000000000000dea0 8182c34119deb2dbf53d67938c8e1f3b ffffffffffffffffffffffffffffffff 6632 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUOutputElement.o
+000000000b7e84bf00000000000004cc a1cb753094f37bf9d4bbfc9c08ac1472 ffffffffffffffffffffffffffffffff 7848 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUInputElement.o
+000000000b7e84bf00000000000004cc 240da42ac9f62d659df6069d43192335 ffffffffffffffffffffffffffffffff 7552 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUInputElement.o
+000000000b7e84bf00000000000004cc 28d583ed56bf962b02d68447b78d68c9 ffffffffffffffffffffffffffffffff 9176 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUInputElement.o
+0000000004a0f5680000000000000b33 bd2837698635572b7f5e5157bed8f9f3 ffffffffffffffffffffffffffffffff 4456 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUDispatch.o
+0000000004a0f5680000000000000b33 00e4a7d21dfa9738671473a69695e154 ffffffffffffffffffffffffffffffff 5324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUDispatch.o
+0000000004a0f5680000000000000b33 7ededcc7e9b2dc14e8452a2ef51c5e55 ffffffffffffffffffffffffffffffff 6360 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUDispatch.o
+00000000413e98c60000000000017e35 981f6f3b2103b7bd50ce568a45e4ffc2 ffffffffffffffffffffffffffffffff 63236 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBase.o
+00000000413e98c60000000000017e35 cc65a4f40e081585047d6ea034e27f68 ffffffffffffffffffffffffffffffff 62760 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBase.o
+00000000413e98c60000000000017e35 3bb3f50abe4f6413bd97b39e20864d65 ffffffffffffffffffffffffffffffff 73140 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBase.o
+0000000060076c5e00000000000068d5 d82618c78de62cad997dc891059eb486 ffffffffffffffffffffffffffffffff 18640 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF-1DB483EC8D75827.o
+0000000060076c5e00000000000068d5 32ddbffb2f57d17f1de24bec486006ec ffffffffffffffffffffffffffffffff 17432 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF-1DB483EC8D75827.o
+0000000060076c5e00000000000068d5 a911175d3039d683fb9419f5db64c3f8 ffffffffffffffffffffffffffffffff 22148 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF-1DB483EC8D75827.o
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBase.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBase.o
new file mode 100644
index 000000000..a20eddb1a
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBase.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBaseHelper.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBaseHelper.o
new file mode 100644
index 000000000..48e877fb9
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBaseHelper.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBuffer.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBuffer.o
new file mode 100644
index 000000000..2fce9264d
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBuffer.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUDebugDispatcher.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUDebugDispatcher.o
new file mode 100644
index 000000000..24b573566
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUDispatch.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUDispatch.o
new file mode 100644
index 000000000..7c4ddea60
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUDispatch.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUEffectBase.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUEffectBase.o
new file mode 100644
index 000000000..72de6e545
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUEffectBase.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUInputElement.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUInputElement.o
new file mode 100644
index 000000000..0de7107c4
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUInputElement.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUOutputElement.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUOutputElement.o
new file mode 100644
index 000000000..4805b497c
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUOutputElement.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUScopeElement.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUScopeElement.o
new file mode 100644
index 000000000..a6d690efa
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUScopeElement.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF
new file mode 100755
index 000000000..90fb87437
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF-1DB483EC8D75827.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF-1DB483EC8D75827.o
new file mode 100644
index 000000000..0733f5ce3
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF.LinkFileList b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF.LinkFileList
new file mode 100644
index 000000000..f5730b82d
--- /dev/null
+++ b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBaseHelper.o
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAAUParameter.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAAUParameter.o
new file mode 100644
index 000000000..d180f7727
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAAUParameter.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAAudioChannelLayout.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAAudioChannelLayout.o
new file mode 100644
index 000000000..d331fbc18
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAMutex.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAMutex.o
new file mode 100644
index 000000000..262dc32f7
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAMutex.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAStreamBasicDescription.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAStreamBasicDescription.o
new file mode 100644
index 000000000..0cfd9b30e
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAVectorUnit.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAVectorUnit.o
new file mode 100644
index 000000000..263571618
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAVectorUnit.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/ComponentBase.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/ComponentBase.o
new file mode 100644
index 000000000..62df2c846
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/ComponentBase.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBase.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBase.o
new file mode 100644
index 000000000..30cbbab77
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBase.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBaseHelper.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBaseHelper.o
new file mode 100644
index 000000000..4a424d17b
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBaseHelper.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBuffer.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBuffer.o
new file mode 100644
index 000000000..132b8e314
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBuffer.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUDebugDispatcher.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUDebugDispatcher.o
new file mode 100644
index 000000000..a3eb3b0c1
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUDispatch.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUDispatch.o
new file mode 100644
index 000000000..c2dfc5807
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUDispatch.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUEffectBase.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUEffectBase.o
new file mode 100644
index 000000000..4353d8250
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUEffectBase.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUInputElement.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUInputElement.o
new file mode 100644
index 000000000..feecbbb7e
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUInputElement.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUOutputElement.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUOutputElement.o
new file mode 100644
index 000000000..70323f97b
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUOutputElement.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUScopeElement.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUScopeElement.o
new file mode 100644
index 000000000..5057b57e2
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUScopeElement.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF
new file mode 100755
index 000000000..436570443
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF-1DB483EC8D75827.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF-1DB483EC8D75827.o
new file mode 100644
index 000000000..32839f2d2
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF.LinkFileList b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF.LinkFileList
new file mode 100644
index 000000000..de923d048
--- /dev/null
+++ b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBaseHelper.o
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAAUParameter.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAAUParameter.o
new file mode 100644
index 000000000..b6ffa244f
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAAUParameter.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAAudioChannelLayout.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAAudioChannelLayout.o
new file mode 100644
index 000000000..97f98ac2f
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAMutex.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAMutex.o
new file mode 100644
index 000000000..935e0bfd6
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAMutex.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAStreamBasicDescription.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAStreamBasicDescription.o
new file mode 100644
index 000000000..b8b51d753
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAVectorUnit.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAVectorUnit.o
new file mode 100644
index 000000000..4ce4ed3cd
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAVectorUnit.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/ComponentBase.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/ComponentBase.o
new file mode 100644
index 000000000..9bafdb4fb
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/ComponentBase.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBase.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBase.o
new file mode 100644
index 000000000..09eceaa64
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBase.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBaseHelper.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBaseHelper.o
new file mode 100644
index 000000000..211d87b5c
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBaseHelper.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBuffer.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBuffer.o
new file mode 100644
index 000000000..5fc0e15be
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBuffer.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUDebugDispatcher.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUDebugDispatcher.o
new file mode 100644
index 000000000..8e7087417
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUDispatch.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUDispatch.o
new file mode 100644
index 000000000..5ce3e81d2
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUDispatch.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUEffectBase.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUEffectBase.o
new file mode 100644
index 000000000..7e2b03180
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUEffectBase.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUInputElement.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUInputElement.o
new file mode 100644
index 000000000..3ac5e6806
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUInputElement.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUOutputElement.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUOutputElement.o
new file mode 100644
index 000000000..9ee53add2
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUOutputElement.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUScopeElement.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUScopeElement.o
new file mode 100644
index 000000000..9567a9a86
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUScopeElement.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF
new file mode 100755
index 000000000..7207c07a7
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF-1DB483EC8D75827.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF-1DB483EC8D75827.o
new file mode 100644
index 000000000..a17200dd9
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF.LinkFileList b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF.LinkFileList
new file mode 100644
index 000000000..c4881cc53
--- /dev/null
+++ b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBaseHelper.o
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAAUParameter.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAAUParameter.o
new file mode 100644
index 000000000..c323b43d1
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAAUParameter.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAAudioChannelLayout.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAAudioChannelLayout.o
new file mode 100644
index 000000000..83a99fa40
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAMutex.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAMutex.o
new file mode 100644
index 000000000..2644b82ff
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAMutex.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAStreamBasicDescription.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAStreamBasicDescription.o
new file mode 100644
index 000000000..40bba150f
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAVectorUnit.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAVectorUnit.o
new file mode 100644
index 000000000..3c21a0eac
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAVectorUnit.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/ComponentBase.o b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/ComponentBase.o
new file mode 100644
index 000000000..01e70c71b
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/ComponentBase.o differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/ResourceManagerResources/BuildATPDF.rsrc b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/ResourceManagerResources/BuildATPDF.rsrc
new file mode 100644
index 000000000..413682b9b
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/ResourceManagerResources/BuildATPDF.rsrc differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/ResourceManagerResources/Objects/BuildATPDF-F2DE06932BC77829.rsrc b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/ResourceManagerResources/Objects/BuildATPDF-F2DE06932BC77829.rsrc
new file mode 100644
index 000000000..26081623d
Binary files /dev/null and b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/ResourceManagerResources/Objects/BuildATPDF-F2DE06932BC77829.rsrc differ
diff --git a/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/build-state.dat b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/build-state.dat
new file mode 100644
index 000000000..90b38a321
--- /dev/null
+++ b/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/build-state.dat
@@ -0,0 +1,1612 @@
+TBuildATPDF
+v7
+r0
+t639858029.775720
+cCheck dependencies
+cProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component/Contents/Info.plist Info.plist
+cCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/BuildATPDF.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/ppc/BuildATPDF normal ppc
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/BuildATPDF.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/i386/BuildATPDF normal i386
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/BuildATPDF.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/Objects-normal/x86_64/BuildATPDF normal x86_64
+cCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component/Contents/MacOS/BuildATPDF normal "ppc i386 x86_64"
+cRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/ResourceManagerResources/Objects/BuildATPDF-F2DE06932BC77829.rsrc BuildATPDF.r
+cResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/BuildATPDF.build/Release/BuildATPDF.build/ResourceManagerResources/BuildATPDF.rsrc
+cResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component/Contents/Resources/BuildATPDF.rsrc
+cTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/BuildATPDF/build/Release/BuildATPDF.component
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+c000000004A12495000000000000104EE
+t1242712400
+s66798
+i"AUBase.h"
+i"AUDispatch.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i
+i"CAAudioChannelLayout.h"
+i"CAHostTimeBase.h"
+i"CAVectorUnit.h"
+i"CAXException.h"
+i"AUBaseHelper.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.h
+c000000004A1249500000000000008203
+t1242712400
+s33283
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUScopeElement.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i"AUBuffer.h"
+i"CAMath.h"
+i"CAThreadSafeList.h"
+i"CAVectorUnit.h"
+i"CATrace.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+c000000004CC46C4D00000000000037D2
+t1287941197
+s14290
+i"AUBase.h"
+i"CAXException.h"
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.h
+c000000004A1249500000000000000D7E
+t1242712400
+s3454
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+c000000004A12495000000000000014D3
+t1242712400
+s5331
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.h
+c000000004A12495000000000000011E5
+t1242712400
+s4581
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+c000000004A1249500000000000000B01
+t1242712400
+s2817
+i"AUOutputElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.h
+c000000004A1249500000000000000B84
+t1242712400
+s2948
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+c000000004A12495000000000000042C4
+t1242712400
+s17092
+i"AUScopeElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.h
+c000000004A12495000000000000049D5
+t1242712400
+s18901
+i
RubberWindowFrame
- 470 131 841 654 0 0 1440 878
+ 27 181 841 654 0 0 1440 878
Module
PBXSmartGroupTreeModule
@@ -354,14 +354,14 @@
_historyCapacity
0
bookmark
- 8BA2406C25FD854300C915DA
+ 8BA62A192623793400483AAF
history
8BA23F9E25FD6E5700C915DA
8BA23FA025FD6E5700C915DA
8BA23FA125FD6E5700C915DA
8BA2406B25FD854300C915DA
- 8BA23F9F25FD6E5700C915DA
+ 8BA629BA2623768700483AAF
SplitCount
@@ -375,18 +375,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {531, 173}}
+ {{0, 0}, {531, 126}}
RubberWindowFrame
- 470 131 841 654 0 0 1440 878
+ 27 181 841 654 0 0 1440 878
Module
PBXNavigatorGroup
Proportion
- 173pt
+ 126pt
Proportion
- 435pt
+ 482pt
Tabs
@@ -400,9 +400,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {531, 408}}
+ {{10, 27}, {531, 455}}
RubberWindowFrame
- 470 131 841 654 0 0 1440 878
+ 27 181 841 654 0 0 1440 878
Module
XCDetailModule
@@ -484,11 +484,11 @@
TableOfContents
- 8BA2406D25FD854300C915DA
+ 8BA62A1A2623793400483AAF
1CA23ED40692098700951B8B
- 8BA2406E25FD854300C915DA
+ 8BA62A1B2623793400483AAF
8BD7274A1D46E5A5000176F0
- 8BA2406F25FD854300C915DA
+ 8BA62A1C2623793400483AAF
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -661,7 +661,7 @@
StatusbarIsVisible
TimeStamp
- 637371715.01990902
+ 639858996.94936705
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -678,11 +678,11 @@
5
WindowOrderList
- 8BA2407025FD854300C915DA
- /Users/christopherjohnson/Desktop/Plugins/MacAU/IronOxideClassic2/IronOxideClassic2.xcodeproj
+ 8BA62A1D2623793400483AAF
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.xcodeproj
WindowString
- 470 131 841 654 0 0 1440 878
+ 27 181 841 654 0 0 1440 878
WindowToolsV3
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/categories.pbxbtree b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/categories.pbxbtree
new file mode 100644
index 000000000..d3f6bb3b6
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/categories.pbxbtree differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/cdecls.pbxbtree b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/cdecls.pbxbtree
new file mode 100644
index 000000000..8ad4b81f7
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/cdecls.pbxbtree differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/decls.pbxbtree b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/decls.pbxbtree
new file mode 100644
index 000000000..27ed0eab8
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/decls.pbxbtree differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/files.pbxbtree b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/files.pbxbtree
new file mode 100644
index 000000000..32996b487
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/files.pbxbtree differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/imports.pbxbtree b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/imports.pbxbtree
new file mode 100644
index 000000000..ddc41e6a7
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/imports.pbxbtree differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/pbxindex.header b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/pbxindex.header
new file mode 100644
index 000000000..749f67966
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/pbxindex.header differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/protocols.pbxbtree b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/protocols.pbxbtree
new file mode 100644
index 000000000..d3f6bb3b6
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/protocols.pbxbtree differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/refs.pbxbtree b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/refs.pbxbtree
new file mode 100644
index 000000000..34a9e174a
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/refs.pbxbtree differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/strings.pbxstrings/control b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/strings.pbxstrings/control
new file mode 100644
index 000000000..4ba6e65fd
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/strings.pbxstrings/control differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/strings.pbxstrings/strings b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/strings.pbxstrings/strings
new file mode 100644
index 000000000..a91332e8d
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/strings.pbxstrings/strings differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/subclasses.pbxbtree b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/subclasses.pbxbtree
new file mode 100644
index 000000000..bc3c177ea
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/subclasses.pbxbtree differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/symbols0.pbxsymbols b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/symbols0.pbxsymbols
new file mode 100644
index 000000000..4bd0c1ad1
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/IronOxideClassic2.pbxindex/symbols0.pbxsymbols differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.dep b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.dep
new file mode 100644
index 000000000..9ef6f5c7f
--- /dev/null
+++ b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.dep
@@ -0,0 +1,59 @@
+0000000009085486000000000001b528 98719c10e342ee854cf4da23015b0863 ffffffffffffffffffffffffffffffff 2300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o
+0000000009085486000000000001b528 bc42f232bf5f71b2ad420a3042e00d5e ffffffffffffffffffffffffffffffff 2216 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o
+0000000009085486000000000001b528 b414b9a8927f4ad6479169d4ff63fb06 ffffffffffffffffffffffffffffffff 2664 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o
+000000000d89aa8e0000000000006fbd 4ef1d48f43b2b34183bce7e895e20b3f ffffffffffffffffffffffffffffffff 1284 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 9385a7ccbaf5a1df178f4e88e6c80dd4 ffffffffffffffffffffffffffffffff 1340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd d4243b031fd4c20ebec080aece177c40 ffffffffffffffffffffffffffffffff 1520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o
+000000004864a73b00000000000067f6 8b19ca5043b7cdf44af204af3e0620db ffffffffffffffffffffffffffffffff 9460 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o
+000000004864a73b00000000000067f6 7c47f4b3349a3a4534ae6d469a71467c ffffffffffffffffffffffffffffffff 8912 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o
+000000004864a73b00000000000067f6 f38288a3fd1496eaad58c30aa54688cf ffffffffffffffffffffffffffffffff 10844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o
+00000000459e514c000000000000b0e9 97674a136dd43a930792d88f7e285702 ffffffffffffffffffffffffffffffff 9476 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 9b9347cafb69224319bae619bb2d3f8e ffffffffffffffffffffffffffffffff 8332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 8f017fd7098e7abcd932049d73deed23 ffffffffffffffffffffffffffffffff 10324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o
+000000000fde02b3000000000000e8c5 434696fcd1d981d8157cc46b65d76485 ffffffffffffffffffffffffffffffff 4556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o
+000000000fde02b3000000000000e8c5 abbd8af1ebfcb9da1e420292324d97b7 ffffffffffffffffffffffffffffffff 4332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o
+000000000fde02b3000000000000e8c5 8ffe369f230f0cae9f94ad7421b76b4f ffffffffffffffffffffffffffffffff 5376 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o
+000000000224c870000000000000a1ca 241fbf203baf826b66567b58e7813de8 ffffffffffffffffffffffffffffffff 3652 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca f6c99286320d478930f3d4d0323859a4 ffffffffffffffffffffffffffffffff 3452 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca c2c1311058fc42b01e98e664b74b6b61 ffffffffffffffffffffffffffffffff 4512 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o
+000000000b2c9e1300000000000045af 943642d5e8c0cc9179e712ff692adad2 ffffffffffffffffffffffffffffffff 344 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af bc5e5f933607ec89b0da6f22eb018cb4 ffffffffffffffffffffffffffffffff 288 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af d9a714f69af2c957e10c8cbd38f63dc5 ffffffffffffffffffffffffffffffff 356 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o
+0000000000735ce0000000000000debb 4eaf3641ad8bd26de697c0e01546f6fe ffffffffffffffffffffffffffffffff 3748 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o
+0000000000735ce0000000000000debb 660b14f5b7150bedf35fcf98cd3cb500 ffffffffffffffffffffffffffffffff 3596 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o
+0000000000735ce0000000000000debb c6b03a254ba6921e3644f25e4bd16f3e ffffffffffffffffffffffffffffffff 4340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o
+000000000b7e84bf00000000000078d4 d409da9505c08aeeee94fadfcc15d0c8 ffffffffffffffffffffffffffffffff 20844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o
+000000000b7e84bf00000000000078d4 4deece67c862d6a88d995090e1c9a744 ffffffffffffffffffffffffffffffff 19796 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o
+000000000b7e84bf00000000000078d4 490d09fad786f33048eadc481c07a27f ffffffffffffffffffffffffffffffff 22368 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o
+000000004cd54809000000000000c180 e807f562a847286092dd5f447cd89951 ffffffffffffffffffffffffffffffff 4836 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o
+000000004cd54809000000000000c180 0799b9f852d2f7e0d106a9ea3f9b1437 ffffffffffffffffffffffffffffffff 4300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o
+000000004cd54809000000000000c180 891e8d714b352f3081b4219d9e8315b7 ffffffffffffffffffffffffffffffff 5080 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o
+000000000257e57600000000000074ab ee626e6e2223aee462524b52fcee3316 ffffffffffffffffffffffffffffffff 25916 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o
+000000000257e57600000000000074ab 9d94ca4925dfddf95db87ec7b02540ec ffffffffffffffffffffffffffffffff 24616 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o
+000000000257e57600000000000074ab 1240c0e703aaa207f55f3d07271b49f9 ffffffffffffffffffffffffffffffff 29532 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o
+00000000459e20a7000000000000dea0 ef4c031f6818b4023e15e5416c183697 ffffffffffffffffffffffffffffffff 5712 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o
+00000000459e20a7000000000000dea0 4166eade08f1600700bea69401695b39 ffffffffffffffffffffffffffffffff 5484 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o
+00000000459e20a7000000000000dea0 24e92cbbfd1603d79b0d6dd106c85b91 ffffffffffffffffffffffffffffffff 6632 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o
+000000000b7e84bf00000000000004cc 223d593ce601b7143865c4aa2177d8f9 ffffffffffffffffffffffffffffffff 7848 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o
+000000000b7e84bf00000000000004cc 1e4c27e16f79bd2218e315561754c219 ffffffffffffffffffffffffffffffff 7552 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o
+000000000b7e84bf00000000000004cc d0ef0089bd618cd28811146f47221a57 ffffffffffffffffffffffffffffffff 9176 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o
+0000000004a0f5680000000000000b33 757a4f97a9b81986b02b45d7ed3932ab ffffffffffffffffffffffffffffffff 4456 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o
+0000000004a0f5680000000000000b33 87ead7dddbf62c0041e9c1a48cff7fdf ffffffffffffffffffffffffffffffff 5324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o
+0000000004a0f5680000000000000b33 96cf6bfcd639d367f894b91b75258f6d ffffffffffffffffffffffffffffffff 6360 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o
+00000000413e98c60000000000017e35 1610a2991d9c5bbc1ac03e6965b63f2a ffffffffffffffffffffffffffffffff 63236 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o
+00000000413e98c60000000000017e35 4c3a7cffe0a91574f374ee2cb2fe843a ffffffffffffffffffffffffffffffff 62760 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o
+00000000413e98c60000000000017e35 db5e7485f201d7b71346136f68e69148 ffffffffffffffffffffffffffffffff 73140 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o
+0000000060076c5f0000000000001c44 b33cac6c1cf1a9208ae49a01391f0c1e ffffffffffffffffffffffffffffffff 21240 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o
+0000000060076c5f0000000000001c44 c1133040050fceceb7881ce8beee6d12 ffffffffffffffffffffffffffffffff 20448 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o
+0000000060076c5f0000000000001c44 a297126d4b48d6494ea396b368a5af20 ffffffffffffffffffffffffffffffff 31752 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o
+d1e576410d4a16e6b42e4029e2b4bfaf 2757209a0916dda07c8a2400fbe4f935 ffffffffffffffffffffffffffffffff 0 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component
+c1393560e5e55b9b17e576bbda10408a 152a56cada0561b89c88eadf16b5eb70 ffffffffffffffffffffffffffffffff 0 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/IronOxideClassic2.rsrc
+aec7a3aadaf6d0f7d3615153b933277a 6ffe96ca3f138b6cc48427e8632367f0 ffffffffffffffffffffffffffffffff 572 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc
+000000004864a72d000000000000055a aec7a3aa929277dad3615153b9332220 ffffffffffffffffffffffffffffffff 572 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc
+89b02802b8c743ae1ccc7d88d8d7031f be3c004fcb32976aa00bc386cad00dfb ffffffffffffffffffffffffffffffff 0 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/MacOS/IronOxideClassic2
+b875cf4ccfa2f36b5616a25a9a23b96c d9aa394247556980276040f31202a31b ffffffffffffffffffffffffffffffff 121720 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2
+cd385e1d3369a793e682be005bcb5f41 26bb873e2e5029e97ae3c04b5902c692 ffffffffffffffffffffffffffffffff 110792 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2
+87c839c924ecf2a351139eb59376935b 84243ee609e5a59ca0c87fdfc14913e0 ffffffffffffffffffffffffffffffff 115340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2
+00000000605576f3000000000000019c 327a3da6210a8ef2838462433c161b2d ffffffffffffffffffffffffffffffff 0 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/English.lproj/InfoPlist.strings
+00000000000000000000000000000000 e858d3e5171609204ce3edabd6a7c6d4 ffffffffffffffffffffffffffffffff 0 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/PkgInfo
+00000000000000000000000000000000 e858d3e5171609204ce3edabd6a7c6d4 ffffffffffffffffffffffffffffffff 0 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Info.plist
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap
new file mode 100644
index 000000000..b0fc0e959
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2~.dep b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2~.dep
new file mode 100644
index 000000000..57aceccb8
--- /dev/null
+++ b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2~.dep
@@ -0,0 +1,59 @@
+d1e576410d4a16e6b42e4029e2b4bfaf 2757209a0916dda07c8a2400fbe4f935 ffffffffffffffffffffffffffffffff 102 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component
+c1393560e5e55b9b17e576bbda10408a 152a56cada0561b89c88eadf16b5eb70 ffffffffffffffffffffffffffffffff 572 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/IronOxideClassic2.rsrc
+89b02802b8c743ae1ccc7d88d8d7031f be3c004fcb32976aa00bc386cad00dfb ffffffffffffffffffffffffffffffff 359288 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/MacOS/IronOxideClassic2
+00000000605576f3000000000000019c 327a3da6210a8ef2838462433c161b2d ffffffffffffffffffffffffffffffff 412 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/English.lproj/InfoPlist.strings
+00000000000000000000000000000000 e858d3e5171609204ce3edabd6a7c6d4 ffffffffffffffffffffffffffffffff 8 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/PkgInfo
+00000000000000000000000000000000 e858d3e5171609204ce3edabd6a7c6d4 ffffffffffffffffffffffffffffffff 1133 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Info.plist
+aec7a3aadaf6d0f7d3615153b933277a 6ffe96ca3f138b6cc48427e8632367f0 ffffffffffffffffffffffffffffffff 572 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc
+000000004864a72d000000000000055a aec7a3aa929277dad3615153b9332220 ffffffffffffffffffffffffffffffff 572 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc
+b875cf4ccfa2f36b5616a25a9a23b96c d9aa394247556980276040f31202a31b ffffffffffffffffffffffffffffffff 121720 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2
+cd385e1d3369a793e682be005bcb5f41 26bb873e2e5029e97ae3c04b5902c692 ffffffffffffffffffffffffffffffff 110792 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2
+87c839c924ecf2a351139eb59376935b 84243ee609e5a59ca0c87fdfc14913e0 ffffffffffffffffffffffffffffffff 115340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2
+0000000009085486000000000001b528 98719c10e342ee854cf4da23015b0863 ffffffffffffffffffffffffffffffff 2300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o
+0000000009085486000000000001b528 bc42f232bf5f71b2ad420a3042e00d5e ffffffffffffffffffffffffffffffff 2216 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o
+0000000009085486000000000001b528 b414b9a8927f4ad6479169d4ff63fb06 ffffffffffffffffffffffffffffffff 2664 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o
+000000000d89aa8e0000000000006fbd 4ef1d48f43b2b34183bce7e895e20b3f ffffffffffffffffffffffffffffffff 1284 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 9385a7ccbaf5a1df178f4e88e6c80dd4 ffffffffffffffffffffffffffffffff 1340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd d4243b031fd4c20ebec080aece177c40 ffffffffffffffffffffffffffffffff 1520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o
+000000004864a73b00000000000067f6 8b19ca5043b7cdf44af204af3e0620db ffffffffffffffffffffffffffffffff 9460 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o
+000000004864a73b00000000000067f6 7c47f4b3349a3a4534ae6d469a71467c ffffffffffffffffffffffffffffffff 8912 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o
+000000004864a73b00000000000067f6 f38288a3fd1496eaad58c30aa54688cf ffffffffffffffffffffffffffffffff 10844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o
+00000000459e514c000000000000b0e9 97674a136dd43a930792d88f7e285702 ffffffffffffffffffffffffffffffff 9476 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 9b9347cafb69224319bae619bb2d3f8e ffffffffffffffffffffffffffffffff 8332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 8f017fd7098e7abcd932049d73deed23 ffffffffffffffffffffffffffffffff 10324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o
+000000000fde02b3000000000000e8c5 434696fcd1d981d8157cc46b65d76485 ffffffffffffffffffffffffffffffff 4556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o
+000000000fde02b3000000000000e8c5 abbd8af1ebfcb9da1e420292324d97b7 ffffffffffffffffffffffffffffffff 4332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o
+000000000fde02b3000000000000e8c5 8ffe369f230f0cae9f94ad7421b76b4f ffffffffffffffffffffffffffffffff 5376 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o
+000000000224c870000000000000a1ca 241fbf203baf826b66567b58e7813de8 ffffffffffffffffffffffffffffffff 3652 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca f6c99286320d478930f3d4d0323859a4 ffffffffffffffffffffffffffffffff 3452 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca c2c1311058fc42b01e98e664b74b6b61 ffffffffffffffffffffffffffffffff 4512 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o
+000000000b2c9e1300000000000045af 943642d5e8c0cc9179e712ff692adad2 ffffffffffffffffffffffffffffffff 344 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af bc5e5f933607ec89b0da6f22eb018cb4 ffffffffffffffffffffffffffffffff 288 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af d9a714f69af2c957e10c8cbd38f63dc5 ffffffffffffffffffffffffffffffff 356 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o
+0000000000735ce0000000000000debb 4eaf3641ad8bd26de697c0e01546f6fe ffffffffffffffffffffffffffffffff 3748 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o
+0000000000735ce0000000000000debb 660b14f5b7150bedf35fcf98cd3cb500 ffffffffffffffffffffffffffffffff 3596 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o
+0000000000735ce0000000000000debb c6b03a254ba6921e3644f25e4bd16f3e ffffffffffffffffffffffffffffffff 4340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o
+000000000b7e84bf00000000000078d4 d409da9505c08aeeee94fadfcc15d0c8 ffffffffffffffffffffffffffffffff 20844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o
+000000000b7e84bf00000000000078d4 4deece67c862d6a88d995090e1c9a744 ffffffffffffffffffffffffffffffff 19796 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o
+000000000b7e84bf00000000000078d4 490d09fad786f33048eadc481c07a27f ffffffffffffffffffffffffffffffff 22368 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o
+000000004cd54809000000000000c180 e807f562a847286092dd5f447cd89951 ffffffffffffffffffffffffffffffff 4836 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o
+000000004cd54809000000000000c180 0799b9f852d2f7e0d106a9ea3f9b1437 ffffffffffffffffffffffffffffffff 4300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o
+000000004cd54809000000000000c180 891e8d714b352f3081b4219d9e8315b7 ffffffffffffffffffffffffffffffff 5080 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o
+000000000257e57600000000000074ab ee626e6e2223aee462524b52fcee3316 ffffffffffffffffffffffffffffffff 25916 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o
+000000000257e57600000000000074ab 9d94ca4925dfddf95db87ec7b02540ec ffffffffffffffffffffffffffffffff 24616 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o
+000000000257e57600000000000074ab 1240c0e703aaa207f55f3d07271b49f9 ffffffffffffffffffffffffffffffff 29532 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o
+00000000459e20a7000000000000dea0 ef4c031f6818b4023e15e5416c183697 ffffffffffffffffffffffffffffffff 5712 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o
+00000000459e20a7000000000000dea0 4166eade08f1600700bea69401695b39 ffffffffffffffffffffffffffffffff 5484 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o
+00000000459e20a7000000000000dea0 24e92cbbfd1603d79b0d6dd106c85b91 ffffffffffffffffffffffffffffffff 6632 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o
+000000000b7e84bf00000000000004cc 223d593ce601b7143865c4aa2177d8f9 ffffffffffffffffffffffffffffffff 7848 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o
+000000000b7e84bf00000000000004cc 1e4c27e16f79bd2218e315561754c219 ffffffffffffffffffffffffffffffff 7552 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o
+000000000b7e84bf00000000000004cc d0ef0089bd618cd28811146f47221a57 ffffffffffffffffffffffffffffffff 9176 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o
+0000000004a0f5680000000000000b33 757a4f97a9b81986b02b45d7ed3932ab ffffffffffffffffffffffffffffffff 4456 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o
+0000000004a0f5680000000000000b33 87ead7dddbf62c0041e9c1a48cff7fdf ffffffffffffffffffffffffffffffff 5324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o
+0000000004a0f5680000000000000b33 96cf6bfcd639d367f894b91b75258f6d ffffffffffffffffffffffffffffffff 6360 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o
+00000000413e98c60000000000017e35 1610a2991d9c5bbc1ac03e6965b63f2a ffffffffffffffffffffffffffffffff 63236 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o
+00000000413e98c60000000000017e35 4c3a7cffe0a91574f374ee2cb2fe843a ffffffffffffffffffffffffffffffff 62760 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o
+00000000413e98c60000000000017e35 db5e7485f201d7b71346136f68e69148 ffffffffffffffffffffffffffffffff 73140 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o
+0000000060076c5f0000000000001c44 b33cac6c1cf1a9208ae49a01391f0c1e ffffffffffffffffffffffffffffffff 21240 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o
+0000000060076c5f0000000000001c44 c1133040050fceceb7881ce8beee6d12 ffffffffffffffffffffffffffffffff 20448 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o
+0000000060076c5f0000000000001c44 a297126d4b48d6494ea396b368a5af20 ffffffffffffffffffffffffffffffff 31752 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o
new file mode 100644
index 000000000..a20eddb1a
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o
new file mode 100644
index 000000000..48e877fb9
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o
new file mode 100644
index 000000000..2fce9264d
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o
new file mode 100644
index 000000000..24b573566
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o
new file mode 100644
index 000000000..7c4ddea60
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o
new file mode 100644
index 000000000..72de6e545
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o
new file mode 100644
index 000000000..0de7107c4
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o
new file mode 100644
index 000000000..4805b497c
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o
new file mode 100644
index 000000000..a6d690efa
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o
new file mode 100644
index 000000000..d180f7727
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o
new file mode 100644
index 000000000..d331fbc18
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o
new file mode 100644
index 000000000..262dc32f7
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o
new file mode 100644
index 000000000..0cfd9b30e
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o
new file mode 100644
index 000000000..263571618
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o
new file mode 100644
index 000000000..62df2c846
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2 b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2
new file mode 100755
index 000000000..580ad1cba
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2 differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o
new file mode 100644
index 000000000..5f6546a2e
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2.LinkFileList b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2.LinkFileList
new file mode 100644
index 000000000..5167a2351
--- /dev/null
+++ b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o
new file mode 100644
index 000000000..30cbbab77
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o
new file mode 100644
index 000000000..4a424d17b
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o
new file mode 100644
index 000000000..132b8e314
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o
new file mode 100644
index 000000000..a3eb3b0c1
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o
new file mode 100644
index 000000000..c2dfc5807
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o
new file mode 100644
index 000000000..4353d8250
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o
new file mode 100644
index 000000000..feecbbb7e
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o
new file mode 100644
index 000000000..70323f97b
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o
new file mode 100644
index 000000000..5057b57e2
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o
new file mode 100644
index 000000000..b6ffa244f
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o
new file mode 100644
index 000000000..97f98ac2f
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o
new file mode 100644
index 000000000..935e0bfd6
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o
new file mode 100644
index 000000000..b8b51d753
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o
new file mode 100644
index 000000000..4ce4ed3cd
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o
new file mode 100644
index 000000000..9bafdb4fb
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2 b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2
new file mode 100755
index 000000000..1d18918ec
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2 differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o
new file mode 100644
index 000000000..f74922c49
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2.LinkFileList b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2.LinkFileList
new file mode 100644
index 000000000..614e7169f
--- /dev/null
+++ b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o
new file mode 100644
index 000000000..09eceaa64
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o
new file mode 100644
index 000000000..211d87b5c
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o
new file mode 100644
index 000000000..5fc0e15be
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o
new file mode 100644
index 000000000..8e7087417
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o
new file mode 100644
index 000000000..5ce3e81d2
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o
new file mode 100644
index 000000000..7e2b03180
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o
new file mode 100644
index 000000000..3ac5e6806
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o
new file mode 100644
index 000000000..9ee53add2
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o
new file mode 100644
index 000000000..9567a9a86
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o
new file mode 100644
index 000000000..c323b43d1
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o
new file mode 100644
index 000000000..83a99fa40
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o
new file mode 100644
index 000000000..2644b82ff
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o
new file mode 100644
index 000000000..40bba150f
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o
new file mode 100644
index 000000000..3c21a0eac
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o
new file mode 100644
index 000000000..01e70c71b
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2 b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2
new file mode 100755
index 000000000..55f0f8d63
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2 differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o
new file mode 100644
index 000000000..a103a42f0
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2.LinkFileList b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2.LinkFileList
new file mode 100644
index 000000000..1e596f2e6
--- /dev/null
+++ b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc
new file mode 100644
index 000000000..dfb483837
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc
new file mode 100644
index 000000000..9b8f0d74e
Binary files /dev/null and b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc differ
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/build-state.dat b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/build-state.dat
new file mode 100644
index 000000000..150c608ec
--- /dev/null
+++ b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/build-state.dat
@@ -0,0 +1,1612 @@
+TIronOxideClassic2
+v7
+r0
+t639858308.363303
+cCheck dependencies
+cProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Info.plist Info.plist
+cCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2 normal ppc
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2 normal i386
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2 normal x86_64
+cCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/MacOS/IronOxideClassic2 normal "ppc i386 x86_64"
+cRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc IronOxideClassic2.r
+cResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc
+cResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/IronOxideClassic2.rsrc
+cTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+c000000004A12495000000000000104EE
+t1242712400
+s66798
+i"AUBase.h"
+i"AUDispatch.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i
+i"CAAudioChannelLayout.h"
+i"CAHostTimeBase.h"
+i"CAVectorUnit.h"
+i"CAXException.h"
+i"AUBaseHelper.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.h
+c000000004A1249500000000000008203
+t1242712400
+s33283
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUScopeElement.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i"AUBuffer.h"
+i"CAMath.h"
+i"CAThreadSafeList.h"
+i"CAVectorUnit.h"
+i"CATrace.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+c000000004CC46C4D00000000000037D2
+t1287941197
+s14290
+i"AUBase.h"
+i"CAXException.h"
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.h
+c000000004A1249500000000000000D7E
+t1242712400
+s3454
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+c000000004A12495000000000000014D3
+t1242712400
+s5331
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.h
+c000000004A12495000000000000011E5
+t1242712400
+s4581
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+c000000004A1249500000000000000B01
+t1242712400
+s2817
+i"AUOutputElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.h
+c000000004A1249500000000000000B84
+t1242712400
+s2948
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+c000000004A12495000000000000042C4
+t1242712400
+s17092
+i"AUScopeElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.h
+c000000004A12495000000000000049D5
+t1242712400
+s18901
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+c000000004A1249500000000000001985
+t1242712400
+s6533
+i"ComponentBase.h"
+i"CAXException.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.h
+c000000004CC46C4D0000000000001FED
+t1287941197
+s8173
+i
+i"CADebugMacros.h"
+i
+i
+i
+i
+i"CoreAudioTypes.h"
+i"Components.h"
+i"AudioUnit.h"
+i"CAGuard.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+c000000004A12495000000000000041B8
+t1242712400
+s16824
+i"AUEffectBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.h
+c000000004A1249500000000000002520
+t1242712400
+s9504
+i"AUBase.h"
+i"AUSilentTimeout.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+c000000004A1249500000000000001347
+t1242712400
+s4935
+i"AUBaseHelper.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.h
+c000000004A1249500000000000000D1B
+t1242712400
+s3355
+i
+i
+i
+i
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+c000000004A1249500000000000001C88
+t1242712400
+s7304
+i"AUBuffer.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.h
+c000000004A12495000000000000021E4
+t1242712400
+s8676
+i
+i
+i
+i
+i"CAStreamBasicDescription.h"
+i"CAAutoDisposer.h"
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+c000000004A1249500000000000003FB0
+t1242712400
+s16304
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.h
+c000000004A1249500000000000001407
+t1242712400
+s5127
+i"CAHostTimeBase.h"
+i"CAMutex.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUSilentTimeout.h
+c000000004A1249500000000000000C53
+t1242712400
+s3155
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+c000000004A12495000000000000031DF
+t1242712400
+s12767
+i"CAAUParameter.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.h
+c000000004A1249500000000000001BD1
+t1242712400
+s7121
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomic.h
+c000000004A12495000000000000027B0
+t1242712400
+s10160
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomicStack.h
+c000000004A1249500000000000001A7C
+t1242712400
+s6780
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+c000000004A124950000000000000188C
+t1242712400
+s6284
+i"CAAudioChannelLayout.h"
+i"CAAutoDisposer.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.h
+c000000004A1249500000000000001E94
+t1242712400
+s7828
+i
+i
+i
+i
+i
+i
+i
+i"CADebugMacros.h"
+i"CAAutoDisposer.h"
+i"CAReferenceCounted.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAutoDisposer.h
+c000000004A1249500000000000002F87
+t1242712400
+s12167
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugMacros.h
+c000000004A1249500000000000004FAE
+t1242712400
+s20398
+i
+i"CoreAudioTypes.h"
+i"CADebugPrintf.h"
+i
+i"CAHostTimeBase.h"
+i"CAHostTimeBase.h"
+i"CADebugger.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugPrintf.h
+c000000004A124950000000000000111C
+t1242712400
+s4380
+i
+i"CoreAudioTypes.h"
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugger.h
+c000000004A1249500000000000000A9C
+t1242712400
+s2716
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAException.h
+c000000004A1249500000000000000DDC
+t1242712400
+s3548
+i
+i"CoreAudioTypes.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAGuard.h
+c000000004A12495000000000000012A2
+t1242712400
+s4770
+i"CAMutex.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAHostTimeBase.h
+c000000004A1249500000000000001C6C
+t1242712400
+s7276
+i
+i
+i
+i
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CALogMacros.h
+c000000004A12495000000000000019A2
+t1242712400
+s6562
+i"CADebugMacros.h"
+i"CADebugPrintf.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMath.h
+c000000004A1249500000000000000C6B
+t1242712400
+s3179
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+c000000004A12495000000000000030DE
+t1242712400
+s12510
+i"CAMutex.h"
+i
+i"CADebugMacros.h"
+i"CAException.h"
+i"CAHostTimeBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.h
+c000000004A124950000000000000128C
+t1242712400
+s4748
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAReferenceCounted.h
+c000000004A1249500000000000000C97
+t1242712400
+s3223
+i"CAAtomic.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+c000000004A1249500000000000004E32
+t1242712400
+s20018
+i"CAStreamBasicDescription.h"
+i"CAMath.h"
+i
+i
+i"CALogMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.h
+c000000004A1249500000000000002E6C
+t1242712400
+s11884
+i
+i
+i"CoreAudioTypes.h"
+i"CoreFoundation.h"
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAThreadSafeList.h
+c000000004A1249500000000000001D08
+t1242712400
+s7432
+i"CAAtomicStack.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+c000000004CC46C4D000000000000163D
+t1287941197
+s5693
+i"CAVectorUnit.h"
+i
+i"ippdefs.h"
+i"ippcore.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.h
+c000000004CC46C4D0000000000000EC3
+t1287941197
+s3779
+i
+i"CAVectorUnitTypes.h"
+i
+i
+i
+i"CFBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnitTypes.h
+c000000004A1249500000000000000A3C
+t1242712400
+s2620
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAXException.h
+c000000004A1249500000000000002965
+t1242712400
+s10597
+i
+i
+i
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/SDKs/MacOSX10.5.sdk
+c000000004A49A9E400000000000000EE
+t1246341604
+s238
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioUnitUtilities.h
+c000000004864A73B0000000000004DF8
+t1214555963
+s19960
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AUComponent.h
+c000000004864A72E0000000000003F7C
+t1214555950
+s16252
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.h
+c000000004864A72E00000000000003CC
+t1214555950
+s972
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.r
+c000000004864A72D000000000000026E
+t1214555949
+s622
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnitProperties.h
+c000000004864A72E0000000000018D55
+t1214555950
+s101717
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/CoreAudioTypes.h
+c0000000048649BCC000000000000E5E6
+t1214553036
+s58854
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h
+c00000000486499670000000000003438
+t1214552423
+s13368
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h
+c0000000048649968000000000000192A
+t1214552424
+s6442
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h
+c00000000486499690000000000000942
+t1214552425
+s2370
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h
+c0000000047BAD4120000000000000400
+t1203426322
+s1024
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers/Components.h
+c0000000048649BE6000000000000D5E1
+t1214553062
+s54753
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/TargetConditionals.h
+c000000004817F9680000000000002778
+t1209530728
+s10104
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/ctype.h
+c0000000047BA99310000000000002C3A
+t1203411249
+s11322
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/dlfcn.h
+c00000000487581E60000000000000AC7
+t1215660518
+s2759
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/errno.h
+c0000000047BA993000000000000003EB
+t1203411248
+s1003
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/libkern/OSAtomic.h
+c0000000047BA993000000000000024B9
+t1203411248
+s9401
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h
+c0000000047E8839E0000000000000746
+t1206420382
+s1862
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h
+c0000000047BA9932000000000000380F
+t1203411250
+s14351
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdio.h
+c0000000047BA99310000000000003D1D
+t1203411249
+s15645
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdlib.h
+c0000000047BA99310000000000002A79
+t1203411249
+s10873
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h
+c0000000047BA99320000000000001731
+t1203411250
+s5937
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/sysctl.h
+c0000000047E883D1000000000000795B
+t1206420433
+s31067
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/syslog.h
+c0000000047E883D100000000000021EC
+t1206420433
+s8684
+
+N/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
+c000000004EE0342D000000000051BA20
+t1323316269
+s5356064
+
+N/System/Library/Frameworks/AudioUnit.framework/AudioUnit
+c000000004EE033220000000000012150
+t1323316002
+s74064
+
+N/System/Library/Frameworks/CoreServices.framework/CoreServices
+c000000004C23F49F0000000000021710
+t1277424799
+s136976
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/English.lproj/InfoPlist.strings
+c00000000605576F3000000000000019C
+t1616213747
+s412
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp
+c00000000605576F3000000000000421D
+t1616213747
+s16925
+i"IronOxideClassic2.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.h
+c00000000605576F300000000000016EF
+t1616213747
+s5871
+i"AUEffectBase.h"
+i"IronOxideClassic2Version.h"
+i"AUDebugDispatcher.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.r
+c00000000605576F30000000000000CF1
+t1616213747
+s3313
+i
+i"IronOxideClassic2Version.h"
+i"AUResources.r"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2Version.h
+c00000000605576F30000000000000BC5
+t1616213747
+s3013
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o
+t1618165499
+s62760
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o
+t1618165501
+s2216
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o
+t1618165500
+s3596
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o
+t1618165499
+s288
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o
+t1618165498
+s5324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o
+t1618165500
+s19796
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o
+t1618165498
+s7552
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o
+t1618165498
+s5484
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o
+t1618165499
+s24616
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o
+t1618165500
+s8912
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o
+t1618165499
+s3452
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o
+t1618165499
+s4332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o
+t1618165500
+s8332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o
+t1618165500
+s1340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o
+t1618165499
+s4300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2
+t1618165501
+s110792
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o
+t1618165497
+s20448
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2.LinkFileList
+c0000000060733EF50000000000000B06
+t1618165493
+s2822
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o
+t1618165495
+s73140
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o
+t1618165497
+s2664
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o
+t1618165496
+s4340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o
+t1618165495
+s356
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o
+t1618165494
+s6360
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o
+t1618165496
+s22368
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o
+t1618165494
+s9176
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o
+t1618165495
+s6632
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o
+t1618165496
+s29532
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o
+t1618165497
+s10844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o
+t1618165496
+s4512
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o
+t1618165496
+s5376
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o
+t1618165496
+s10324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o
+t1618165496
+s1520
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o
+t1618165495
+s5080
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2
+t1618165497
+s115340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o
+t1618165494
+s31752
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2.LinkFileList
+c0000000060733EF50000000000000AF6
+t1618165493
+s2806
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o
+t1618165502
+s63236
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o
+t1618165503
+s2300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o
+t1618165503
+s3748
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o
+t1618165502
+s344
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o
+t1618165501
+s4456
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o
+t1618165503
+s20844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o
+t1618165502
+s7848
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o
+t1618165502
+s5712
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o
+t1618165503
+s25916
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o
+t1618165503
+s9460
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+t1618165503
+s3652
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o
+t1618165503
+s4556
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+t1618165503
+s9476
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o
+t1618165503
+s1284
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o
+t1618165502
+s4836
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2
+t1618165503
+s121720
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o
+t1618165501
+s21240
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2.LinkFileList
+c0000000060733EF50000000000000B26
+t1618165493
+s2854
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc
+t1618165504
+s572
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc
+t1618165504
+s572
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component
+t2
+s0
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Info.plist
+t2
+s0
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/MacOS/IronOxideClassic2
+t2
+s0
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/PkgInfo
+t2
+s0
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/English.lproj/InfoPlist.strings
+t2
+s0
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/IronOxideClassic2.rsrc
+t2
+s0
+
+NInfo.plist
+c00000000605576F30000000000000361
+t1616213747
+s865
+
+NIronOxideClassic2.exp
+c00000000605576F30000000000000018
+t1616213747
+s24
+
+CCheck dependencies
+r0
+lSLF07#2@18"Check dependencies639858308#639858308#0(0"0(0#1#0"8594109632#0"0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858296.919058
+e639858299.312926
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639858296#639858299#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8613816032#1301" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858300.105808
+e639858301.041566
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639858300#639858301#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8611420384#1314" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858299.297241
+e639858300.105656
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639858299#639858300#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8612362848#1306" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858299.313065
+e639858299.342036
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639858299#639858299#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8610087712#1324" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858297.136318
+e639858298.155475
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639858297#639858298#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8610348000#1309" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858298.862878
+e639858300.228574
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639858298#639858300#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8600237504#1317" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858297.465431
+e639858298.513877
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639858297#639858298#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8604416896#1317" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858297.911711
+e639858298.862670
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639858297#639858298#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8611916640#1319" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858298.155627
+e639858299.693974
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639858298#639858299#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8608071936#1317" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858299.729447
+e639858300.583387
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639858299#639858300#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8600026944#1302" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858299.342195
+e639858299.582061
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639858299#639858299#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8607754848#1316" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858299.582193
+e639858299.729301
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639858299#639858299#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8604064448#1290" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858299.694212
+e639858300.065141
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639858299#639858300#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8601200704#1324" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858300.065271
+e639858300.154576
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639858300#639858300#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8613436768#1300" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858298.514029
+e639858299.297111
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639858298#639858299#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8603344160#1315" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858296.634363
+e639858297.911566
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@106"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp639858296#639858297#0(0"0(0#0#98"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp8608132512#1361" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858293.631439
+e639858295.969737
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639858293#639858295#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8600490176#1308" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858296.506624
+e639858297.422063
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639858296#639858297#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8612024576#1321" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858295.640869
+e639858296.422058
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639858295#639858296#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8613929824#1313" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858295.969871
+e639858295.998402
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639858295#639858296#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8610568992#1331" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858293.632400
+e639858294.613000
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639858293#639858294#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8600257952#1316" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858295.533067
+e639858296.918909
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639858295#639858296#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8600322272#1324" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858293.633422
+e639858294.594749
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639858293#639858294#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8600102272#1324" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858294.594897
+e639858295.532884
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639858294#639858295#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8603243520#1326" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858294.613149
+e639858296.127316
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639858294#639858296#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8602613664#1324" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858296.318546
+e639858297.136043
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639858296#639858297#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8590351648#1309" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858295.998556
+e639858296.264633
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639858295#639858296#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8610078880#1323" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858296.127462
+e639858296.318403
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639858296#639858296#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8607820608#1297" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858296.264764
+e639858296.634208
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639858296#639858296#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8608598048#1331" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858296.422204
+e639858296.506462
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639858296#639858296#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8613765088#1307" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858294.909943
+e639858295.640712
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639858294#639858295#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8600890528#1322" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858293.630547
+e639858294.909808
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@106"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp639858293#639858294#0(0"0(0#0#98"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp8600559296#1368" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858300.228729
+e639858302.490751
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639858300#639858302#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8605882752#1307" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858303.349827
+e639858303.974842
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639858303#639858303#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8610429632#1320" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858302.490888
+e639858303.260280
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639858302#639858303#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8606893344#1312" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858302.802726
+e639858302.832849
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639858302#639858302#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8603774208#1330" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858300.583638
+e639858301.563938
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639858300#639858301#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8601288000#1315" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858302.312574
+e639858303.595589
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639858302#639858303#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8611215584#1323" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858301.088588
+e639858302.071797
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639858301#639858302#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8606913088#1323" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858301.356905
+e639858302.312325
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639858301#639858302#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8601324128#1325" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858301.564084
+e639858303.091253
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639858301#639858303#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8599461376#1323" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858303.208994
+e639858303.830231
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639858303#639858303#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8606667872#1308" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858302.833005
+e639858303.069525
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639858302#639858303#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8603316512#1322" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858303.069670
+e639858303.208849
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639858303#639858303#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8613658848#1296" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858303.091407
+e639858303.439500
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639858303#639858303#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8611025312#1330" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858303.260425
+e639858303.349684
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639858303#639858303#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8603823840#1306" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858302.071930
+e639858302.802579
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639858302#639858302#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8613710080#1321" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858300.154732
+e639858301.356767
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@106"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp639858300#639858301#0(0"0(0#0#98"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp8608806496#1367" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o
0#
+
+CCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+s639858293.606965
+e639858293.630447
+r1
+xCopyStringsFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/English.lproj/InfoPlist.strings
+xEnglish.lproj/InfoPlist.strings
+lSLF07#2@36"Copy English.lproj/InfoPlist.strings639858293#639858293#0(0"0(0#0#108"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/English.lproj/InfoPlist.strings8600789568#460" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-16 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/English.lproj
0#
+
+CCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/MacOS/IronOxideClassic2 normal "ppc i386 x86_64"
+s639858304.001755
+e639858304.005085
+r1
+xCreateUniversalBinary
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/MacOS/IronOxideClassic2
+xnormal
+xppc i386 x86_64
+lSLF07#2@121"CreateUniversalBinary build/Release/IronOxideClassic2.component/Contents/MacOS/IronOxideClassic2 normal "ppc i386 x86_64"639858304#639858304#0(0"0(0#0#92"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/ppc i386 x86_648605901632#802" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
/usr/bin/lipo -create /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2 -output /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/MacOS/IronOxideClassic2
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2 normal i386
+s639858301.041712
+e639858301.088411
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2
+xnormal
+xi386
+lSLF07#2@181"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2639858301#639858301#0(0"0(0#0#0"8603791488#930" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch i386 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2.LinkFileList -exported_symbols_list IronOxideClassic2.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2 normal ppc
+s639858297.422191
+e639858297.465272
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2
+xnormal
+xppc
+lSLF07#2@180"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2639858297#639858297#0(0"0(0#0#0"8600806112#927" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch ppc -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2.LinkFileList -exported_symbols_list IronOxideClassic2.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2 normal x86_64
+s639858303.974940
+e639858304.001653
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2
+xnormal
+xx86_64
+lSLF07#2@183"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2639858303#639858304#0(0"0(0#0#0"8613162944#936" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch x86_64 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2.LinkFileList -exported_symbols_list IronOxideClassic2.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2
0#
+
+CProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Info.plist Info.plist
+s639858293.603986
+e639858293.606894
+r1
+xProcessInfoPlistFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Info.plist
+xInfo.plist
+lSLF07#2@18"Process Info.plist639858293#639858293#0(0"0(0#0#87"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/Info.plist8600935808#452" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
builtin-infoPlistUtility Info.plist -genpkginfo /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/PkgInfo -expandbuildsettings -platform macosx -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Info.plist
0#
+
+CResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc
+s639858304.065274
+e639858304.075753
+r1
+xResMergerCollector
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc
+lSLF07#2@207"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc639858304#639858304#0(0"0(0#0#0"8604040416#527" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
/Developer/Tools/ResMerger -dstIs DF /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc
0#
+
+CResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/IronOxideClassic2.rsrc
+s639858304.075849
+e639858304.087936
+r1
+xResMergerProduct
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/IronOxideClassic2.rsrc
+lSLF07#2@181"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/IronOxideClassic2.rsrc639858304#639858304#0(0"0(0#0#0"8603843808#476" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
/Developer/Tools/ResMerger /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc -dstIs DF -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/IronOxideClassic2.rsrc
0#
+
+CRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc IronOxideClassic2.r
+s639858304.005169
+e639858304.065164
+r1
+xRez
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc
+xIronOxideClassic2.r
+lSLF07#2@23"Rez IronOxideClassic2.r639858304#639858304#0(0"0(0#0#96"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.r8604245344#1256" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
/Developer/Tools/Rez -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc -d SystemSevenOrLater=1 -useDF -script Roman -d ppc_YES -d i386_YES -d x86_64_YES -I /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Versions/A/Headers -I /Developer/Examples/CoreAudio/AudioUnits/AUPublic/AUBase -arch ppc -arch i386 -arch x86_64 -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase -i /Developer/Extras/CoreAudio/PublicUtility -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -isysroot /Developer/SDKs/MacOSX10.5.sdk /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.r
0#
+
+CTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component
+s639858304.088055
+e639858304.090755
+r1
+xTouch
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component
+lSLF07#2@124"Touch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component639858304#639858304#0(0"0(0#0#0"8600943968#225" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
/usr/bin/touch -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component
0#
+
diff --git a/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/build-state~.dat b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/build-state~.dat
new file mode 100644
index 000000000..3d0ea7d07
--- /dev/null
+++ b/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/build-state~.dat
@@ -0,0 +1,1612 @@
+TIronOxideClassic2
+v7
+r0
+t639858304.090790
+cCheck dependencies
+cProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Info.plist Info.plist
+cCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2 normal ppc
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2 normal i386
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2 normal x86_64
+cCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/MacOS/IronOxideClassic2 normal "ppc i386 x86_64"
+cRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc IronOxideClassic2.r
+cResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc
+cResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/IronOxideClassic2.rsrc
+cTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+c000000004A12495000000000000104EE
+t1242712400
+s66798
+i"AUBase.h"
+i"AUDispatch.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i
+i"CAAudioChannelLayout.h"
+i"CAHostTimeBase.h"
+i"CAVectorUnit.h"
+i"CAXException.h"
+i"AUBaseHelper.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.h
+c000000004A1249500000000000008203
+t1242712400
+s33283
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUScopeElement.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i"AUBuffer.h"
+i"CAMath.h"
+i"CAThreadSafeList.h"
+i"CAVectorUnit.h"
+i"CATrace.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+c000000004CC46C4D00000000000037D2
+t1287941197
+s14290
+i"AUBase.h"
+i"CAXException.h"
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.h
+c000000004A1249500000000000000D7E
+t1242712400
+s3454
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+c000000004A12495000000000000014D3
+t1242712400
+s5331
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.h
+c000000004A12495000000000000011E5
+t1242712400
+s4581
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+c000000004A1249500000000000000B01
+t1242712400
+s2817
+i"AUOutputElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.h
+c000000004A1249500000000000000B84
+t1242712400
+s2948
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+c000000004A12495000000000000042C4
+t1242712400
+s17092
+i"AUScopeElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.h
+c000000004A12495000000000000049D5
+t1242712400
+s18901
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+c000000004A1249500000000000001985
+t1242712400
+s6533
+i"ComponentBase.h"
+i"CAXException.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.h
+c000000004CC46C4D0000000000001FED
+t1287941197
+s8173
+i
+i"CADebugMacros.h"
+i
+i
+i
+i
+i"CoreAudioTypes.h"
+i"Components.h"
+i"AudioUnit.h"
+i"CAGuard.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+c000000004A12495000000000000041B8
+t1242712400
+s16824
+i"AUEffectBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.h
+c000000004A1249500000000000002520
+t1242712400
+s9504
+i"AUBase.h"
+i"AUSilentTimeout.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+c000000004A1249500000000000001347
+t1242712400
+s4935
+i"AUBaseHelper.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.h
+c000000004A1249500000000000000D1B
+t1242712400
+s3355
+i
+i
+i
+i
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+c000000004A1249500000000000001C88
+t1242712400
+s7304
+i"AUBuffer.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.h
+c000000004A12495000000000000021E4
+t1242712400
+s8676
+i
+i
+i
+i
+i"CAStreamBasicDescription.h"
+i"CAAutoDisposer.h"
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+c000000004A1249500000000000003FB0
+t1242712400
+s16304
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.h
+c000000004A1249500000000000001407
+t1242712400
+s5127
+i"CAHostTimeBase.h"
+i"CAMutex.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUSilentTimeout.h
+c000000004A1249500000000000000C53
+t1242712400
+s3155
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+c000000004A12495000000000000031DF
+t1242712400
+s12767
+i"CAAUParameter.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.h
+c000000004A1249500000000000001BD1
+t1242712400
+s7121
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomic.h
+c000000004A12495000000000000027B0
+t1242712400
+s10160
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomicStack.h
+c000000004A1249500000000000001A7C
+t1242712400
+s6780
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+c000000004A124950000000000000188C
+t1242712400
+s6284
+i"CAAudioChannelLayout.h"
+i"CAAutoDisposer.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.h
+c000000004A1249500000000000001E94
+t1242712400
+s7828
+i
+i
+i
+i
+i
+i
+i
+i"CADebugMacros.h"
+i"CAAutoDisposer.h"
+i"CAReferenceCounted.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAutoDisposer.h
+c000000004A1249500000000000002F87
+t1242712400
+s12167
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugMacros.h
+c000000004A1249500000000000004FAE
+t1242712400
+s20398
+i
+i"CoreAudioTypes.h"
+i"CADebugPrintf.h"
+i
+i"CAHostTimeBase.h"
+i"CAHostTimeBase.h"
+i"CADebugger.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugPrintf.h
+c000000004A124950000000000000111C
+t1242712400
+s4380
+i
+i"CoreAudioTypes.h"
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugger.h
+c000000004A1249500000000000000A9C
+t1242712400
+s2716
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAException.h
+c000000004A1249500000000000000DDC
+t1242712400
+s3548
+i
+i"CoreAudioTypes.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAGuard.h
+c000000004A12495000000000000012A2
+t1242712400
+s4770
+i"CAMutex.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAHostTimeBase.h
+c000000004A1249500000000000001C6C
+t1242712400
+s7276
+i
+i
+i
+i
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CALogMacros.h
+c000000004A12495000000000000019A2
+t1242712400
+s6562
+i"CADebugMacros.h"
+i"CADebugPrintf.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMath.h
+c000000004A1249500000000000000C6B
+t1242712400
+s3179
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+c000000004A12495000000000000030DE
+t1242712400
+s12510
+i"CAMutex.h"
+i
+i"CADebugMacros.h"
+i"CAException.h"
+i"CAHostTimeBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.h
+c000000004A124950000000000000128C
+t1242712400
+s4748
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAReferenceCounted.h
+c000000004A1249500000000000000C97
+t1242712400
+s3223
+i"CAAtomic.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+c000000004A1249500000000000004E32
+t1242712400
+s20018
+i"CAStreamBasicDescription.h"
+i"CAMath.h"
+i
+i
+i"CALogMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.h
+c000000004A1249500000000000002E6C
+t1242712400
+s11884
+i
+i
+i"CoreAudioTypes.h"
+i"CoreFoundation.h"
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAThreadSafeList.h
+c000000004A1249500000000000001D08
+t1242712400
+s7432
+i"CAAtomicStack.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+c000000004CC46C4D000000000000163D
+t1287941197
+s5693
+i"CAVectorUnit.h"
+i
+i"ippdefs.h"
+i"ippcore.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.h
+c000000004CC46C4D0000000000000EC3
+t1287941197
+s3779
+i
+i"CAVectorUnitTypes.h"
+i
+i
+i
+i"CFBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnitTypes.h
+c000000004A1249500000000000000A3C
+t1242712400
+s2620
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAXException.h
+c000000004A1249500000000000002965
+t1242712400
+s10597
+i
+i
+i
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/SDKs/MacOSX10.5.sdk
+c000000004A49A9E400000000000000EE
+t1246341604
+s238
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioUnitUtilities.h
+c000000004864A73B0000000000004DF8
+t1214555963
+s19960
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AUComponent.h
+c000000004864A72E0000000000003F7C
+t1214555950
+s16252
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.h
+c000000004864A72E00000000000003CC
+t1214555950
+s972
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.r
+c000000004864A72D000000000000026E
+t1214555949
+s622
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnitProperties.h
+c000000004864A72E0000000000018D55
+t1214555950
+s101717
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/CoreAudioTypes.h
+c0000000048649BCC000000000000E5E6
+t1214553036
+s58854
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h
+c00000000486499670000000000003438
+t1214552423
+s13368
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h
+c0000000048649968000000000000192A
+t1214552424
+s6442
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h
+c00000000486499690000000000000942
+t1214552425
+s2370
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h
+c0000000047BAD4120000000000000400
+t1203426322
+s1024
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers/Components.h
+c0000000048649BE6000000000000D5E1
+t1214553062
+s54753
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/TargetConditionals.h
+c000000004817F9680000000000002778
+t1209530728
+s10104
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/ctype.h
+c0000000047BA99310000000000002C3A
+t1203411249
+s11322
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/dlfcn.h
+c00000000487581E60000000000000AC7
+t1215660518
+s2759
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/errno.h
+c0000000047BA993000000000000003EB
+t1203411248
+s1003
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/libkern/OSAtomic.h
+c0000000047BA993000000000000024B9
+t1203411248
+s9401
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h
+c0000000047E8839E0000000000000746
+t1206420382
+s1862
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h
+c0000000047BA9932000000000000380F
+t1203411250
+s14351
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdio.h
+c0000000047BA99310000000000003D1D
+t1203411249
+s15645
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdlib.h
+c0000000047BA99310000000000002A79
+t1203411249
+s10873
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h
+c0000000047BA99320000000000001731
+t1203411250
+s5937
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/sysctl.h
+c0000000047E883D1000000000000795B
+t1206420433
+s31067
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/syslog.h
+c0000000047E883D100000000000021EC
+t1206420433
+s8684
+
+N/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
+c000000004EE0342D000000000051BA20
+t1323316269
+s5356064
+
+N/System/Library/Frameworks/AudioUnit.framework/AudioUnit
+c000000004EE033220000000000012150
+t1323316002
+s74064
+
+N/System/Library/Frameworks/CoreServices.framework/CoreServices
+c000000004C23F49F0000000000021710
+t1277424799
+s136976
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/English.lproj/InfoPlist.strings
+c00000000605576F3000000000000019C
+t1616213747
+s412
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp
+c00000000605576F3000000000000421D
+t1616213747
+s16925
+i"IronOxideClassic2.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.h
+c00000000605576F300000000000016EF
+t1616213747
+s5871
+i"AUEffectBase.h"
+i"IronOxideClassic2Version.h"
+i"AUDebugDispatcher.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.r
+c00000000605576F30000000000000CF1
+t1616213747
+s3313
+i
+i"IronOxideClassic2Version.h"
+i"AUResources.r"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2Version.h
+c00000000605576F30000000000000BC5
+t1616213747
+s3013
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o
+t1618165499
+s62760
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o
+t1618165501
+s2216
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o
+t1618165500
+s3596
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o
+t1618165499
+s288
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o
+t1618165498
+s5324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o
+t1618165500
+s19796
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o
+t1618165498
+s7552
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o
+t1618165498
+s5484
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o
+t1618165499
+s24616
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o
+t1618165500
+s8912
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o
+t1618165499
+s3452
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o
+t1618165499
+s4332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o
+t1618165500
+s8332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o
+t1618165500
+s1340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o
+t1618165499
+s4300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2
+t1618165501
+s110792
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o
+t1618165497
+s20448
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2.LinkFileList
+c0000000060733EF50000000000000B06
+t1618165493
+s2822
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o
+t1618165495
+s73140
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o
+t1618165497
+s2664
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o
+t1618165496
+s4340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o
+t1618165495
+s356
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o
+t1618165494
+s6360
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o
+t1618165496
+s22368
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o
+t1618165494
+s9176
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o
+t1618165495
+s6632
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o
+t1618165496
+s29532
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o
+t1618165497
+s10844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o
+t1618165496
+s4512
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o
+t1618165496
+s5376
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o
+t1618165496
+s10324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o
+t1618165496
+s1520
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o
+t1618165495
+s5080
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2
+t1618165497
+s115340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o
+t1618165494
+s31752
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2.LinkFileList
+c0000000060733EF50000000000000AF6
+t1618165493
+s2806
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o
+t1618165502
+s63236
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o
+t1618165503
+s2300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o
+t1618165503
+s3748
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o
+t1618165502
+s344
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o
+t1618165501
+s4456
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o
+t1618165503
+s20844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o
+t1618165502
+s7848
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o
+t1618165502
+s5712
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o
+t1618165503
+s25916
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o
+t1618165503
+s9460
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+t1618165503
+s3652
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o
+t1618165503
+s4556
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+t1618165503
+s9476
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o
+t1618165503
+s1284
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o
+t1618165502
+s4836
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2
+t1618165503
+s121720
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o
+t1618165501
+s21240
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2.LinkFileList
+c0000000060733EF50000000000000B26
+t1618165493
+s2854
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc
+t1618165504
+s572
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc
+t1618165504
+s572
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component
+t1618165504
+s102
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Info.plist
+t1618165493
+s1133
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/MacOS/IronOxideClassic2
+t1618165504
+s359288
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/PkgInfo
+t1618165493
+s8
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/English.lproj/InfoPlist.strings
+t1618165493
+s412
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/IronOxideClassic2.rsrc
+t1618165504
+s572
+
+NInfo.plist
+c00000000605576F30000000000000361
+t1616213747
+s865
+
+NIronOxideClassic2.exp
+c00000000605576F30000000000000018
+t1616213747
+s24
+
+CCheck dependencies
+r0
+lSLF07#2@18"Check dependencies639858293#639858293#0(0"0(0#1#0"8610778496#0"0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858296.919058
+e639858299.312926
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639858296#639858299#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8613816032#1301" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858300.105808
+e639858301.041566
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639858300#639858301#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8611420384#1314" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBaseHelper.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858299.297241
+e639858300.105656
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639858299#639858300#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8612362848#1306" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUBuffer.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858299.313065
+e639858299.342036
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639858299#639858299#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8610087712#1324" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDebugDispatcher.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858297.136318
+e639858298.155475
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639858297#639858298#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8610348000#1309" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUDispatch.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858298.862878
+e639858300.228574
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639858298#639858300#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8600237504#1317" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUEffectBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858297.465431
+e639858298.513877
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639858297#639858298#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8604416896#1317" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUInputElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858297.911711
+e639858298.862670
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639858297#639858298#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8611916640#1319" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUOutputElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858298.155627
+e639858299.693974
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639858298#639858299#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8608071936#1317" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/AUScopeElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858299.729447
+e639858300.583387
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639858299#639858300#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8600026944#1302" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAUParameter.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858299.342195
+e639858299.582061
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639858299#639858299#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8607754848#1316" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAAudioChannelLayout.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858299.582193
+e639858299.729301
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639858299#639858299#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8604064448#1290" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAMutex.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858299.694212
+e639858300.065141
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639858299#639858300#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8601200704#1324" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAStreamBasicDescription.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858300.065271
+e639858300.154576
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639858300#639858300#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8613436768#1300" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/CAVectorUnit.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858298.514029
+e639858299.297111
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639858298#639858299#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8603344160#1315" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/ComponentBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858296.634363
+e639858297.911566
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@106"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp639858296#639858297#0(0"0(0#0#98"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp8608132512#1361" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2-1DB483EC8D75827.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858293.631439
+e639858295.969737
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639858293#639858295#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8600490176#1308" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858296.506624
+e639858297.422063
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639858296#639858297#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8612024576#1321" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBaseHelper.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858295.640869
+e639858296.422058
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639858295#639858296#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8613929824#1313" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUBuffer.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858295.969871
+e639858295.998402
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639858295#639858296#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8610568992#1331" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDebugDispatcher.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858293.632400
+e639858294.613000
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639858293#639858294#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8600257952#1316" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUDispatch.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858295.533067
+e639858296.918909
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639858295#639858296#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8600322272#1324" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUEffectBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858293.633422
+e639858294.594749
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639858293#639858294#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8600102272#1324" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUInputElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858294.594897
+e639858295.532884
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639858294#639858295#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8603243520#1326" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUOutputElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858294.613149
+e639858296.127316
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639858294#639858296#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8602613664#1324" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/AUScopeElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858296.318546
+e639858297.136043
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639858296#639858297#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8590351648#1309" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAUParameter.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858295.998556
+e639858296.264633
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639858295#639858296#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8610078880#1323" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAAudioChannelLayout.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858296.127462
+e639858296.318403
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639858296#639858296#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8607820608#1297" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAMutex.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858296.264764
+e639858296.634208
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639858296#639858296#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8608598048#1331" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAStreamBasicDescription.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858296.422204
+e639858296.506462
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639858296#639858296#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8613765088#1307" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/CAVectorUnit.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858294.909943
+e639858295.640712
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639858294#639858295#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8600890528#1322" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/ComponentBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858293.630547
+e639858294.909808
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@106"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp639858293#639858294#0(0"0(0#0#98"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp8600559296#1368" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2-1DB483EC8D75827.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858300.228729
+e639858302.490751
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639858300#639858302#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8605882752#1307" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858303.349827
+e639858303.974842
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639858303#639858303#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8610429632#1320" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBaseHelper.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858302.490888
+e639858303.260280
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639858302#639858303#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8606893344#1312" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUBuffer.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858302.802726
+e639858302.832849
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639858302#639858302#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8603774208#1330" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDebugDispatcher.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858300.583638
+e639858301.563938
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639858300#639858301#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8601288000#1315" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUDispatch.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858302.312574
+e639858303.595589
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639858302#639858303#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8611215584#1323" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUEffectBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858301.088588
+e639858302.071797
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639858301#639858302#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8606913088#1323" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUInputElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858301.356905
+e639858302.312325
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639858301#639858302#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8601324128#1325" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUOutputElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858301.564084
+e639858303.091253
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639858301#639858303#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8599461376#1323" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/AUScopeElement.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858303.208994
+e639858303.830231
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639858303#639858303#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8606667872#1308" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAUParameter.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858302.833005
+e639858303.069525
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639858302#639858303#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8603316512#1322" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAAudioChannelLayout.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858303.069670
+e639858303.208849
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639858303#639858303#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8613658848#1296" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAMutex.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858303.091407
+e639858303.439500
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639858303#639858303#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8611025312#1330" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAStreamBasicDescription.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858303.260425
+e639858303.349684
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639858303#639858303#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8603823840#1306" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/CAVectorUnit.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858302.071930
+e639858302.802579
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639858302#639858302#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8613710080#1321" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/ComponentBase.o
0#
+
+CCompileC build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858300.154732
+e639858301.356767
+r1
+xCompileC
+xbuild/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@106"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp639858300#639858301#0(0"0(0#0#98"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp8608806496#1367" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/IronOxideClassic2.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2-1DB483EC8D75827.o
0#
+
+CCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+s639858293.606965
+e639858293.630447
+r1
+xCopyStringsFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/English.lproj/InfoPlist.strings
+xEnglish.lproj/InfoPlist.strings
+lSLF07#2@36"Copy English.lproj/InfoPlist.strings639858293#639858293#0(0"0(0#0#108"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/English.lproj/InfoPlist.strings8600789568#460" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-16 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/English.lproj
0#
+
+CCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/MacOS/IronOxideClassic2 normal "ppc i386 x86_64"
+s639858304.001755
+e639858304.005085
+r1
+xCreateUniversalBinary
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/MacOS/IronOxideClassic2
+xnormal
+xppc i386 x86_64
+lSLF07#2@121"CreateUniversalBinary build/Release/IronOxideClassic2.component/Contents/MacOS/IronOxideClassic2 normal "ppc i386 x86_64"639858304#639858304#0(0"0(0#0#92"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/ppc i386 x86_648605901632#802" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
/usr/bin/lipo -create /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2 -output /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/MacOS/IronOxideClassic2
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2 normal i386
+s639858301.041712
+e639858301.088411
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2
+xnormal
+xi386
+lSLF07#2@181"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2639858301#639858301#0(0"0(0#0#0"8603791488#930" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch i386 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2.LinkFileList -exported_symbols_list IronOxideClassic2.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/i386/IronOxideClassic2
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2 normal ppc
+s639858297.422191
+e639858297.465272
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2
+xnormal
+xppc
+lSLF07#2@180"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2639858297#639858297#0(0"0(0#0#0"8600806112#927" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch ppc -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2.LinkFileList -exported_symbols_list IronOxideClassic2.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/ppc/IronOxideClassic2
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2 normal x86_64
+s639858303.974940
+e639858304.001653
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2
+xnormal
+xx86_64
+lSLF07#2@183"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2639858303#639858304#0(0"0(0#0#0"8613162944#936" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch x86_64 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2.LinkFileList -exported_symbols_list IronOxideClassic2.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/Objects-normal/x86_64/IronOxideClassic2
0#
+
+CProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Info.plist Info.plist
+s639858293.603986
+e639858293.606894
+r1
+xProcessInfoPlistFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Info.plist
+xInfo.plist
+lSLF07#2@18"Process Info.plist639858293#639858293#0(0"0(0#0#87"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/Info.plist8600935808#452" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
builtin-infoPlistUtility Info.plist -genpkginfo /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/PkgInfo -expandbuildsettings -platform macosx -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Info.plist
0#
+
+CResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc
+s639858304.065274
+e639858304.075753
+r1
+xResMergerCollector
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc
+lSLF07#2@207"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc639858304#639858304#0(0"0(0#0#0"8604040416#527" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
/Developer/Tools/ResMerger -dstIs DF /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc
0#
+
+CResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/IronOxideClassic2.rsrc
+s639858304.075849
+e639858304.087936
+r1
+xResMergerProduct
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/IronOxideClassic2.rsrc
+lSLF07#2@181"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/IronOxideClassic2.rsrc639858304#639858304#0(0"0(0#0#0"8603843808#476" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
/Developer/Tools/ResMerger /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/IronOxideClassic2.rsrc -dstIs DF -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component/Contents/Resources/IronOxideClassic2.rsrc
0#
+
+CRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc IronOxideClassic2.r
+s639858304.005169
+e639858304.065164
+r1
+xRez
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc
+xIronOxideClassic2.r
+lSLF07#2@23"Rez IronOxideClassic2.r639858304#639858304#0(0"0(0#0#96"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.r8604245344#1256" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
/Developer/Tools/Rez -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/IronOxideClassic2.build/Release/IronOxideClassic2.build/ResourceManagerResources/Objects/IronOxideClassic2-F2DE06932BC77829.rsrc -d SystemSevenOrLater=1 -useDF -script Roman -d ppc_YES -d i386_YES -d x86_64_YES -I /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Versions/A/Headers -I /Developer/Examples/CoreAudio/AudioUnits/AUPublic/AUBase -arch ppc -arch i386 -arch x86_64 -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase -i /Developer/Extras/CoreAudio/PublicUtility -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/include -isysroot /Developer/SDKs/MacOSX10.5.sdk /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/IronOxideClassic2.r
0#
+
+CTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component
+s639858304.088055
+e639858304.090755
+r1
+xTouch
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component
+lSLF07#2@124"Touch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component639858304#639858304#0(0"0(0#0#0"8600943968#225" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2
/usr/bin/touch -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/IronOxideClassic2/build/Release/IronOxideClassic2.component
0#
+
diff --git a/plugins/MacAU/Mackity/Mackity.xcodeproj/christopherjohnson.pbxuser b/plugins/MacAU/Mackity/Mackity.xcodeproj/christopherjohnson.pbxuser
index 4eb156d3d..a6c3d30b5 100644
--- a/plugins/MacAU/Mackity/Mackity.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacAU/Mackity/Mackity.xcodeproj/christopherjohnson.pbxuser
@@ -51,20 +51,30 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 638751868;
- PBXWorkspaceStateSaveDate = 638751868;
+ PBXPerProjectTemplateStateSaveDate = 639328479;
+ PBXWorkspaceStateSaveDate = 639328479;
};
perUserProjectItems = {
+ 8B061B14261B64A40033A4AB /* PBXTextBookmark */ = 8B061B14261B64A40033A4AB /* PBXTextBookmark */;
8B7EC0A726124BA400584E39 /* PlistBookmark */ = 8B7EC0A726124BA400584E39 /* PlistBookmark */;
8B7EC1222612925C00584E39 /* PBXTextBookmark */ = 8B7EC1222612925C00584E39 /* PBXTextBookmark */;
8B7EC136261293DB00584E39 /* PBXTextBookmark */ = 8B7EC136261293DB00584E39 /* PBXTextBookmark */;
- 8B7EC152261294E200584E39 /* PBXTextBookmark */ = 8B7EC152261294E200584E39 /* PBXTextBookmark */;
8B7EC153261294E200584E39 /* PBXTextBookmark */ = 8B7EC153261294E200584E39 /* PBXTextBookmark */;
};
sourceControlManager = 8BD3CCB8148830B20062E48C /* Source Control */;
userBuildSettings = {
};
};
+ 8B061B14261B64A40033A4AB /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* Mackity.cpp */;
+ name = "Mackity.cpp: 243";
+ rLen = 0;
+ rLoc = 10653;
+ rType = 0;
+ vrLen = 406;
+ vrLoc = 10039;
+ };
8B7EC0A726124BA400584E39 /* PlistBookmark */ = {
isa = PlistBookmark;
fRef = 8D01CCD10486CAD60068D4B7 /* Info.plist */;
@@ -97,16 +107,6 @@
vrLen = 332;
vrLoc = 2755;
};
- 8B7EC152261294E200584E39 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* Mackity.cpp */;
- name = "Mackity.cpp: 245";
- rLen = 0;
- rLoc = 10653;
- rType = 0;
- vrLen = 352;
- vrLoc = 10455;
- };
8B7EC153261294E200584E39 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 8BA05A660720730100365D66 /* Mackity.cpp */;
@@ -119,26 +119,26 @@
};
8BA05A660720730100365D66 /* Mackity.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1344, 4590}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1344, 4608}}";
sepNavSelRange = "{10653, 0}";
- sepNavVisRange = "{9901, 544}";
- sepNavWindowFrame = "{{492, 73}, {908, 805}}";
+ sepNavVisRange = "{10039, 406}";
+ sepNavWindowFrame = "{{57, 67}, {908, 805}}";
};
};
8BA05A690720730100365D66 /* MackityVersion.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1056, 1062}}";
sepNavSelRange = "{2845, 0}";
- sepNavVisRange = "{1158, 1786}";
+ sepNavVisRange = "{1055, 1889}";
sepNavWindowFrame = "{{15, 68}, {908, 805}}";
};
};
8BC6025B073B072D006C4272 /* Mackity.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1029, 2646}}";
- sepNavSelRange = "{2855, 0}";
- sepNavVisRange = "{2755, 332}";
- sepNavWindowFrame = "{{480, 61}, {908, 805}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1146, 2880}}";
+ sepNavSelRange = "{5164, 106}";
+ sepNavVisRange = "{4200, 1094}";
+ sepNavWindowFrame = "{{12, 67}, {908, 805}}";
};
};
8BD3CCB8148830B20062E48C /* Source Control */ = {
diff --git a/plugins/MacAU/Mackity/Mackity.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacAU/Mackity/Mackity.xcodeproj/christopherjohnson.perspectivev3
index 6fe2d6ff3..cba1621c6 100644
--- a/plugins/MacAU/Mackity/Mackity.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacAU/Mackity/Mackity.xcodeproj/christopherjohnson.perspectivev3
@@ -326,7 +326,7 @@
288
RubberWindowFrame
- 542 208 841 654 0 0 1440 878
+ 38 198 841 654 0 0 1440 878
Module
PBXSmartGroupTreeModule
@@ -354,13 +354,13 @@
_historyCapacity
0
bookmark
- 8B7EC153261294E200584E39
+ 8B061B14261B64A40033A4AB
history
8B7EC0A726124BA400584E39
8B7EC1222612925C00584E39
8B7EC136261293DB00584E39
- 8B7EC152261294E200584E39
+ 8B7EC153261294E200584E39
SplitCount
@@ -374,18 +374,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {531, 188}}
+ {{0, 0}, {531, 173}}
RubberWindowFrame
- 542 208 841 654 0 0 1440 878
+ 38 198 841 654 0 0 1440 878
Module
PBXNavigatorGroup
Proportion
- 188pt
+ 173pt
Proportion
- 420pt
+ 435pt
Tabs
@@ -399,9 +399,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {531, 393}}
+ {{10, 27}, {531, 408}}
RubberWindowFrame
- 542 208 841 654 0 0 1440 878
+ 38 198 841 654 0 0 1440 878
Module
XCDetailModule
@@ -483,11 +483,11 @@
TableOfContents
- 8B7EC154261294E200584E39
+ 8B061B15261B64A40033A4AB
1CA23ED40692098700951B8B
- 8B7EC155261294E200584E39
+ 8B061B16261B64A40033A4AB
8BD7274A1D46E5A5000176F0
- 8B7EC156261294E200584E39
+ 8B061B17261B64A40033A4AB
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -660,7 +660,7 @@
StatusbarIsVisible
TimeStamp
- 638751970.75393295
+ 639329444.60070002
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -677,11 +677,11 @@
5
WindowOrderList
- 8B7EC157261294E200584E39
+ 8B061B18261B64A40033A4AB
/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Mackity/Mackity.xcodeproj
WindowString
- 542 208 841 654 0 0 1440 878
+ 38 198 841 654 0 0 1440 878
WindowToolsV3
diff --git a/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/categories.pbxbtree b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/categories.pbxbtree
new file mode 100644
index 000000000..d3f6bb3b6
Binary files /dev/null and b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/categories.pbxbtree differ
diff --git a/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/cdecls.pbxbtree b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/cdecls.pbxbtree
new file mode 100644
index 000000000..56feefd3e
Binary files /dev/null and b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/cdecls.pbxbtree differ
diff --git a/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/decls.pbxbtree b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/decls.pbxbtree
new file mode 100644
index 000000000..b6cbbe784
Binary files /dev/null and b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/decls.pbxbtree differ
diff --git a/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/files.pbxbtree b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/files.pbxbtree
new file mode 100644
index 000000000..b6e04a307
Binary files /dev/null and b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/files.pbxbtree differ
diff --git a/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/imports.pbxbtree b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/imports.pbxbtree
new file mode 100644
index 000000000..e21c939be
Binary files /dev/null and b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/imports.pbxbtree differ
diff --git a/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/pbxindex.header b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/pbxindex.header
new file mode 100644
index 000000000..1c947cc4f
Binary files /dev/null and b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/pbxindex.header differ
diff --git a/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/protocols.pbxbtree b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/protocols.pbxbtree
new file mode 100644
index 000000000..d3f6bb3b6
Binary files /dev/null and b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/protocols.pbxbtree differ
diff --git a/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/refs.pbxbtree b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/refs.pbxbtree
new file mode 100644
index 000000000..9941900af
Binary files /dev/null and b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/refs.pbxbtree differ
diff --git a/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/strings.pbxstrings/control b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/strings.pbxstrings/control
new file mode 100644
index 000000000..abd539117
Binary files /dev/null and b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/strings.pbxstrings/control differ
diff --git a/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/strings.pbxstrings/strings b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/strings.pbxstrings/strings
new file mode 100644
index 000000000..97c82bb98
Binary files /dev/null and b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/strings.pbxstrings/strings differ
diff --git a/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/subclasses.pbxbtree b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/subclasses.pbxbtree
new file mode 100644
index 000000000..9e9563661
Binary files /dev/null and b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/subclasses.pbxbtree differ
diff --git a/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/symbols0.pbxsymbols b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/symbols0.pbxsymbols
new file mode 100644
index 000000000..a4f7aeee7
Binary files /dev/null and b/plugins/MacAU/Mackity/build/Mackity.build/Mackity.pbxindex/symbols0.pbxsymbols differ
diff --git a/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.pbxuser b/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.pbxuser
index bec1b5b8f..f8b860a58 100755
--- a/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,16 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 581159599;
- PBXWorkspaceStateSaveDate = 581159599;
+ PBXPerProjectTemplateStateSaveDate = 639858343;
+ PBXWorkspaceStateSaveDate = 639858343;
};
perUserProjectItems = {
8B105FC822A3CAB900DC1451 /* PBXTextBookmark */ = 8B105FC822A3CAB900DC1451 /* PBXTextBookmark */;
- 8B2C117E229CB92D0051C68A /* PBXTextBookmark */ = 8B2C117E229CB92D0051C68A /* PBXTextBookmark */;
8B8BEC41229894AD006DC295 /* PlistBookmark */ = 8B8BEC41229894AD006DC295 /* PlistBookmark */;
8B8BEC672298950C006DC295 /* PBXTextBookmark */ = 8B8BEC672298950C006DC295 /* PBXTextBookmark */;
+ 8BA629CA262376D900483AAF /* PBXBookmark */ = 8BA629CA262376D900483AAF /* PBXBookmark */;
+ 8BA629EA262378C000483AAF /* PBXTextBookmark */ = 8BA629EA262378C000483AAF /* PBXTextBookmark */;
+ 8BA629F0262378C000483AAF /* PBXTextBookmark */ = 8BA629F0262378C000483AAF /* PBXTextBookmark */;
};
sourceControlManager = 8BD3CCB8148830B20062E48C /* Source Control */;
userBuildSettings = {
@@ -72,16 +74,6 @@
vrLen = 231;
vrLoc = 12833;
};
- 8B2C117E229CB92D0051C68A /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* PodcastDeluxe.cpp */;
- name = "PodcastDeluxe.cpp: 207";
- rLen = 0;
- rLoc = 9129;
- rType = 0;
- vrLen = 236;
- vrLoc = 12833;
- };
8B8BEC41229894AD006DC295 /* PlistBookmark */ = {
isa = PlistBookmark;
fRef = 8D01CCD10486CAD60068D4B7 /* Info.plist */;
@@ -106,10 +98,10 @@
};
8BA05A660720730100365D66 /* PodcastDeluxe.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {586, 5109}}";
+ sepNavIntBoundsRect = "{{0, 0}, {633, 7038}}";
sepNavSelRange = "{9129, 0}";
- sepNavVisRange = "{12833, 231}";
- sepNavWindowFrame = "{{171, 59}, {1269, 819}}";
+ sepNavVisRange = "{12833, 141}";
+ sepNavWindowFrame = "{{48, -369}, {1269, 819}}";
};
};
8BA05A690720730100365D66 /* PodcastDeluxeVersion.h */ = {
@@ -120,12 +112,36 @@
sepNavWindowFrame = "{{15, 57}, {1269, 819}}";
};
};
+ 8BA629CA262376D900483AAF /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 8BA05A660720730100365D66 /* PodcastDeluxe.cpp */;
+ };
+ 8BA629EA262378C000483AAF /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* PodcastDeluxe.cpp */;
+ name = "PodcastDeluxe.cpp: 207";
+ rLen = 0;
+ rLoc = 9129;
+ rType = 0;
+ vrLen = 141;
+ vrLoc = 12833;
+ };
+ 8BA629F0262378C000483AAF /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* PodcastDeluxe.cpp */;
+ name = "PodcastDeluxe.cpp: 207";
+ rLen = 0;
+ rLoc = 9129;
+ rType = 0;
+ vrLen = 1780;
+ vrLoc = 6412;
+ };
8BC6025B073B072D006C4272 /* PodcastDeluxe.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1222, 1989}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1222, 2754}}";
sepNavSelRange = "{5011, 0}";
- sepNavVisRange = "{1157, 2141}";
- sepNavWindowFrame = "{{628, 44}, {1269, 819}}";
+ sepNavVisRange = "{4757, 840}";
+ sepNavWindowFrame = "{{171, 44}, {1269, 819}}";
};
};
8BD3CCB8148830B20062E48C /* Source Control */ = {
diff --git a/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.perspectivev3
index 149898f58..2a0fddb98 100755
--- a/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.perspectivev3
@@ -222,7 +222,48 @@
OpenEditors
-
+
+
+ Content
+
+ PBXProjectModuleGUID
+ 8BA629EE262378C000483AAF
+ PBXProjectModuleLabel
+ PodcastDeluxe.cpp
+ PBXSplitModuleInNavigatorKey
+
+ Split0
+
+ PBXProjectModuleGUID
+ 8BA629EF262378C000483AAF
+ PBXProjectModuleLabel
+ PodcastDeluxe.cpp
+ _historyCapacity
+ 0
+ bookmark
+ 8BA629F0262378C000483AAF
+ history
+
+ 8BA629CA262376D900483AAF
+
+
+ SplitCount
+ 1
+
+ StatusBarVisibility
+
+
+ Geometry
+
+ Frame
+ {{0, 20}, {1269, 722}}
+ PBXModuleWindowStatusBarHidden2
+
+ RubberWindowFrame
+ 48 -313 1269 763 0 0 1440 878
+
+
+
PerspectiveWidths
841
@@ -326,7 +367,7 @@
288
RubberWindowFrame
- 599 206 841 654 0 0 1440 878
+ 49 2 841 654 0 0 1440 878
Module
PBXSmartGroupTreeModule
@@ -354,12 +395,12 @@
_historyCapacity
0
bookmark
- 8B105FC822A3CAB900DC1451
+ 8BA629EA262378C000483AAF
history
8B8BEC41229894AD006DC295
8B8BEC672298950C006DC295
- 8B2C117E229CB92D0051C68A
+ 8B105FC822A3CAB900DC1451
SplitCount
@@ -373,18 +414,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {531, 158}}
+ {{0, 0}, {531, 142}}
RubberWindowFrame
- 599 206 841 654 0 0 1440 878
+ 49 2 841 654 0 0 1440 878
Module
PBXNavigatorGroup
Proportion
- 158pt
+ 142pt
Proportion
- 450pt
+ 466pt
Tabs
@@ -398,9 +439,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {531, 423}}
+ {{10, 27}, {531, 439}}
RubberWindowFrame
- 599 206 841 654 0 0 1440 878
+ 49 2 841 654 0 0 1440 878
Module
XCDetailModule
@@ -482,11 +523,11 @@
TableOfContents
- 8B105FC922A3CAB900DC1451
+ 8BA629EB262378C000483AAF
1CA23ED40692098700951B8B
- 8B105FCA22A3CAB900DC1451
+ 8BA629EC262378C000483AAF
8BD7274A1D46E5A5000176F0
- 8B105FCB22A3CAB900DC1451
+ 8BA629ED262378C000483AAF
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -659,7 +700,7 @@
StatusbarIsVisible
TimeStamp
- 581159609.27256
+ 639858880.85064101
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -676,11 +717,11 @@
5
WindowOrderList
- 8B105FCC22A3CAB900DC1451
- /Users/christopherjohnson/Desktop/Plugins/MacAU/PodcastDeluxe/PodcastDeluxe.xcodeproj
+ 8BA629EE262378C000483AAF
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.xcodeproj
WindowString
- 599 206 841 654 0 0 1440 878
+ 49 2 841 654 0 0 1440 878
WindowToolsV3
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/categories.pbxbtree b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/categories.pbxbtree
new file mode 100644
index 000000000..d3f6bb3b6
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/categories.pbxbtree differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/cdecls.pbxbtree b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/cdecls.pbxbtree
new file mode 100644
index 000000000..f7c7d3b68
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/cdecls.pbxbtree differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/decls.pbxbtree b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/decls.pbxbtree
new file mode 100644
index 000000000..6aa905f4a
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/decls.pbxbtree differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/files.pbxbtree b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/files.pbxbtree
new file mode 100644
index 000000000..59aefb334
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/files.pbxbtree differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/imports.pbxbtree b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/imports.pbxbtree
new file mode 100644
index 000000000..82b9c541c
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/imports.pbxbtree differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/pbxindex.header b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/pbxindex.header
new file mode 100644
index 000000000..cf8033ddd
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/pbxindex.header differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/protocols.pbxbtree b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/protocols.pbxbtree
new file mode 100644
index 000000000..d3f6bb3b6
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/protocols.pbxbtree differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/refs.pbxbtree b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/refs.pbxbtree
new file mode 100644
index 000000000..7bbf27891
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/refs.pbxbtree differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/strings.pbxstrings/control b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/strings.pbxstrings/control
new file mode 100644
index 000000000..8e5fcfd8c
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/strings.pbxstrings/control differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/strings.pbxstrings/strings b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/strings.pbxstrings/strings
new file mode 100644
index 000000000..23993cd8a
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/strings.pbxstrings/strings differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/subclasses.pbxbtree b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/subclasses.pbxbtree
new file mode 100644
index 000000000..04aa06212
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/subclasses.pbxbtree differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/symbols0.pbxsymbols b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/symbols0.pbxsymbols
new file mode 100644
index 000000000..f316fce3a
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/PodcastDeluxe.pbxindex/symbols0.pbxsymbols differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o
new file mode 100644
index 000000000..a20eddb1a
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o
new file mode 100644
index 000000000..48e877fb9
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o
new file mode 100644
index 000000000..2fce9264d
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o
new file mode 100644
index 000000000..24b573566
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o
new file mode 100644
index 000000000..7c4ddea60
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o
new file mode 100644
index 000000000..72de6e545
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o
new file mode 100644
index 000000000..0de7107c4
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o
new file mode 100644
index 000000000..4805b497c
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o
new file mode 100644
index 000000000..a6d690efa
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o
new file mode 100644
index 000000000..d180f7727
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o
new file mode 100644
index 000000000..d331fbc18
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o
new file mode 100644
index 000000000..262dc32f7
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o
new file mode 100644
index 000000000..0cfd9b30e
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o
new file mode 100644
index 000000000..263571618
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o
new file mode 100644
index 000000000..62df2c846
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe
new file mode 100755
index 000000000..5177a50e9
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o
new file mode 100644
index 000000000..fb7566922
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe.LinkFileList b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe.LinkFileList
new file mode 100644
index 000000000..92300dc00
--- /dev/null
+++ b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o
new file mode 100644
index 000000000..30cbbab77
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o
new file mode 100644
index 000000000..4a424d17b
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o
new file mode 100644
index 000000000..132b8e314
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o
new file mode 100644
index 000000000..a3eb3b0c1
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o
new file mode 100644
index 000000000..c2dfc5807
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o
new file mode 100644
index 000000000..4353d8250
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o
new file mode 100644
index 000000000..feecbbb7e
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o
new file mode 100644
index 000000000..70323f97b
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o
new file mode 100644
index 000000000..5057b57e2
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o
new file mode 100644
index 000000000..b6ffa244f
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o
new file mode 100644
index 000000000..97f98ac2f
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o
new file mode 100644
index 000000000..935e0bfd6
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o
new file mode 100644
index 000000000..b8b51d753
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o
new file mode 100644
index 000000000..4ce4ed3cd
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o
new file mode 100644
index 000000000..9bafdb4fb
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe
new file mode 100755
index 000000000..99ae3fe55
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o
new file mode 100644
index 000000000..651716dc9
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe.LinkFileList b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe.LinkFileList
new file mode 100644
index 000000000..370a90544
--- /dev/null
+++ b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o
new file mode 100644
index 000000000..09eceaa64
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o
new file mode 100644
index 000000000..211d87b5c
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o
new file mode 100644
index 000000000..5fc0e15be
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o
new file mode 100644
index 000000000..8e7087417
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o
new file mode 100644
index 000000000..5ce3e81d2
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o
new file mode 100644
index 000000000..7e2b03180
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o
new file mode 100644
index 000000000..3ac5e6806
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o
new file mode 100644
index 000000000..9ee53add2
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o
new file mode 100644
index 000000000..9567a9a86
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o
new file mode 100644
index 000000000..c323b43d1
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o
new file mode 100644
index 000000000..83a99fa40
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o
new file mode 100644
index 000000000..2644b82ff
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o
new file mode 100644
index 000000000..40bba150f
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o
new file mode 100644
index 000000000..3c21a0eac
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o
new file mode 100644
index 000000000..01e70c71b
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe
new file mode 100755
index 000000000..28e4ba015
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o
new file mode 100644
index 000000000..21188b6d4
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe.LinkFileList b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe.LinkFileList
new file mode 100644
index 000000000..968eb7884
--- /dev/null
+++ b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.dep b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.dep
new file mode 100644
index 000000000..e3455e560
--- /dev/null
+++ b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.dep
@@ -0,0 +1,59 @@
+54033a2c9ab8ecdd4d859993f20eb375 7d80827dbe291eeb71f7dab35658a604 ffffffffffffffffffffffffffffffff 102 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component
+311ebe359d34616c0af3b948b7fffef4 e03f0f73f181ee62529c64c7aeaf491d ffffffffffffffffffffffffffffffff 556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/PodcastDeluxe.rsrc
+5590fb2e7d594645a0cbdf4f55da1e23 19a820e73a79631e8e7016d16b6b6689 ffffffffffffffffffffffffffffffff 342448 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/MacOS/PodcastDeluxe
+00000000605576f3000000000000018c c91a50a3d178307b3b518d82d5ef7dba ffffffffffffffffffffffffffffffff 396 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/English.lproj/InfoPlist.strings
+00000000000000000000000000000000 1acc2794b5a04cb8f8eed58dffd4aa4f ffffffffffffffffffffffffffffffff 8 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/PkgInfo
+00000000000000000000000000000000 1acc2794b5a04cb8f8eed58dffd4aa4f ffffffffffffffffffffffffffffffff 1125 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Info.plist
+5abda0cf60514143b6e7d5d8d1a3c15d 6ba31efafd65202fbc146c90665c3fa9 ffffffffffffffffffffffffffffffff 556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc
+000000004864a72d0000000000000502 5abda0cf2835e66eb6e7d5d8d1a3c45f ffffffffffffffffffffffffffffffff 556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc
+5418ef0cf7104f2d1121fbfb6cb36d52 aeaedae6542bc78926dfa1d8a6c9358a ffffffffffffffffffffffffffffffff 113072 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe
+7a6426b338eb87a1c83fe5832c1126c0 9b38e862b0f36b3f8980820e0c5dd124 ffffffffffffffffffffffffffffffff 110396 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe
+0d4f395aac35cbe19b9359b92202bd34 4335394ffa4fe99e4d19bb589dee0c2b ffffffffffffffffffffffffffffffff 110824 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe
+0000000009085486000000000001b528 767e0d8fc663a3bba3285747c56a46c5 ffffffffffffffffffffffffffffffff 2300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o
+0000000009085486000000000001b528 0910c34e5e30bf7b00ba73de24d795a5 ffffffffffffffffffffffffffffffff 2216 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o
+0000000009085486000000000001b528 25389ad7b48708650bba1a1c9eaeab11 ffffffffffffffffffffffffffffffff 2664 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o
+000000000d89aa8e0000000000006fbd 5f43093665c470fba0aefcd8c221ae2d ffffffffffffffffffffffffffffffff 1284 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 4303022b1c52faa61a283732c8462333 ffffffffffffffffffffffffffffffff 1340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 33bac4c86d54400f426c920e5af0465a ffffffffffffffffffffffffffffffff 1520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o
+000000004864a73b00000000000067f6 18c0b406a86ffb0dfb300a3c341e0051 ffffffffffffffffffffffffffffffff 9460 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o
+000000004864a73b00000000000067f6 61d1022ada061bb195c328f15f86fc1e ffffffffffffffffffffffffffffffff 8912 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o
+000000004864a73b00000000000067f6 dfd30bbfd1d39ac89f78b343a1d579d9 ffffffffffffffffffffffffffffffff 10844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o
+00000000459e514c000000000000b0e9 86244a54682f4dc5b6f532d50b357f12 ffffffffffffffffffffffffffffffff 9476 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 78257f4664027ab0c6f9152112f8bda6 ffffffffffffffffffffffffffffffff 8332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 7d96789e0408e60f3cc79ba2ebec574b ffffffffffffffffffffffffffffffff 10324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o
+000000000fde02b3000000000000e8c5 40e2279d42d77a6594bd3745167a0aeb ffffffffffffffffffffffffffffffff 4556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o
+000000000fde02b3000000000000e8c5 3bf2155d432544a2db609f6cbeae5ec8 ffffffffffffffffffffffffffffffff 4332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o
+000000000fde02b3000000000000e8c5 67808ac196a829139094e1e8e5691e50 ffffffffffffffffffffffffffffffff 5376 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o
+000000000224c870000000000000a1ca 79ea2a542c2b4df107af94bd6a1b8ad4 ffffffffffffffffffffffffffffffff 3652 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca e3eb5a95f66ff848c37d2f240f1acb83 ffffffffffffffffffffffffffffffff 3452 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca 46cf2c990d778b38e820f91ce8d9367f ffffffffffffffffffffffffffffffff 4512 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o
+000000000b2c9e1300000000000045af 4e26b9f798b57d9b684a38d1b2713bbd ffffffffffffffffffffffffffffffff 344 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 9e954956b66605d9adca0ec0ee0f06bb ffffffffffffffffffffffffffffffff 288 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 3d7217d77d179d126357fd923eee5b76 ffffffffffffffffffffffffffffffff 356 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o
+0000000000735ce0000000000000debb 26041f7c1f06b0e30df3fda5ca6e08e2 ffffffffffffffffffffffffffffffff 3748 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o
+0000000000735ce0000000000000debb 5407b18b1d893c8372166da91c817613 ffffffffffffffffffffffffffffffff 3596 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o
+0000000000735ce0000000000000debb 8462a4733dac5bfabcac9bfd80efecfd ffffffffffffffffffffffffffffffff 4340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o
+000000000b7e84bf00000000000078d4 cf1ced95200b38d8664beb169cee97f1 ffffffffffffffffffffffffffffffff 20844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o
+000000000b7e84bf00000000000078d4 2c64db6fccd451bf1e7506410cda572f ffffffffffffffffffffffffffffffff 19796 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o
+000000000b7e84bf00000000000078d4 56c8e41c27f2e65f2bc179abb54a0752 ffffffffffffffffffffffffffffffff 22368 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o
+000000004cd54809000000000000c180 460603bb07f964dca2f0bdfab299875b ffffffffffffffffffffffffffffffff 4836 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o
+000000004cd54809000000000000c180 91b6cc5ef87d03a0ef0a0468b36942a6 ffffffffffffffffffffffffffffffff 4300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o
+000000004cd54809000000000000c180 9caa5fcfb7eee2c34e1742103075a854 ffffffffffffffffffffffffffffffff 5080 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o
+000000000257e57600000000000074ab 40d16e8396e6f57b2200c3a2a227b0c0 ffffffffffffffffffffffffffffffff 25916 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o
+000000000257e57600000000000074ab 97d5c4fa2b03c8261eb273d08ed84bdf ffffffffffffffffffffffffffffffff 24616 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o
+000000000257e57600000000000074ab 71fa22981d0de8e99d90d517400a1e72 ffffffffffffffffffffffffffffffff 29532 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o
+00000000459e20a7000000000000dea0 70ebcf8963d207ce937ae97d652f4802 ffffffffffffffffffffffffffffffff 5712 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o
+00000000459e20a7000000000000dea0 7a5c860554ee2d200c40ee85592fae95 ffffffffffffffffffffffffffffffff 5484 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o
+00000000459e20a7000000000000dea0 ecfbd2fb5d982a23a897ed0ac23d44d7 ffffffffffffffffffffffffffffffff 6632 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o
+000000000b7e84bf00000000000004cc dc72a51eeceb39adcecd1894200758f9 ffffffffffffffffffffffffffffffff 7848 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o
+000000000b7e84bf00000000000004cc 9007688024f3b4eb12ff615e9e54e47e ffffffffffffffffffffffffffffffff 7552 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o
+000000000b7e84bf00000000000004cc 2944c678b4058fd89e9d9291ee21d66f ffffffffffffffffffffffffffffffff 9176 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o
+0000000004a0f5680000000000000b33 d6f9b201963837f435e727305cdf8c3d ffffffffffffffffffffffffffffffff 4456 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o
+0000000004a0f5680000000000000b33 b4868e094e1c29ae4f6fc11c38315d00 ffffffffffffffffffffffffffffffff 5324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o
+0000000004a0f5680000000000000b33 9dc46f18195d822fb4d8ca9ca8f016db ffffffffffffffffffffffffffffffff 6360 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o
+00000000413e98c60000000000017e35 3e69b8d9bfdfe1b869638d65e6e8359f ffffffffffffffffffffffffffffffff 63236 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o
+00000000413e98c60000000000017e35 82f45c90cc2390cb3abec7d9f1f362c7 ffffffffffffffffffffffffffffffff 62760 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o
+00000000413e98c60000000000017e35 672925c179458d48a9587f07ad134fe3 ffffffffffffffffffffffffffffffff 73140 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o
+0000000060076c5f0000000000006b80 3f295e472d1631f84e41c0f323b01ab4 ffffffffffffffffffffffffffffffff 19560 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o
+0000000060076c5f0000000000006b80 cd26c27870c43cbbc2f5b779f1444569 ffffffffffffffffffffffffffffffff 18944 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o
+0000000060076c5f0000000000006b80 a51dc68938a97d870579a37df34cc1a3 ffffffffffffffffffffffffffffffff 24348 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap
new file mode 100644
index 000000000..36e631c10
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe~.dep b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe~.dep
new file mode 100644
index 000000000..e3455e560
--- /dev/null
+++ b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe~.dep
@@ -0,0 +1,59 @@
+54033a2c9ab8ecdd4d859993f20eb375 7d80827dbe291eeb71f7dab35658a604 ffffffffffffffffffffffffffffffff 102 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component
+311ebe359d34616c0af3b948b7fffef4 e03f0f73f181ee62529c64c7aeaf491d ffffffffffffffffffffffffffffffff 556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/PodcastDeluxe.rsrc
+5590fb2e7d594645a0cbdf4f55da1e23 19a820e73a79631e8e7016d16b6b6689 ffffffffffffffffffffffffffffffff 342448 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/MacOS/PodcastDeluxe
+00000000605576f3000000000000018c c91a50a3d178307b3b518d82d5ef7dba ffffffffffffffffffffffffffffffff 396 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/English.lproj/InfoPlist.strings
+00000000000000000000000000000000 1acc2794b5a04cb8f8eed58dffd4aa4f ffffffffffffffffffffffffffffffff 8 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/PkgInfo
+00000000000000000000000000000000 1acc2794b5a04cb8f8eed58dffd4aa4f ffffffffffffffffffffffffffffffff 1125 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Info.plist
+5abda0cf60514143b6e7d5d8d1a3c15d 6ba31efafd65202fbc146c90665c3fa9 ffffffffffffffffffffffffffffffff 556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc
+000000004864a72d0000000000000502 5abda0cf2835e66eb6e7d5d8d1a3c45f ffffffffffffffffffffffffffffffff 556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc
+5418ef0cf7104f2d1121fbfb6cb36d52 aeaedae6542bc78926dfa1d8a6c9358a ffffffffffffffffffffffffffffffff 113072 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe
+7a6426b338eb87a1c83fe5832c1126c0 9b38e862b0f36b3f8980820e0c5dd124 ffffffffffffffffffffffffffffffff 110396 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe
+0d4f395aac35cbe19b9359b92202bd34 4335394ffa4fe99e4d19bb589dee0c2b ffffffffffffffffffffffffffffffff 110824 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe
+0000000009085486000000000001b528 767e0d8fc663a3bba3285747c56a46c5 ffffffffffffffffffffffffffffffff 2300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o
+0000000009085486000000000001b528 0910c34e5e30bf7b00ba73de24d795a5 ffffffffffffffffffffffffffffffff 2216 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o
+0000000009085486000000000001b528 25389ad7b48708650bba1a1c9eaeab11 ffffffffffffffffffffffffffffffff 2664 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o
+000000000d89aa8e0000000000006fbd 5f43093665c470fba0aefcd8c221ae2d ffffffffffffffffffffffffffffffff 1284 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 4303022b1c52faa61a283732c8462333 ffffffffffffffffffffffffffffffff 1340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 33bac4c86d54400f426c920e5af0465a ffffffffffffffffffffffffffffffff 1520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o
+000000004864a73b00000000000067f6 18c0b406a86ffb0dfb300a3c341e0051 ffffffffffffffffffffffffffffffff 9460 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o
+000000004864a73b00000000000067f6 61d1022ada061bb195c328f15f86fc1e ffffffffffffffffffffffffffffffff 8912 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o
+000000004864a73b00000000000067f6 dfd30bbfd1d39ac89f78b343a1d579d9 ffffffffffffffffffffffffffffffff 10844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o
+00000000459e514c000000000000b0e9 86244a54682f4dc5b6f532d50b357f12 ffffffffffffffffffffffffffffffff 9476 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 78257f4664027ab0c6f9152112f8bda6 ffffffffffffffffffffffffffffffff 8332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 7d96789e0408e60f3cc79ba2ebec574b ffffffffffffffffffffffffffffffff 10324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o
+000000000fde02b3000000000000e8c5 40e2279d42d77a6594bd3745167a0aeb ffffffffffffffffffffffffffffffff 4556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o
+000000000fde02b3000000000000e8c5 3bf2155d432544a2db609f6cbeae5ec8 ffffffffffffffffffffffffffffffff 4332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o
+000000000fde02b3000000000000e8c5 67808ac196a829139094e1e8e5691e50 ffffffffffffffffffffffffffffffff 5376 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o
+000000000224c870000000000000a1ca 79ea2a542c2b4df107af94bd6a1b8ad4 ffffffffffffffffffffffffffffffff 3652 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca e3eb5a95f66ff848c37d2f240f1acb83 ffffffffffffffffffffffffffffffff 3452 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca 46cf2c990d778b38e820f91ce8d9367f ffffffffffffffffffffffffffffffff 4512 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o
+000000000b2c9e1300000000000045af 4e26b9f798b57d9b684a38d1b2713bbd ffffffffffffffffffffffffffffffff 344 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 9e954956b66605d9adca0ec0ee0f06bb ffffffffffffffffffffffffffffffff 288 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 3d7217d77d179d126357fd923eee5b76 ffffffffffffffffffffffffffffffff 356 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o
+0000000000735ce0000000000000debb 26041f7c1f06b0e30df3fda5ca6e08e2 ffffffffffffffffffffffffffffffff 3748 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o
+0000000000735ce0000000000000debb 5407b18b1d893c8372166da91c817613 ffffffffffffffffffffffffffffffff 3596 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o
+0000000000735ce0000000000000debb 8462a4733dac5bfabcac9bfd80efecfd ffffffffffffffffffffffffffffffff 4340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o
+000000000b7e84bf00000000000078d4 cf1ced95200b38d8664beb169cee97f1 ffffffffffffffffffffffffffffffff 20844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o
+000000000b7e84bf00000000000078d4 2c64db6fccd451bf1e7506410cda572f ffffffffffffffffffffffffffffffff 19796 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o
+000000000b7e84bf00000000000078d4 56c8e41c27f2e65f2bc179abb54a0752 ffffffffffffffffffffffffffffffff 22368 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o
+000000004cd54809000000000000c180 460603bb07f964dca2f0bdfab299875b ffffffffffffffffffffffffffffffff 4836 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o
+000000004cd54809000000000000c180 91b6cc5ef87d03a0ef0a0468b36942a6 ffffffffffffffffffffffffffffffff 4300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o
+000000004cd54809000000000000c180 9caa5fcfb7eee2c34e1742103075a854 ffffffffffffffffffffffffffffffff 5080 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o
+000000000257e57600000000000074ab 40d16e8396e6f57b2200c3a2a227b0c0 ffffffffffffffffffffffffffffffff 25916 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o
+000000000257e57600000000000074ab 97d5c4fa2b03c8261eb273d08ed84bdf ffffffffffffffffffffffffffffffff 24616 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o
+000000000257e57600000000000074ab 71fa22981d0de8e99d90d517400a1e72 ffffffffffffffffffffffffffffffff 29532 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o
+00000000459e20a7000000000000dea0 70ebcf8963d207ce937ae97d652f4802 ffffffffffffffffffffffffffffffff 5712 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o
+00000000459e20a7000000000000dea0 7a5c860554ee2d200c40ee85592fae95 ffffffffffffffffffffffffffffffff 5484 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o
+00000000459e20a7000000000000dea0 ecfbd2fb5d982a23a897ed0ac23d44d7 ffffffffffffffffffffffffffffffff 6632 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o
+000000000b7e84bf00000000000004cc dc72a51eeceb39adcecd1894200758f9 ffffffffffffffffffffffffffffffff 7848 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o
+000000000b7e84bf00000000000004cc 9007688024f3b4eb12ff615e9e54e47e ffffffffffffffffffffffffffffffff 7552 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o
+000000000b7e84bf00000000000004cc 2944c678b4058fd89e9d9291ee21d66f ffffffffffffffffffffffffffffffff 9176 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o
+0000000004a0f5680000000000000b33 d6f9b201963837f435e727305cdf8c3d ffffffffffffffffffffffffffffffff 4456 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o
+0000000004a0f5680000000000000b33 b4868e094e1c29ae4f6fc11c38315d00 ffffffffffffffffffffffffffffffff 5324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o
+0000000004a0f5680000000000000b33 9dc46f18195d822fb4d8ca9ca8f016db ffffffffffffffffffffffffffffffff 6360 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o
+00000000413e98c60000000000017e35 3e69b8d9bfdfe1b869638d65e6e8359f ffffffffffffffffffffffffffffffff 63236 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o
+00000000413e98c60000000000017e35 82f45c90cc2390cb3abec7d9f1f362c7 ffffffffffffffffffffffffffffffff 62760 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o
+00000000413e98c60000000000017e35 672925c179458d48a9587f07ad134fe3 ffffffffffffffffffffffffffffffff 73140 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o
+0000000060076c5f0000000000006b80 3f295e472d1631f84e41c0f323b01ab4 ffffffffffffffffffffffffffffffff 19560 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o
+0000000060076c5f0000000000006b80 cd26c27870c43cbbc2f5b779f1444569 ffffffffffffffffffffffffffffffff 18944 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o
+0000000060076c5f0000000000006b80 a51dc68938a97d870579a37df34cc1a3 ffffffffffffffffffffffffffffffff 24348 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc
new file mode 100644
index 000000000..0324c514b
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc
new file mode 100644
index 000000000..6252b53a3
Binary files /dev/null and b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc differ
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/build-state.dat b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/build-state.dat
new file mode 100644
index 000000000..385c4ad40
--- /dev/null
+++ b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/build-state.dat
@@ -0,0 +1,1612 @@
+TPodcastDeluxe
+v7
+r0
+t639858358.017701
+cCheck dependencies
+cProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Info.plist Info.plist
+cCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe normal ppc
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe normal i386
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe normal x86_64
+cCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/MacOS/PodcastDeluxe normal "ppc i386 x86_64"
+cRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc PodcastDeluxe.r
+cResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc
+cResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/PodcastDeluxe.rsrc
+cTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+c000000004A12495000000000000104EE
+t1242712400
+s66798
+i"AUBase.h"
+i"AUDispatch.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i
+i"CAAudioChannelLayout.h"
+i"CAHostTimeBase.h"
+i"CAVectorUnit.h"
+i"CAXException.h"
+i"AUBaseHelper.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.h
+c000000004A1249500000000000008203
+t1242712400
+s33283
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUScopeElement.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i"AUBuffer.h"
+i"CAMath.h"
+i"CAThreadSafeList.h"
+i"CAVectorUnit.h"
+i"CATrace.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+c000000004CC46C4D00000000000037D2
+t1287941197
+s14290
+i"AUBase.h"
+i"CAXException.h"
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.h
+c000000004A1249500000000000000D7E
+t1242712400
+s3454
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+c000000004A12495000000000000014D3
+t1242712400
+s5331
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.h
+c000000004A12495000000000000011E5
+t1242712400
+s4581
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+c000000004A1249500000000000000B01
+t1242712400
+s2817
+i"AUOutputElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.h
+c000000004A1249500000000000000B84
+t1242712400
+s2948
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+c000000004A12495000000000000042C4
+t1242712400
+s17092
+i"AUScopeElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.h
+c000000004A12495000000000000049D5
+t1242712400
+s18901
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+c000000004A1249500000000000001985
+t1242712400
+s6533
+i"ComponentBase.h"
+i"CAXException.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.h
+c000000004CC46C4D0000000000001FED
+t1287941197
+s8173
+i
+i"CADebugMacros.h"
+i
+i
+i
+i
+i"CoreAudioTypes.h"
+i"Components.h"
+i"AudioUnit.h"
+i"CAGuard.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+c000000004A12495000000000000041B8
+t1242712400
+s16824
+i"AUEffectBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.h
+c000000004A1249500000000000002520
+t1242712400
+s9504
+i"AUBase.h"
+i"AUSilentTimeout.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+c000000004A1249500000000000001347
+t1242712400
+s4935
+i"AUBaseHelper.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.h
+c000000004A1249500000000000000D1B
+t1242712400
+s3355
+i
+i
+i
+i
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+c000000004A1249500000000000001C88
+t1242712400
+s7304
+i"AUBuffer.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.h
+c000000004A12495000000000000021E4
+t1242712400
+s8676
+i
+i
+i
+i
+i"CAStreamBasicDescription.h"
+i"CAAutoDisposer.h"
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+c000000004A1249500000000000003FB0
+t1242712400
+s16304
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.h
+c000000004A1249500000000000001407
+t1242712400
+s5127
+i"CAHostTimeBase.h"
+i"CAMutex.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUSilentTimeout.h
+c000000004A1249500000000000000C53
+t1242712400
+s3155
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+c000000004A12495000000000000031DF
+t1242712400
+s12767
+i"CAAUParameter.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.h
+c000000004A1249500000000000001BD1
+t1242712400
+s7121
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomic.h
+c000000004A12495000000000000027B0
+t1242712400
+s10160
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomicStack.h
+c000000004A1249500000000000001A7C
+t1242712400
+s6780
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+c000000004A124950000000000000188C
+t1242712400
+s6284
+i"CAAudioChannelLayout.h"
+i"CAAutoDisposer.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.h
+c000000004A1249500000000000001E94
+t1242712400
+s7828
+i
+i
+i
+i
+i
+i
+i
+i"CADebugMacros.h"
+i"CAAutoDisposer.h"
+i"CAReferenceCounted.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAutoDisposer.h
+c000000004A1249500000000000002F87
+t1242712400
+s12167
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugMacros.h
+c000000004A1249500000000000004FAE
+t1242712400
+s20398
+i
+i"CoreAudioTypes.h"
+i"CADebugPrintf.h"
+i
+i"CAHostTimeBase.h"
+i"CAHostTimeBase.h"
+i"CADebugger.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugPrintf.h
+c000000004A124950000000000000111C
+t1242712400
+s4380
+i
+i"CoreAudioTypes.h"
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugger.h
+c000000004A1249500000000000000A9C
+t1242712400
+s2716
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAException.h
+c000000004A1249500000000000000DDC
+t1242712400
+s3548
+i
+i"CoreAudioTypes.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAGuard.h
+c000000004A12495000000000000012A2
+t1242712400
+s4770
+i"CAMutex.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAHostTimeBase.h
+c000000004A1249500000000000001C6C
+t1242712400
+s7276
+i
+i
+i
+i
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CALogMacros.h
+c000000004A12495000000000000019A2
+t1242712400
+s6562
+i"CADebugMacros.h"
+i"CADebugPrintf.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMath.h
+c000000004A1249500000000000000C6B
+t1242712400
+s3179
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+c000000004A12495000000000000030DE
+t1242712400
+s12510
+i"CAMutex.h"
+i
+i"CADebugMacros.h"
+i"CAException.h"
+i"CAHostTimeBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.h
+c000000004A124950000000000000128C
+t1242712400
+s4748
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAReferenceCounted.h
+c000000004A1249500000000000000C97
+t1242712400
+s3223
+i"CAAtomic.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+c000000004A1249500000000000004E32
+t1242712400
+s20018
+i"CAStreamBasicDescription.h"
+i"CAMath.h"
+i
+i
+i"CALogMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.h
+c000000004A1249500000000000002E6C
+t1242712400
+s11884
+i
+i
+i"CoreAudioTypes.h"
+i"CoreFoundation.h"
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAThreadSafeList.h
+c000000004A1249500000000000001D08
+t1242712400
+s7432
+i"CAAtomicStack.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+c000000004CC46C4D000000000000163D
+t1287941197
+s5693
+i"CAVectorUnit.h"
+i
+i"ippdefs.h"
+i"ippcore.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.h
+c000000004CC46C4D0000000000000EC3
+t1287941197
+s3779
+i
+i"CAVectorUnitTypes.h"
+i
+i
+i
+i"CFBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnitTypes.h
+c000000004A1249500000000000000A3C
+t1242712400
+s2620
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAXException.h
+c000000004A1249500000000000002965
+t1242712400
+s10597
+i
+i
+i
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/SDKs/MacOSX10.5.sdk
+c000000004A49A9E400000000000000EE
+t1246341604
+s238
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioUnitUtilities.h
+c000000004864A73B0000000000004DF8
+t1214555963
+s19960
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AUComponent.h
+c000000004864A72E0000000000003F7C
+t1214555950
+s16252
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.h
+c000000004864A72E00000000000003CC
+t1214555950
+s972
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.r
+c000000004864A72D000000000000026E
+t1214555949
+s622
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnitProperties.h
+c000000004864A72E0000000000018D55
+t1214555950
+s101717
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/CoreAudioTypes.h
+c0000000048649BCC000000000000E5E6
+t1214553036
+s58854
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h
+c00000000486499670000000000003438
+t1214552423
+s13368
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h
+c0000000048649968000000000000192A
+t1214552424
+s6442
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h
+c00000000486499690000000000000942
+t1214552425
+s2370
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h
+c0000000047BAD4120000000000000400
+t1203426322
+s1024
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers/Components.h
+c0000000048649BE6000000000000D5E1
+t1214553062
+s54753
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/TargetConditionals.h
+c000000004817F9680000000000002778
+t1209530728
+s10104
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/ctype.h
+c0000000047BA99310000000000002C3A
+t1203411249
+s11322
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/dlfcn.h
+c00000000487581E60000000000000AC7
+t1215660518
+s2759
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/errno.h
+c0000000047BA993000000000000003EB
+t1203411248
+s1003
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/libkern/OSAtomic.h
+c0000000047BA993000000000000024B9
+t1203411248
+s9401
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h
+c0000000047E8839E0000000000000746
+t1206420382
+s1862
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h
+c0000000047BA9932000000000000380F
+t1203411250
+s14351
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdio.h
+c0000000047BA99310000000000003D1D
+t1203411249
+s15645
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdlib.h
+c0000000047BA99310000000000002A79
+t1203411249
+s10873
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h
+c0000000047BA99320000000000001731
+t1203411250
+s5937
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/sysctl.h
+c0000000047E883D1000000000000795B
+t1206420433
+s31067
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/syslog.h
+c0000000047E883D100000000000021EC
+t1206420433
+s8684
+
+N/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
+c000000004EE0342D000000000051BA20
+t1323316269
+s5356064
+
+N/System/Library/Frameworks/AudioUnit.framework/AudioUnit
+c000000004EE033220000000000012150
+t1323316002
+s74064
+
+N/System/Library/Frameworks/CoreServices.framework/CoreServices
+c000000004C23F49F0000000000021710
+t1277424799
+s136976
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/English.lproj/InfoPlist.strings
+c00000000605576F3000000000000018C
+t1616213747
+s396
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp
+c00000000605576F30000000000003687
+t1616213747
+s13959
+i"PodcastDeluxe.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.h
+c00000000605576F300000000000015DD
+t1616213747
+s5597
+i"AUEffectBase.h"
+i"PodcastDeluxeVersion.h"
+i"AUDebugDispatcher.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.r
+c00000000605576F30000000000000CC5
+t1616213747
+s3269
+i
+i"PodcastDeluxeVersion.h"
+i"AUResources.r"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxeVersion.h
+c00000000605576F30000000000000BA9
+t1616213747
+s2985
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o
+t1618165553
+s62760
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o
+t1618165554
+s2216
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o
+t1618165554
+s3596
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o
+t1618165553
+s288
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o
+t1618165552
+s5324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o
+t1618165554
+s19796
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o
+t1618165552
+s7552
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o
+t1618165552
+s5484
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o
+t1618165553
+s24616
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o
+t1618165554
+s8912
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o
+t1618165553
+s3452
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o
+t1618165553
+s4332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o
+t1618165554
+s8332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o
+t1618165554
+s1340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o
+t1618165553
+s4300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe
+t1618165555
+s110396
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o
+t1618165551
+s18944
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe.LinkFileList
+c0000000060733F2B0000000000000A42
+t1618165547
+s2626
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o
+t1618165549
+s73140
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o
+t1618165551
+s2664
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o
+t1618165550
+s4340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o
+t1618165550
+s356
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o
+t1618165548
+s6360
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o
+t1618165550
+s22368
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o
+t1618165548
+s9176
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o
+t1618165549
+s6632
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o
+t1618165550
+s29532
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o
+t1618165551
+s10844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o
+t1618165550
+s4512
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o
+t1618165550
+s5376
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o
+t1618165550
+s10324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o
+t1618165550
+s1520
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o
+t1618165549
+s5080
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe
+t1618165551
+s110824
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o
+t1618165548
+s24348
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe.LinkFileList
+c0000000060733F2B0000000000000A32
+t1618165547
+s2610
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o
+t1618165556
+s63236
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o
+t1618165557
+s2300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o
+t1618165557
+s3748
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o
+t1618165556
+s344
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o
+t1618165555
+s4456
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o
+t1618165557
+s20844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o
+t1618165555
+s7848
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o
+t1618165556
+s5712
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o
+t1618165557
+s25916
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o
+t1618165557
+s9460
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+t1618165556
+s3652
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o
+t1618165557
+s4556
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+t1618165557
+s9476
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o
+t1618165557
+s1284
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o
+t1618165556
+s4836
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe
+t1618165557
+s113072
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o
+t1618165555
+s19560
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe.LinkFileList
+c0000000060733F2B0000000000000A62
+t1618165547
+s2658
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc
+t1618165557
+s556
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc
+t1618165558
+s556
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component
+t1618165558
+s102
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Info.plist
+t1618165547
+s1125
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/MacOS/PodcastDeluxe
+t1618165557
+s342448
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/PkgInfo
+t1618165547
+s8
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/English.lproj/InfoPlist.strings
+t1618165547
+s396
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/PodcastDeluxe.rsrc
+t1618165558
+s556
+
+NInfo.plist
+c00000000605576F30000000000000361
+t1616213747
+s865
+
+NPodcastDeluxe.exp
+c00000000605576F30000000000000014
+t1616213747
+s20
+
+CCheck dependencies
+r0
+lSLF07#2@18"Check dependencies639858347#639858347#0(0"0(0#1#0"8608218976#0"0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858350.857590
+e639858353.258497
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639858350#639858353#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8608652608#1237" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858354.031700
+e639858354.964639
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639858354#639858354#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8606613184#1250" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858353.203817
+e639858354.010581
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639858353#639858354#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8607529024#1242" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858353.258639
+e639858353.287320
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639858353#639858353#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8606759936#1260" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858351.118813
+e639858352.139940
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639858351#639858352#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8607464288#1245" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858352.807907
+e639858354.154143
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639858352#639858354#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8610158848#1253" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858351.423969
+e639858352.449738
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639858351#639858352#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8605803808#1253" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858351.815283
+e639858352.807719
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639858351#639858352#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8600026112#1255" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858352.140080
+e639858353.709343
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639858352#639858353#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8603082336#1253" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858353.709494
+e639858354.560122
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639858353#639858354#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8611049632#1238" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858353.287468
+e639858353.526496
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639858353#639858353#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8604482656#1252" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858353.526657
+e639858353.671791
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639858353#639858353#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8603418496#1226" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858353.671935
+e639858354.031546
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639858353#639858354#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8612688512#1260" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858354.010720
+e639858354.095806
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639858354#639858354#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8607544384#1236" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858352.449888
+e639858353.203484
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639858352#639858353#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8612640448#1251" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858350.646198
+e639858351.815137
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@98"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp639858350#639858351#0(0"0(0#0#90"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp8611448416#1285" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858347.651525
+e639858350.006630
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639858347#639858350#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8610045216#1244" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858350.421952
+e639858351.379569
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639858350#639858351#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8603561024#1257" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858349.585114
+e639858350.333590
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639858349#639858350#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8615224032#1249" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858350.006778
+e639858350.036412
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639858350#639858350#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8611228160#1267" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858347.652229
+e639858348.606131
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639858347#639858348#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8608580128#1252" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858349.531436
+e639858350.857434
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639858349#639858350#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8592109088#1260" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858347.653120
+e639858348.616432
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639858347#639858348#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8608341280#1260" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858348.606286
+e639858349.584967
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639858348#639858349#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8603989152#1262" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858348.616584
+e639858350.159468
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639858348#639858350#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8603204352#1260" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858350.307237
+e639858351.118636
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639858350#639858351#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8604426176#1245" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858350.036568
+e639858350.285152
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639858350#639858350#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8610476160#1259" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858350.159613
+e639858350.307094
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639858350#639858350#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8608082240#1233" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858350.285302
+e639858350.646062
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639858350#639858350#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8607041920#1267" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858350.333740
+e639858350.421804
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639858350#639858350#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8604118400#1243" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858348.799400
+e639858349.531176
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639858348#639858349#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8602887904#1258" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858347.650653
+e639858348.799255
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@98"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp639858347#639858348#0(0"0(0#0#90"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp8611149024#1292" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858354.154299
+e639858356.397607
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639858354#639858356#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8603418976#1243" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858357.286658
+e639858357.904871
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639858357#639858357#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8602590304#1256" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858356.397749
+e639858357.198087
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639858356#639858357#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8603912832#1248" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858356.733729
+e639858356.765715
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639858356#639858356#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8612932608#1266" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858354.560379
+e639858355.533361
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639858354#639858355#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8612614592#1251" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858356.220729
+e639858357.500458
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639858356#639858357#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8606667296#1259" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858355.006733
+e639858356.007426
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639858355#639858356#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8611675488#1259" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858355.239884
+e639858356.220468
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639858355#639858356#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8602905728#1261" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858355.533500
+e639858357.026651
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639858355#639858357#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8611598816#1259" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858357.139062
+e639858357.763218
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639858357#639858357#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8602586944#1244" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858356.765869
+e639858356.997799
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639858356#639858356#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8611001824#1258" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858356.997947
+e639858357.138826
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639858356#639858357#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8606694272#1232" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858357.026792
+e639858357.393474
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639858357#639858357#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8604388320#1266" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858357.198231
+e639858357.286510
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639858357#639858357#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8603216576#1242" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858356.007565
+e639858356.733573
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639858356#639858356#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8608157824#1257" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858354.095965
+e639858355.239550
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@98"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp639858354#639858355#0(0"0(0#0#90"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp8604303392#1291" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o
0#
+
+CCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+s639858347.625068
+e639858347.650549
+r1
+xCopyStringsFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/English.lproj/InfoPlist.strings
+xEnglish.lproj/InfoPlist.strings
+lSLF07#2@36"Copy English.lproj/InfoPlist.strings639858347#639858347#0(0"0(0#0#104"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/English.lproj/InfoPlist.strings8598930112#448" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-16 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/English.lproj
0#
+
+CCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/MacOS/PodcastDeluxe normal "ppc i386 x86_64"
+s639858357.931578
+e639858357.935024
+r1
+xCreateUniversalBinary
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/MacOS/PodcastDeluxe
+xnormal
+xppc i386 x86_64
+lSLF07#2@113"CreateUniversalBinary build/Release/PodcastDeluxe.component/Contents/MacOS/PodcastDeluxe normal "ppc i386 x86_64"639858357#639858357#0(0"0(0#0#88"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/ppc i386 x86_648602794432#738" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
/usr/bin/lipo -create /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe -output /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/MacOS/PodcastDeluxe
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe normal i386
+s639858354.964783
+e639858355.006566
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe
+xnormal
+xi386
+lSLF07#2@165"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe639858354#639858355#0(0"0(0#0#0"8608624864#882" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch i386 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe.LinkFileList -exported_symbols_list PodcastDeluxe.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe normal ppc
+s639858351.379713
+e639858351.423804
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe
+xnormal
+xppc
+lSLF07#2@164"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe639858351#639858351#0(0"0(0#0#0"8611879040#879" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch ppc -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe.LinkFileList -exported_symbols_list PodcastDeluxe.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe normal x86_64
+s639858357.904969
+e639858357.931478
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe
+xnormal
+xx86_64
+lSLF07#2@167"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe639858357#639858357#0(0"0(0#0#0"8608281600#888" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch x86_64 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe.LinkFileList -exported_symbols_list PodcastDeluxe.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe
0#
+
+CProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Info.plist Info.plist
+s639858347.621935
+e639858347.624995
+r1
+xProcessInfoPlistFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Info.plist
+xInfo.plist
+lSLF07#2@18"Process Info.plist639858347#639858347#0(0"0(0#0#83"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/Info.plist8599277792#432" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
builtin-infoPlistUtility Info.plist -genpkginfo /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/PkgInfo -expandbuildsettings -platform macosx -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Info.plist
0#
+
+CResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc
+s639858357.994584
+e639858358.004881
+r1
+xResMergerCollector
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc
+lSLF07#2@191"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc639858357#639858358#0(0"0(0#0#0"8601224992#491" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
/Developer/Tools/ResMerger -dstIs DF /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc
0#
+
+CResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/PodcastDeluxe.rsrc
+s639858358.004969
+e639858358.014863
+r1
+xResMergerProduct
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/PodcastDeluxe.rsrc
+lSLF07#2@169"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/PodcastDeluxe.rsrc639858358#639858358#0(0"0(0#0#0"8609988128#444" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
/Developer/Tools/ResMerger /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc -dstIs DF -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/PodcastDeluxe.rsrc
0#
+
+CRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc PodcastDeluxe.r
+s639858357.935110
+e639858357.994458
+r1
+xRez
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc
+xPodcastDeluxe.r
+lSLF07#2@19"Rez PodcastDeluxe.r639858357#639858357#0(0"0(0#0#88"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.r8601447712#1216" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
/Developer/Tools/Rez -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc -d SystemSevenOrLater=1 -useDF -script Roman -d ppc_YES -d i386_YES -d x86_64_YES -I /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Versions/A/Headers -I /Developer/Examples/CoreAudio/AudioUnits/AUPublic/AUBase -arch ppc -arch i386 -arch x86_64 -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases -i /Developer/Extras/CoreAudio/PublicUtility -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -isysroot /Developer/SDKs/MacOSX10.5.sdk /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.r
0#
+
+CTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component
+s639858358.014960
+e639858358.017651
+r1
+xTouch
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component
+lSLF07#2@116"Touch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component639858358#639858358#0(0"0(0#0#0"8601174336#213" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
/usr/bin/touch -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component
0#
+
diff --git a/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/build-state~.dat b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/build-state~.dat
new file mode 100644
index 000000000..385c4ad40
--- /dev/null
+++ b/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/build-state~.dat
@@ -0,0 +1,1612 @@
+TPodcastDeluxe
+v7
+r0
+t639858358.017701
+cCheck dependencies
+cProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Info.plist Info.plist
+cCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe normal ppc
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe normal i386
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe normal x86_64
+cCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/MacOS/PodcastDeluxe normal "ppc i386 x86_64"
+cRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc PodcastDeluxe.r
+cResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc
+cResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/PodcastDeluxe.rsrc
+cTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+c000000004A12495000000000000104EE
+t1242712400
+s66798
+i"AUBase.h"
+i"AUDispatch.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i
+i"CAAudioChannelLayout.h"
+i"CAHostTimeBase.h"
+i"CAVectorUnit.h"
+i"CAXException.h"
+i"AUBaseHelper.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.h
+c000000004A1249500000000000008203
+t1242712400
+s33283
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUScopeElement.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i"AUBuffer.h"
+i"CAMath.h"
+i"CAThreadSafeList.h"
+i"CAVectorUnit.h"
+i"CATrace.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+c000000004CC46C4D00000000000037D2
+t1287941197
+s14290
+i"AUBase.h"
+i"CAXException.h"
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.h
+c000000004A1249500000000000000D7E
+t1242712400
+s3454
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+c000000004A12495000000000000014D3
+t1242712400
+s5331
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.h
+c000000004A12495000000000000011E5
+t1242712400
+s4581
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+c000000004A1249500000000000000B01
+t1242712400
+s2817
+i"AUOutputElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.h
+c000000004A1249500000000000000B84
+t1242712400
+s2948
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+c000000004A12495000000000000042C4
+t1242712400
+s17092
+i"AUScopeElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.h
+c000000004A12495000000000000049D5
+t1242712400
+s18901
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+c000000004A1249500000000000001985
+t1242712400
+s6533
+i"ComponentBase.h"
+i"CAXException.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.h
+c000000004CC46C4D0000000000001FED
+t1287941197
+s8173
+i
+i"CADebugMacros.h"
+i
+i
+i
+i
+i"CoreAudioTypes.h"
+i"Components.h"
+i"AudioUnit.h"
+i"CAGuard.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+c000000004A12495000000000000041B8
+t1242712400
+s16824
+i"AUEffectBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.h
+c000000004A1249500000000000002520
+t1242712400
+s9504
+i"AUBase.h"
+i"AUSilentTimeout.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+c000000004A1249500000000000001347
+t1242712400
+s4935
+i"AUBaseHelper.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.h
+c000000004A1249500000000000000D1B
+t1242712400
+s3355
+i
+i
+i
+i
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+c000000004A1249500000000000001C88
+t1242712400
+s7304
+i"AUBuffer.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.h
+c000000004A12495000000000000021E4
+t1242712400
+s8676
+i
+i
+i
+i
+i"CAStreamBasicDescription.h"
+i"CAAutoDisposer.h"
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+c000000004A1249500000000000003FB0
+t1242712400
+s16304
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.h
+c000000004A1249500000000000001407
+t1242712400
+s5127
+i"CAHostTimeBase.h"
+i"CAMutex.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUSilentTimeout.h
+c000000004A1249500000000000000C53
+t1242712400
+s3155
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+c000000004A12495000000000000031DF
+t1242712400
+s12767
+i"CAAUParameter.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.h
+c000000004A1249500000000000001BD1
+t1242712400
+s7121
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomic.h
+c000000004A12495000000000000027B0
+t1242712400
+s10160
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomicStack.h
+c000000004A1249500000000000001A7C
+t1242712400
+s6780
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+c000000004A124950000000000000188C
+t1242712400
+s6284
+i"CAAudioChannelLayout.h"
+i"CAAutoDisposer.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.h
+c000000004A1249500000000000001E94
+t1242712400
+s7828
+i
+i
+i
+i
+i
+i
+i
+i"CADebugMacros.h"
+i"CAAutoDisposer.h"
+i"CAReferenceCounted.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAutoDisposer.h
+c000000004A1249500000000000002F87
+t1242712400
+s12167
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugMacros.h
+c000000004A1249500000000000004FAE
+t1242712400
+s20398
+i
+i"CoreAudioTypes.h"
+i"CADebugPrintf.h"
+i
+i"CAHostTimeBase.h"
+i"CAHostTimeBase.h"
+i"CADebugger.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugPrintf.h
+c000000004A124950000000000000111C
+t1242712400
+s4380
+i
+i"CoreAudioTypes.h"
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugger.h
+c000000004A1249500000000000000A9C
+t1242712400
+s2716
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAException.h
+c000000004A1249500000000000000DDC
+t1242712400
+s3548
+i
+i"CoreAudioTypes.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAGuard.h
+c000000004A12495000000000000012A2
+t1242712400
+s4770
+i"CAMutex.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAHostTimeBase.h
+c000000004A1249500000000000001C6C
+t1242712400
+s7276
+i
+i
+i
+i
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CALogMacros.h
+c000000004A12495000000000000019A2
+t1242712400
+s6562
+i"CADebugMacros.h"
+i"CADebugPrintf.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMath.h
+c000000004A1249500000000000000C6B
+t1242712400
+s3179
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+c000000004A12495000000000000030DE
+t1242712400
+s12510
+i"CAMutex.h"
+i
+i"CADebugMacros.h"
+i"CAException.h"
+i"CAHostTimeBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.h
+c000000004A124950000000000000128C
+t1242712400
+s4748
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAReferenceCounted.h
+c000000004A1249500000000000000C97
+t1242712400
+s3223
+i"CAAtomic.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+c000000004A1249500000000000004E32
+t1242712400
+s20018
+i"CAStreamBasicDescription.h"
+i"CAMath.h"
+i
+i
+i"CALogMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.h
+c000000004A1249500000000000002E6C
+t1242712400
+s11884
+i
+i
+i"CoreAudioTypes.h"
+i"CoreFoundation.h"
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAThreadSafeList.h
+c000000004A1249500000000000001D08
+t1242712400
+s7432
+i"CAAtomicStack.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+c000000004CC46C4D000000000000163D
+t1287941197
+s5693
+i"CAVectorUnit.h"
+i
+i"ippdefs.h"
+i"ippcore.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.h
+c000000004CC46C4D0000000000000EC3
+t1287941197
+s3779
+i
+i"CAVectorUnitTypes.h"
+i
+i
+i
+i"CFBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnitTypes.h
+c000000004A1249500000000000000A3C
+t1242712400
+s2620
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAXException.h
+c000000004A1249500000000000002965
+t1242712400
+s10597
+i
+i
+i
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/SDKs/MacOSX10.5.sdk
+c000000004A49A9E400000000000000EE
+t1246341604
+s238
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioUnitUtilities.h
+c000000004864A73B0000000000004DF8
+t1214555963
+s19960
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AUComponent.h
+c000000004864A72E0000000000003F7C
+t1214555950
+s16252
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.h
+c000000004864A72E00000000000003CC
+t1214555950
+s972
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.r
+c000000004864A72D000000000000026E
+t1214555949
+s622
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnitProperties.h
+c000000004864A72E0000000000018D55
+t1214555950
+s101717
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/CoreAudioTypes.h
+c0000000048649BCC000000000000E5E6
+t1214553036
+s58854
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h
+c00000000486499670000000000003438
+t1214552423
+s13368
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h
+c0000000048649968000000000000192A
+t1214552424
+s6442
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h
+c00000000486499690000000000000942
+t1214552425
+s2370
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h
+c0000000047BAD4120000000000000400
+t1203426322
+s1024
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers/Components.h
+c0000000048649BE6000000000000D5E1
+t1214553062
+s54753
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/TargetConditionals.h
+c000000004817F9680000000000002778
+t1209530728
+s10104
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/ctype.h
+c0000000047BA99310000000000002C3A
+t1203411249
+s11322
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/dlfcn.h
+c00000000487581E60000000000000AC7
+t1215660518
+s2759
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/errno.h
+c0000000047BA993000000000000003EB
+t1203411248
+s1003
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/libkern/OSAtomic.h
+c0000000047BA993000000000000024B9
+t1203411248
+s9401
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h
+c0000000047E8839E0000000000000746
+t1206420382
+s1862
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h
+c0000000047BA9932000000000000380F
+t1203411250
+s14351
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdio.h
+c0000000047BA99310000000000003D1D
+t1203411249
+s15645
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdlib.h
+c0000000047BA99310000000000002A79
+t1203411249
+s10873
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h
+c0000000047BA99320000000000001731
+t1203411250
+s5937
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/sysctl.h
+c0000000047E883D1000000000000795B
+t1206420433
+s31067
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/syslog.h
+c0000000047E883D100000000000021EC
+t1206420433
+s8684
+
+N/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
+c000000004EE0342D000000000051BA20
+t1323316269
+s5356064
+
+N/System/Library/Frameworks/AudioUnit.framework/AudioUnit
+c000000004EE033220000000000012150
+t1323316002
+s74064
+
+N/System/Library/Frameworks/CoreServices.framework/CoreServices
+c000000004C23F49F0000000000021710
+t1277424799
+s136976
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/English.lproj/InfoPlist.strings
+c00000000605576F3000000000000018C
+t1616213747
+s396
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp
+c00000000605576F30000000000003687
+t1616213747
+s13959
+i"PodcastDeluxe.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.h
+c00000000605576F300000000000015DD
+t1616213747
+s5597
+i"AUEffectBase.h"
+i"PodcastDeluxeVersion.h"
+i"AUDebugDispatcher.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.r
+c00000000605576F30000000000000CC5
+t1616213747
+s3269
+i
+i"PodcastDeluxeVersion.h"
+i"AUResources.r"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxeVersion.h
+c00000000605576F30000000000000BA9
+t1616213747
+s2985
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o
+t1618165553
+s62760
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o
+t1618165554
+s2216
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o
+t1618165554
+s3596
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o
+t1618165553
+s288
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o
+t1618165552
+s5324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o
+t1618165554
+s19796
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o
+t1618165552
+s7552
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o
+t1618165552
+s5484
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o
+t1618165553
+s24616
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o
+t1618165554
+s8912
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o
+t1618165553
+s3452
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o
+t1618165553
+s4332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o
+t1618165554
+s8332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o
+t1618165554
+s1340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o
+t1618165553
+s4300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe
+t1618165555
+s110396
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o
+t1618165551
+s18944
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe.LinkFileList
+c0000000060733F2B0000000000000A42
+t1618165547
+s2626
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o
+t1618165549
+s73140
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o
+t1618165551
+s2664
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o
+t1618165550
+s4340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o
+t1618165550
+s356
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o
+t1618165548
+s6360
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o
+t1618165550
+s22368
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o
+t1618165548
+s9176
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o
+t1618165549
+s6632
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o
+t1618165550
+s29532
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o
+t1618165551
+s10844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o
+t1618165550
+s4512
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o
+t1618165550
+s5376
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o
+t1618165550
+s10324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o
+t1618165550
+s1520
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o
+t1618165549
+s5080
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe
+t1618165551
+s110824
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o
+t1618165548
+s24348
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe.LinkFileList
+c0000000060733F2B0000000000000A32
+t1618165547
+s2610
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o
+t1618165556
+s63236
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o
+t1618165557
+s2300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o
+t1618165557
+s3748
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o
+t1618165556
+s344
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o
+t1618165555
+s4456
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o
+t1618165557
+s20844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o
+t1618165555
+s7848
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o
+t1618165556
+s5712
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o
+t1618165557
+s25916
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o
+t1618165557
+s9460
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+t1618165556
+s3652
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o
+t1618165557
+s4556
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+t1618165557
+s9476
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o
+t1618165557
+s1284
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o
+t1618165556
+s4836
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe
+t1618165557
+s113072
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o
+t1618165555
+s19560
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe.LinkFileList
+c0000000060733F2B0000000000000A62
+t1618165547
+s2658
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc
+t1618165557
+s556
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc
+t1618165558
+s556
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component
+t1618165558
+s102
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Info.plist
+t1618165547
+s1125
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/MacOS/PodcastDeluxe
+t1618165557
+s342448
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/PkgInfo
+t1618165547
+s8
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/English.lproj/InfoPlist.strings
+t1618165547
+s396
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/PodcastDeluxe.rsrc
+t1618165558
+s556
+
+NInfo.plist
+c00000000605576F30000000000000361
+t1616213747
+s865
+
+NPodcastDeluxe.exp
+c00000000605576F30000000000000014
+t1616213747
+s20
+
+CCheck dependencies
+r0
+lSLF07#2@18"Check dependencies639858347#639858347#0(0"0(0#1#0"8608218976#0"0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858350.857590
+e639858353.258497
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639858350#639858353#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8608652608#1237" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858354.031700
+e639858354.964639
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639858354#639858354#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8606613184#1250" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBaseHelper.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858353.203817
+e639858354.010581
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639858353#639858354#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8607529024#1242" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUBuffer.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858353.258639
+e639858353.287320
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639858353#639858353#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8606759936#1260" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDebugDispatcher.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858351.118813
+e639858352.139940
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639858351#639858352#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8607464288#1245" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUDispatch.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858352.807907
+e639858354.154143
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639858352#639858354#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8610158848#1253" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUEffectBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858351.423969
+e639858352.449738
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639858351#639858352#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8605803808#1253" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUInputElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858351.815283
+e639858352.807719
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639858351#639858352#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8600026112#1255" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUOutputElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858352.140080
+e639858353.709343
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639858352#639858353#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8603082336#1253" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/AUScopeElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858353.709494
+e639858354.560122
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639858353#639858354#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8611049632#1238" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAUParameter.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858353.287468
+e639858353.526496
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639858353#639858353#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8604482656#1252" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAAudioChannelLayout.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858353.526657
+e639858353.671791
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639858353#639858353#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8603418496#1226" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAMutex.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858353.671935
+e639858354.031546
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639858353#639858354#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8612688512#1260" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAStreamBasicDescription.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858354.010720
+e639858354.095806
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639858354#639858354#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8607544384#1236" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/CAVectorUnit.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858352.449888
+e639858353.203484
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639858352#639858353#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8612640448#1251" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/ComponentBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639858350.646198
+e639858351.815137
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@98"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp639858350#639858351#0(0"0(0#0#90"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp8611448416#1285" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe-1DB483EC8D75827.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858347.651525
+e639858350.006630
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639858347#639858350#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8610045216#1244" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858350.421952
+e639858351.379569
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639858350#639858351#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8603561024#1257" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBaseHelper.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858349.585114
+e639858350.333590
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639858349#639858350#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8615224032#1249" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUBuffer.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858350.006778
+e639858350.036412
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639858350#639858350#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8611228160#1267" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDebugDispatcher.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858347.652229
+e639858348.606131
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639858347#639858348#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8608580128#1252" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUDispatch.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858349.531436
+e639858350.857434
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639858349#639858350#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8592109088#1260" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUEffectBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858347.653120
+e639858348.616432
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639858347#639858348#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8608341280#1260" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUInputElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858348.606286
+e639858349.584967
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639858348#639858349#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8603989152#1262" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUOutputElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858348.616584
+e639858350.159468
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639858348#639858350#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8603204352#1260" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/AUScopeElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858350.307237
+e639858351.118636
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639858350#639858351#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8604426176#1245" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAUParameter.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858350.036568
+e639858350.285152
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639858350#639858350#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8610476160#1259" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAAudioChannelLayout.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858350.159613
+e639858350.307094
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639858350#639858350#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8608082240#1233" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAMutex.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858350.285302
+e639858350.646062
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639858350#639858350#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8607041920#1267" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAStreamBasicDescription.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858350.333740
+e639858350.421804
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639858350#639858350#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8604118400#1243" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/CAVectorUnit.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858348.799400
+e639858349.531176
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639858348#639858349#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8602887904#1258" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/ComponentBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639858347.650653
+e639858348.799255
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@98"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp639858347#639858348#0(0"0(0#0#90"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp8611149024#1292" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe-1DB483EC8D75827.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858354.154299
+e639858356.397607
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639858354#639858356#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8603418976#1243" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858357.286658
+e639858357.904871
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639858357#639858357#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8602590304#1256" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBaseHelper.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858356.397749
+e639858357.198087
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639858356#639858357#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8603912832#1248" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUBuffer.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858356.733729
+e639858356.765715
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639858356#639858356#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8612932608#1266" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDebugDispatcher.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858354.560379
+e639858355.533361
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639858354#639858355#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8612614592#1251" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUDispatch.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858356.220729
+e639858357.500458
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639858356#639858357#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8606667296#1259" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUEffectBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858355.006733
+e639858356.007426
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639858355#639858356#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8611675488#1259" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUInputElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858355.239884
+e639858356.220468
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639858355#639858356#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8602905728#1261" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUOutputElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858355.533500
+e639858357.026651
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639858355#639858357#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8611598816#1259" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/AUScopeElement.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858357.139062
+e639858357.763218
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639858357#639858357#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8602586944#1244" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAUParameter.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858356.765869
+e639858356.997799
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639858356#639858356#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8611001824#1258" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAAudioChannelLayout.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858356.997947
+e639858357.138826
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639858356#639858357#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8606694272#1232" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAMutex.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858357.026792
+e639858357.393474
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639858357#639858357#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8604388320#1266" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAStreamBasicDescription.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858357.198231
+e639858357.286510
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639858357#639858357#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8603216576#1242" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/CAVectorUnit.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858356.007565
+e639858356.733573
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639858356#639858356#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8608157824#1257" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/ComponentBase.o
0#
+
+CCompileC build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639858354.095965
+e639858355.239550
+r1
+xCompileC
+xbuild/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@98"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp639858354#639858355#0(0"0(0#0#90"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp8604303392#1291" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/PodcastDeluxe.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe-1DB483EC8D75827.o
0#
+
+CCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+s639858347.625068
+e639858347.650549
+r1
+xCopyStringsFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/English.lproj/InfoPlist.strings
+xEnglish.lproj/InfoPlist.strings
+lSLF07#2@36"Copy English.lproj/InfoPlist.strings639858347#639858347#0(0"0(0#0#104"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/English.lproj/InfoPlist.strings8598930112#448" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-16 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/English.lproj
0#
+
+CCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/MacOS/PodcastDeluxe normal "ppc i386 x86_64"
+s639858357.931578
+e639858357.935024
+r1
+xCreateUniversalBinary
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/MacOS/PodcastDeluxe
+xnormal
+xppc i386 x86_64
+lSLF07#2@113"CreateUniversalBinary build/Release/PodcastDeluxe.component/Contents/MacOS/PodcastDeluxe normal "ppc i386 x86_64"639858357#639858357#0(0"0(0#0#88"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/ppc i386 x86_648602794432#738" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
/usr/bin/lipo -create /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe -output /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/MacOS/PodcastDeluxe
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe normal i386
+s639858354.964783
+e639858355.006566
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe
+xnormal
+xi386
+lSLF07#2@165"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe639858354#639858355#0(0"0(0#0#0"8608624864#882" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch i386 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe.LinkFileList -exported_symbols_list PodcastDeluxe.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/i386/PodcastDeluxe
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe normal ppc
+s639858351.379713
+e639858351.423804
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe
+xnormal
+xppc
+lSLF07#2@164"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe639858351#639858351#0(0"0(0#0#0"8611879040#879" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch ppc -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe.LinkFileList -exported_symbols_list PodcastDeluxe.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/ppc/PodcastDeluxe
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe normal x86_64
+s639858357.904969
+e639858357.931478
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe
+xnormal
+xx86_64
+lSLF07#2@167"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe639858357#639858357#0(0"0(0#0#0"8608281600#888" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch x86_64 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe.LinkFileList -exported_symbols_list PodcastDeluxe.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/Objects-normal/x86_64/PodcastDeluxe
0#
+
+CProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Info.plist Info.plist
+s639858347.621935
+e639858347.624995
+r1
+xProcessInfoPlistFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Info.plist
+xInfo.plist
+lSLF07#2@18"Process Info.plist639858347#639858347#0(0"0(0#0#83"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/Info.plist8599277792#432" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
builtin-infoPlistUtility Info.plist -genpkginfo /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/PkgInfo -expandbuildsettings -platform macosx -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Info.plist
0#
+
+CResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc
+s639858357.994584
+e639858358.004881
+r1
+xResMergerCollector
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc
+lSLF07#2@191"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc639858357#639858358#0(0"0(0#0#0"8601224992#491" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
/Developer/Tools/ResMerger -dstIs DF /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc
0#
+
+CResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/PodcastDeluxe.rsrc
+s639858358.004969
+e639858358.014863
+r1
+xResMergerProduct
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/PodcastDeluxe.rsrc
+lSLF07#2@169"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/PodcastDeluxe.rsrc639858358#639858358#0(0"0(0#0#0"8609988128#444" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
/Developer/Tools/ResMerger /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/PodcastDeluxe.rsrc -dstIs DF -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component/Contents/Resources/PodcastDeluxe.rsrc
0#
+
+CRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc PodcastDeluxe.r
+s639858357.935110
+e639858357.994458
+r1
+xRez
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc
+xPodcastDeluxe.r
+lSLF07#2@19"Rez PodcastDeluxe.r639858357#639858357#0(0"0(0#0#88"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.r8601447712#1216" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
/Developer/Tools/Rez -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/PodcastDeluxe.build/Release/PodcastDeluxe.build/ResourceManagerResources/Objects/PodcastDeluxe-F2DE06932BC77829.rsrc -d SystemSevenOrLater=1 -useDF -script Roman -d ppc_YES -d i386_YES -d x86_64_YES -I /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Versions/A/Headers -I /Developer/Examples/CoreAudio/AudioUnits/AUPublic/AUBase -arch ppc -arch i386 -arch x86_64 -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases -i /Developer/Extras/CoreAudio/PublicUtility -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/include -isysroot /Developer/SDKs/MacOSX10.5.sdk /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/PodcastDeluxe.r
0#
+
+CTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component
+s639858358.014960
+e639858358.017651
+r1
+xTouch
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component
+lSLF07#2@116"Touch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component639858358#639858358#0(0"0(0#0#0"8601174336#213" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe
/usr/bin/touch -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/PodcastDeluxe/build/Release/PodcastDeluxe.component
0#
+
diff --git a/plugins/MacAU/ResEQ/ResEQ.xcodeproj/christopherjohnson.pbxuser b/plugins/MacAU/ResEQ/ResEQ.xcodeproj/christopherjohnson.pbxuser
index e2092b7c1..bf5630afe 100755
--- a/plugins/MacAU/ResEQ/ResEQ.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacAU/ResEQ/ResEQ.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 577660923;
- PBXWorkspaceStateSaveDate = 577660923;
+ PBXPerProjectTemplateStateSaveDate = 639859679;
+ PBXWorkspaceStateSaveDate = 639859679;
};
perUserProjectItems = {
8B77A573226B6A0F00F3F6E3 /* PBXTextBookmark */ = 8B77A573226B6A0F00F3F6E3 /* PBXTextBookmark */;
- 8BE25FDA226E64DB007959A0 /* PBXTextBookmark */ = 8BE25FDA226E64DB007959A0 /* PBXTextBookmark */;
+ 8BA62A6926237BDC00483AAF /* PBXTextBookmark */ = 8BA62A6926237BDC00483AAF /* PBXTextBookmark */;
+ 8BA62AA926237D2900483AAF /* PBXTextBookmark */ = 8BA62AA926237D2900483AAF /* PBXTextBookmark */;
8BE25FF3226E6801007959A0 /* PBXTextBookmark */ = 8BE25FF3226E6801007959A0 /* PBXTextBookmark */;
- 8BE25FF4226E6801007959A0 /* PBXTextBookmark */ = 8BE25FF4226E6801007959A0 /* PBXTextBookmark */;
};
sourceControlManager = 8BD3CCB8148830B20062E48C /* Source Control */;
userBuildSettings = {
@@ -74,10 +74,10 @@
};
8BA05A660720730100365D66 /* ResEQ.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1160, 5252}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1488, 7830}}";
sepNavSelRange = "{19192, 0}";
- sepNavVisRange = "{17057, 695}";
- sepNavWindowFrame = "{{639, 39}, {796, 839}}";
+ sepNavVisRange = "{17248, 504}";
+ sepNavWindowFrame = "{{3, 42}, {796, 836}}";
};
};
8BA05A670720730100365D66 /* ResEQ.exp */ = {
@@ -96,12 +96,32 @@
sepNavWindowFrame = "{{581, 79}, {901, 799}}";
};
};
+ 8BA62A6926237BDC00483AAF /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* ResEQ.cpp */;
+ name = "ResEQ.cpp: 409";
+ rLen = 0;
+ rLoc = 19192;
+ rType = 0;
+ vrLen = 504;
+ vrLoc = 17248;
+ };
+ 8BA62AA926237D2900483AAF /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* ResEQ.cpp */;
+ name = "ResEQ.cpp: 409";
+ rLen = 0;
+ rLoc = 19192;
+ rType = 0;
+ vrLen = 504;
+ vrLoc = 17248;
+ };
8BC6025B073B072D006C4272 /* ResEQ.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1062, 2093}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1362, 2898}}";
sepNavSelRange = "{5926, 53}";
- sepNavVisRange = "{2585, 1453}";
- sepNavWindowFrame = "{{795, 58}, {901, 799}}";
+ sepNavVisRange = "{5150, 954}";
+ sepNavWindowFrame = "{{539, 58}, {901, 799}}";
};
};
8BD3CCB8148830B20062E48C /* Source Control */ = {
@@ -118,16 +138,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BE25FDA226E64DB007959A0 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* ResEQ.cpp */;
- name = "ResEQ.cpp: 429";
- rLen = 0;
- rLoc = 19192;
- rType = 0;
- vrLen = 2113;
- vrLoc = 17072;
- };
8BE25FF3226E6801007959A0 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 8BA05A670720730100365D66 /* ResEQ.exp */;
@@ -138,16 +148,6 @@
vrLen = 12;
vrLoc = 0;
};
- 8BE25FF4226E6801007959A0 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* ResEQ.cpp */;
- name = "ResEQ.cpp: 409";
- rLen = 0;
- rLoc = 19192;
- rType = 0;
- vrLen = 695;
- vrLoc = 17057;
- };
8D01CCC60486CAD60068D4B7 /* ResEQ */ = {
activeExec = 0;
};
diff --git a/plugins/MacAU/ResEQ/ResEQ.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacAU/ResEQ/ResEQ.xcodeproj/christopherjohnson.perspectivev3
index 9ad90dc21..739d3827d 100755
--- a/plugins/MacAU/ResEQ/ResEQ.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacAU/ResEQ/ResEQ.xcodeproj/christopherjohnson.perspectivev3
@@ -352,12 +352,12 @@
_historyCapacity
0
bookmark
- 8BE25FF4226E6801007959A0
+ 8BA62AA926237D2900483AAF
history
8B77A573226B6A0F00F3F6E3
8BE25FF3226E6801007959A0
- 8BE25FDA226E64DB007959A0
+ 8BA62A6926237BDC00483AAF
SplitCount
@@ -371,18 +371,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {635, 303}}
+ {{0, 0}, {635, 287}}
RubberWindowFrame
595 353 842 524 0 0 1440 878
Module
PBXNavigatorGroup
Proportion
- 303pt
+ 287pt
Proportion
- 175pt
+ 191pt
Tabs
@@ -396,7 +396,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {635, 148}}
+ {{10, 27}, {635, 164}}
RubberWindowFrame
595 353 842 524 0 0 1440 878
@@ -480,11 +480,11 @@
TableOfContents
- 8BE25FF5226E6801007959A0
+ 8BA62A7B26237BF200483AAF
1CA23ED40692098700951B8B
- 8BE25FF6226E6801007959A0
+ 8BA62A7C26237BF200483AAF
8B77A571226B6A0F00F3F6E3
- 8BE25FF7226E6801007959A0
+ 8BA62A7D26237BF200483AAF
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -637,7 +637,7 @@
StatusbarIsVisible
TimeStamp
- 577660929.29775798
+ 639860009.46900594
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -654,7 +654,7 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacAU/ResEQ/ResEQ.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.xcodeproj
WindowString
595 353 842 524 0 0 1440 878
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o
new file mode 100644
index 000000000..a20eddb1a
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o
new file mode 100644
index 000000000..48e877fb9
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o
new file mode 100644
index 000000000..2fce9264d
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o
new file mode 100644
index 000000000..24b573566
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o
new file mode 100644
index 000000000..7c4ddea60
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o
new file mode 100644
index 000000000..72de6e545
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o
new file mode 100644
index 000000000..0de7107c4
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o
new file mode 100644
index 000000000..4805b497c
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o
new file mode 100644
index 000000000..a6d690efa
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o
new file mode 100644
index 000000000..d180f7727
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o
new file mode 100644
index 000000000..d331fbc18
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o
new file mode 100644
index 000000000..262dc32f7
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o
new file mode 100644
index 000000000..0cfd9b30e
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o
new file mode 100644
index 000000000..263571618
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o
new file mode 100644
index 000000000..62df2c846
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ
new file mode 100755
index 000000000..098423bcf
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o
new file mode 100644
index 000000000..98bf10f4f
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ.LinkFileList b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ.LinkFileList
new file mode 100644
index 000000000..6c15d1dab
--- /dev/null
+++ b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o
new file mode 100644
index 000000000..30cbbab77
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o
new file mode 100644
index 000000000..4a424d17b
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o
new file mode 100644
index 000000000..132b8e314
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o
new file mode 100644
index 000000000..a3eb3b0c1
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o
new file mode 100644
index 000000000..c2dfc5807
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o
new file mode 100644
index 000000000..4353d8250
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o
new file mode 100644
index 000000000..feecbbb7e
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o
new file mode 100644
index 000000000..70323f97b
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o
new file mode 100644
index 000000000..5057b57e2
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o
new file mode 100644
index 000000000..b6ffa244f
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o
new file mode 100644
index 000000000..97f98ac2f
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o
new file mode 100644
index 000000000..935e0bfd6
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o
new file mode 100644
index 000000000..b8b51d753
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o
new file mode 100644
index 000000000..4ce4ed3cd
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o
new file mode 100644
index 000000000..9bafdb4fb
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ
new file mode 100755
index 000000000..824abf788
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o
new file mode 100644
index 000000000..7fa5606af
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ.LinkFileList b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ.LinkFileList
new file mode 100644
index 000000000..2d26e8a3a
--- /dev/null
+++ b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o
new file mode 100644
index 000000000..09eceaa64
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o
new file mode 100644
index 000000000..211d87b5c
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o
new file mode 100644
index 000000000..5fc0e15be
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o
new file mode 100644
index 000000000..8e7087417
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o
new file mode 100644
index 000000000..5ce3e81d2
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o
new file mode 100644
index 000000000..7e2b03180
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o
new file mode 100644
index 000000000..3ac5e6806
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o
new file mode 100644
index 000000000..9ee53add2
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o
new file mode 100644
index 000000000..9567a9a86
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o
new file mode 100644
index 000000000..c323b43d1
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o
new file mode 100644
index 000000000..83a99fa40
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o
new file mode 100644
index 000000000..2644b82ff
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o
new file mode 100644
index 000000000..40bba150f
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o
new file mode 100644
index 000000000..3c21a0eac
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o
new file mode 100644
index 000000000..01e70c71b
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ
new file mode 100755
index 000000000..800990299
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o
new file mode 100644
index 000000000..824875dcc
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ.LinkFileList b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ.LinkFileList
new file mode 100644
index 000000000..14effcda8
--- /dev/null
+++ b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.dep b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.dep
new file mode 100644
index 000000000..f3976ba5c
--- /dev/null
+++ b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.dep
@@ -0,0 +1,59 @@
+0000000009085486000000000001b528 74b6e7576428172256dd1698b6f40b66 ffffffffffffffffffffffffffffffff 2300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o
+0000000009085486000000000001b528 7e8540aa699098a1ed6ea37643e0e3ba ffffffffffffffffffffffffffffffff 2216 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o
+0000000009085486000000000001b528 b8f9d17a915032d9ac62414136a1036f ffffffffffffffffffffffffffffffff 2664 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o
+000000000d89aa8e0000000000006fbd 934f3e217a834c06520ba70f55fabf07 ffffffffffffffffffffffffffffffff 1284 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 74273021ca2064f70198ce391629ce21 ffffffffffffffffffffffffffffffff 1340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 3ae2c121f83073bff101e5d7639deab2 ffffffffffffffffffffffffffffffff 1520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o
+000000004864a73b00000000000067f6 59f1b778e873da3caef9f82182d72b7f ffffffffffffffffffffffffffffffff 9460 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o
+000000004864a73b00000000000067f6 d3161214dfcdf550fb3340a9d0106ae1 ffffffffffffffffffffffffffffffff 8912 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o
+000000004864a73b00000000000067f6 6e976b33040105a3e697ec2f2343e4a3 ffffffffffffffffffffffffffffffff 10844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o
+00000000459e514c000000000000b0e9 1761d5ff5ed6e9a643981945b045aaa4 ffffffffffffffffffffffffffffffff 9476 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 fd4920a3439a42317a65c9c444547ea2 ffffffffffffffffffffffffffffffff 8332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 bdc20d090c90c6bd6a7a5138a8db9211 ffffffffffffffffffffffffffffffff 10324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o
+000000000fde02b3000000000000e8c5 bb5ede56033a44acd7e2f719896bcf79 ffffffffffffffffffffffffffffffff 4556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o
+000000000fde02b3000000000000e8c5 4a976945f47dbafe513d3f8020f48075 ffffffffffffffffffffffffffffffff 4332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o
+000000000fde02b3000000000000e8c5 e5e4a2b68abb062fe553589a5831f558 ffffffffffffffffffffffffffffffff 5376 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o
+000000000224c870000000000000a1ca 2078db369f407a89c874a244733afaed ffffffffffffffffffffffffffffffff 3652 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca a2d5e653461d87c8b0c514b884f67f25 ffffffffffffffffffffffffffffffff 3452 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca d873097b9917d4a861d12144020d7220 ffffffffffffffffffffffffffffffff 4512 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o
+000000000b2c9e1300000000000045af e89275477e198c8e240e4223170707df ffffffffffffffffffffffffffffffff 344 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 75cffce2bb7686b016775539d5e86155 ffffffffffffffffffffffffffffffff 288 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 65d0408c4a7e783994d08adac83e6ae7 ffffffffffffffffffffffffffffffff 356 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o
+0000000000735ce0000000000000debb 4f72586edbc2ca8ad60aca54b0c8d48c ffffffffffffffffffffffffffffffff 3748 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o
+0000000000735ce0000000000000debb e5374c29208675c04bf4400b98629f8b ffffffffffffffffffffffffffffffff 3596 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o
+0000000000735ce0000000000000debb 720cdd63eb44d675b659231441f38ab6 ffffffffffffffffffffffffffffffff 4340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o
+000000000b7e84bf00000000000078d4 8181d63fbd75ff87e7f4154f840e8b9a ffffffffffffffffffffffffffffffff 20844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o
+000000000b7e84bf00000000000078d4 1062d4fb7444d72ca439d9c4e145ccab ffffffffffffffffffffffffffffffff 19796 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o
+000000000b7e84bf00000000000078d4 db9de2e458e70a5dcaf511071c765790 ffffffffffffffffffffffffffffffff 22368 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o
+000000004cd54809000000000000c180 9036c06ac2f62471482bf21a3257ccd4 ffffffffffffffffffffffffffffffff 4836 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o
+000000004cd54809000000000000c180 dfec1083e93329b793e3c269542fe7a3 ffffffffffffffffffffffffffffffff 4300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o
+000000004cd54809000000000000c180 dbb7800750b09f4ec1b75b29b5ed0029 ffffffffffffffffffffffffffffffff 5080 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o
+000000000257e57600000000000074ab 414d93b6d990d3242ec96c38c3559439 ffffffffffffffffffffffffffffffff 25916 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o
+000000000257e57600000000000074ab 3c39b4d21dbf0afaf11fa7906827bd3c ffffffffffffffffffffffffffffffff 24616 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o
+000000000257e57600000000000074ab 696337e7496e3cd85b439b9e4328c42c ffffffffffffffffffffffffffffffff 29532 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o
+00000000459e20a7000000000000dea0 ff27da56223e8b4e3151c14c7a0552ac ffffffffffffffffffffffffffffffff 5712 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o
+00000000459e20a7000000000000dea0 01dc0c5ca0f9466f6aa668ce11de7941 ffffffffffffffffffffffffffffffff 5484 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o
+00000000459e20a7000000000000dea0 db69976e19398dd4eafda0a268a2a59f ffffffffffffffffffffffffffffffff 6632 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o
+000000000b7e84bf00000000000004cc 6a92ab5b77f3ca36b62013ec3313ad1b ffffffffffffffffffffffffffffffff 7848 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o
+000000000b7e84bf00000000000004cc 2f46d529159c6ad7876d80b828c0cae8 ffffffffffffffffffffffffffffffff 7552 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o
+000000000b7e84bf00000000000004cc 4af33f975b1f0274f933472629ed1bc8 ffffffffffffffffffffffffffffffff 9176 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o
+0000000004a0f5680000000000000b33 f105ba81fdf406d66387c635c4a70350 ffffffffffffffffffffffffffffffff 4456 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o
+0000000004a0f5680000000000000b33 3c4d1e3c56942bf0bc13edda2f9fea43 ffffffffffffffffffffffffffffffff 5324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o
+0000000004a0f5680000000000000b33 77b8bfa75ee4829dc37b7a06412d42b3 ffffffffffffffffffffffffffffffff 6360 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o
+00000000413e98c60000000000017e35 c289a31d8625323d40bc188ae1502d18 ffffffffffffffffffffffffffffffff 63236 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o
+00000000413e98c60000000000017e35 969f14383580494806897eaafee5aa61 ffffffffffffffffffffffffffffffff 62760 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o
+00000000413e98c60000000000017e35 a65bc5ba4c6ab8384d29a04de0e5ae25 ffffffffffffffffffffffffffffffff 73140 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o
+0000000060076c5f00000000000015af 229eb6ebf48c22cd6b233c6ace32ed84 ffffffffffffffffffffffffffffffff 23616 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o
+0000000060076c5f00000000000015af bf83a48fc1224e505b22c20a911bc718 ffffffffffffffffffffffffffffffff 22604 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o
+0000000060076c5f00000000000015af 14baaa4a12619d93b714cfd31d0985ab ffffffffffffffffffffffffffffffff 29468 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o
+ef63547dc5dac25f8a46ff4cb34d9691 b073d454e7a02253d274ce13a2d45361 ffffffffffffffffffffffffffffffff 102 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component
+794fbdbbf2ada2426c169160ce8beb70 2169ea3329791563db6ae74000087e56 ffffffffffffffffffffffffffffffff 524 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/ResEQ.rsrc
+b4523bbd4dc3c142c102980c14978fd8 cd1d8606bf6e6300ad14096cda1c64a8 ffffffffffffffffffffffffffffffff 524 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc
+000000004864a72d000000000000037c b4523bbd05a7666fc102980c14978ca4 ffffffffffffffffffffffffffffffff 524 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc
+9ffe766432256557fedd2965a1d5b20a 325186863d432f13d93490a578792ea1 ffffffffffffffffffffffffffffffff 359072 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/MacOS/ResEQ
+41f2c821aa48eff24a5a36c15b8f1858 ba47058a73956e0df991ccb61d0c78aa ffffffffffffffffffffffffffffffff 121504 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ
+943b7ab5c688d1a11b6ddf198c65bed8 2c88a0e76618e48607b2ba4b54c22416 ffffffffffffffffffffffffffffffff 114684 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ
+468f6de997f3df0f0d0cea3d1a3a9890 9a770c74dc9b0e805cc55c7d25cbd0a6 ffffffffffffffffffffffffffffffff 115080 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ
+00000000605576f3000000000000016c 1aeaf317713d49c91ad330aca4629e70 ffffffffffffffffffffffffffffffff 364 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/English.lproj/InfoPlist.strings
+00000000000000000000000000000000 d9afedb84382631234ddd8beea491321 ffffffffffffffffffffffffffffffff 8 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/PkgInfo
+00000000000000000000000000000000 d9afedb84382631234ddd8beea491321 ffffffffffffffffffffffffffffffff 1109 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Info.plist
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap
new file mode 100644
index 000000000..f37a96382
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ~.dep b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ~.dep
new file mode 100644
index 000000000..a7f27949b
--- /dev/null
+++ b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ~.dep
@@ -0,0 +1,59 @@
+ef63547dc5dac25f8a46ff4cb34d9691 b073d454e7a02253d274ce13a2d45361 ffffffffffffffffffffffffffffffff 102 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component
+794fbdbbf2ada2426c169160ce8beb70 2169ea3329791563db6ae74000087e56 ffffffffffffffffffffffffffffffff 524 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/ResEQ.rsrc
+9ffe766432256557fedd2965a1d5b20a 325186863d432f13d93490a578792ea1 ffffffffffffffffffffffffffffffff 359072 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/MacOS/ResEQ
+00000000605576f3000000000000016c 1aeaf317713d49c91ad330aca4629e70 ffffffffffffffffffffffffffffffff 364 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/English.lproj/InfoPlist.strings
+00000000000000000000000000000000 d9afedb84382631234ddd8beea491321 ffffffffffffffffffffffffffffffff 8 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/PkgInfo
+00000000000000000000000000000000 d9afedb84382631234ddd8beea491321 ffffffffffffffffffffffffffffffff 1109 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Info.plist
+b4523bbd4dc3c142c102980c14978fd8 cd1d8606bf6e6300ad14096cda1c64a8 ffffffffffffffffffffffffffffffff 524 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc
+000000004864a72d000000000000037c b4523bbd05a7666fc102980c14978ca4 ffffffffffffffffffffffffffffffff 524 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc
+41f2c821aa48eff24a5a36c15b8f1858 ba47058a73956e0df991ccb61d0c78aa ffffffffffffffffffffffffffffffff 121504 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ
+943b7ab5c688d1a11b6ddf198c65bed8 2c88a0e76618e48607b2ba4b54c22416 ffffffffffffffffffffffffffffffff 114684 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ
+468f6de997f3df0f0d0cea3d1a3a9890 9a770c74dc9b0e805cc55c7d25cbd0a6 ffffffffffffffffffffffffffffffff 115080 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ
+0000000009085486000000000001b528 74b6e7576428172256dd1698b6f40b66 ffffffffffffffffffffffffffffffff 2300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o
+0000000009085486000000000001b528 7e8540aa699098a1ed6ea37643e0e3ba ffffffffffffffffffffffffffffffff 2216 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o
+0000000009085486000000000001b528 b8f9d17a915032d9ac62414136a1036f ffffffffffffffffffffffffffffffff 2664 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o
+000000000d89aa8e0000000000006fbd 934f3e217a834c06520ba70f55fabf07 ffffffffffffffffffffffffffffffff 1284 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 74273021ca2064f70198ce391629ce21 ffffffffffffffffffffffffffffffff 1340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 3ae2c121f83073bff101e5d7639deab2 ffffffffffffffffffffffffffffffff 1520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o
+000000004864a73b00000000000067f6 59f1b778e873da3caef9f82182d72b7f ffffffffffffffffffffffffffffffff 9460 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o
+000000004864a73b00000000000067f6 d3161214dfcdf550fb3340a9d0106ae1 ffffffffffffffffffffffffffffffff 8912 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o
+000000004864a73b00000000000067f6 6e976b33040105a3e697ec2f2343e4a3 ffffffffffffffffffffffffffffffff 10844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o
+00000000459e514c000000000000b0e9 1761d5ff5ed6e9a643981945b045aaa4 ffffffffffffffffffffffffffffffff 9476 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 fd4920a3439a42317a65c9c444547ea2 ffffffffffffffffffffffffffffffff 8332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 bdc20d090c90c6bd6a7a5138a8db9211 ffffffffffffffffffffffffffffffff 10324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o
+000000000fde02b3000000000000e8c5 bb5ede56033a44acd7e2f719896bcf79 ffffffffffffffffffffffffffffffff 4556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o
+000000000fde02b3000000000000e8c5 4a976945f47dbafe513d3f8020f48075 ffffffffffffffffffffffffffffffff 4332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o
+000000000fde02b3000000000000e8c5 e5e4a2b68abb062fe553589a5831f558 ffffffffffffffffffffffffffffffff 5376 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o
+000000000224c870000000000000a1ca 2078db369f407a89c874a244733afaed ffffffffffffffffffffffffffffffff 3652 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca a2d5e653461d87c8b0c514b884f67f25 ffffffffffffffffffffffffffffffff 3452 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca d873097b9917d4a861d12144020d7220 ffffffffffffffffffffffffffffffff 4512 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o
+000000000b2c9e1300000000000045af e89275477e198c8e240e4223170707df ffffffffffffffffffffffffffffffff 344 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 75cffce2bb7686b016775539d5e86155 ffffffffffffffffffffffffffffffff 288 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 65d0408c4a7e783994d08adac83e6ae7 ffffffffffffffffffffffffffffffff 356 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o
+0000000000735ce0000000000000debb 4f72586edbc2ca8ad60aca54b0c8d48c ffffffffffffffffffffffffffffffff 3748 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o
+0000000000735ce0000000000000debb e5374c29208675c04bf4400b98629f8b ffffffffffffffffffffffffffffffff 3596 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o
+0000000000735ce0000000000000debb 720cdd63eb44d675b659231441f38ab6 ffffffffffffffffffffffffffffffff 4340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o
+000000000b7e84bf00000000000078d4 8181d63fbd75ff87e7f4154f840e8b9a ffffffffffffffffffffffffffffffff 20844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o
+000000000b7e84bf00000000000078d4 1062d4fb7444d72ca439d9c4e145ccab ffffffffffffffffffffffffffffffff 19796 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o
+000000000b7e84bf00000000000078d4 db9de2e458e70a5dcaf511071c765790 ffffffffffffffffffffffffffffffff 22368 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o
+000000004cd54809000000000000c180 9036c06ac2f62471482bf21a3257ccd4 ffffffffffffffffffffffffffffffff 4836 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o
+000000004cd54809000000000000c180 dfec1083e93329b793e3c269542fe7a3 ffffffffffffffffffffffffffffffff 4300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o
+000000004cd54809000000000000c180 dbb7800750b09f4ec1b75b29b5ed0029 ffffffffffffffffffffffffffffffff 5080 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o
+000000000257e57600000000000074ab 414d93b6d990d3242ec96c38c3559439 ffffffffffffffffffffffffffffffff 25916 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o
+000000000257e57600000000000074ab 3c39b4d21dbf0afaf11fa7906827bd3c ffffffffffffffffffffffffffffffff 24616 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o
+000000000257e57600000000000074ab 696337e7496e3cd85b439b9e4328c42c ffffffffffffffffffffffffffffffff 29532 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o
+00000000459e20a7000000000000dea0 ff27da56223e8b4e3151c14c7a0552ac ffffffffffffffffffffffffffffffff 5712 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o
+00000000459e20a7000000000000dea0 01dc0c5ca0f9466f6aa668ce11de7941 ffffffffffffffffffffffffffffffff 5484 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o
+00000000459e20a7000000000000dea0 db69976e19398dd4eafda0a268a2a59f ffffffffffffffffffffffffffffffff 6632 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o
+000000000b7e84bf00000000000004cc 6a92ab5b77f3ca36b62013ec3313ad1b ffffffffffffffffffffffffffffffff 7848 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o
+000000000b7e84bf00000000000004cc 2f46d529159c6ad7876d80b828c0cae8 ffffffffffffffffffffffffffffffff 7552 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o
+000000000b7e84bf00000000000004cc 4af33f975b1f0274f933472629ed1bc8 ffffffffffffffffffffffffffffffff 9176 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o
+0000000004a0f5680000000000000b33 f105ba81fdf406d66387c635c4a70350 ffffffffffffffffffffffffffffffff 4456 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o
+0000000004a0f5680000000000000b33 3c4d1e3c56942bf0bc13edda2f9fea43 ffffffffffffffffffffffffffffffff 5324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o
+0000000004a0f5680000000000000b33 77b8bfa75ee4829dc37b7a06412d42b3 ffffffffffffffffffffffffffffffff 6360 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o
+00000000413e98c60000000000017e35 c289a31d8625323d40bc188ae1502d18 ffffffffffffffffffffffffffffffff 63236 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o
+00000000413e98c60000000000017e35 969f14383580494806897eaafee5aa61 ffffffffffffffffffffffffffffffff 62760 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o
+00000000413e98c60000000000017e35 a65bc5ba4c6ab8384d29a04de0e5ae25 ffffffffffffffffffffffffffffffff 73140 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o
+0000000060076c5f00000000000015af 229eb6ebf48c22cd6b233c6ace32ed84 ffffffffffffffffffffffffffffffff 23616 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o
+0000000060076c5f00000000000015af bf83a48fc1224e505b22c20a911bc718 ffffffffffffffffffffffffffffffff 22604 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o
+0000000060076c5f00000000000015af 14baaa4a12619d93b714cfd31d0985ab ffffffffffffffffffffffffffffffff 29468 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc
new file mode 100644
index 000000000..be24ca6ad
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc
new file mode 100644
index 000000000..39dfb9c27
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/build-state.dat b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/build-state.dat
new file mode 100644
index 000000000..2b2d67f97
--- /dev/null
+++ b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/build-state.dat
@@ -0,0 +1,1612 @@
+TResEQ
+v7
+r0
+t639859695.820644
+cCheck dependencies
+cProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Info.plist Info.plist
+cCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ normal ppc
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ normal i386
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ normal x86_64
+cCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/MacOS/ResEQ normal "ppc i386 x86_64"
+cRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc ResEQ.r
+cResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc
+cResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/ResEQ.rsrc
+cTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+c000000004A12495000000000000104EE
+t1242712400
+s66798
+i"AUBase.h"
+i"AUDispatch.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i
+i"CAAudioChannelLayout.h"
+i"CAHostTimeBase.h"
+i"CAVectorUnit.h"
+i"CAXException.h"
+i"AUBaseHelper.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.h
+c000000004A1249500000000000008203
+t1242712400
+s33283
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUScopeElement.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i"AUBuffer.h"
+i"CAMath.h"
+i"CAThreadSafeList.h"
+i"CAVectorUnit.h"
+i"CATrace.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+c000000004CC46C4D00000000000037D2
+t1287941197
+s14290
+i"AUBase.h"
+i"CAXException.h"
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.h
+c000000004A1249500000000000000D7E
+t1242712400
+s3454
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+c000000004A12495000000000000014D3
+t1242712400
+s5331
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.h
+c000000004A12495000000000000011E5
+t1242712400
+s4581
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+c000000004A1249500000000000000B01
+t1242712400
+s2817
+i"AUOutputElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.h
+c000000004A1249500000000000000B84
+t1242712400
+s2948
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+c000000004A12495000000000000042C4
+t1242712400
+s17092
+i"AUScopeElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.h
+c000000004A12495000000000000049D5
+t1242712400
+s18901
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+c000000004A1249500000000000001985
+t1242712400
+s6533
+i"ComponentBase.h"
+i"CAXException.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.h
+c000000004CC46C4D0000000000001FED
+t1287941197
+s8173
+i
+i"CADebugMacros.h"
+i
+i
+i
+i
+i"CoreAudioTypes.h"
+i"Components.h"
+i"AudioUnit.h"
+i"CAGuard.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+c000000004A12495000000000000041B8
+t1242712400
+s16824
+i"AUEffectBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.h
+c000000004A1249500000000000002520
+t1242712400
+s9504
+i"AUBase.h"
+i"AUSilentTimeout.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+c000000004A1249500000000000001347
+t1242712400
+s4935
+i"AUBaseHelper.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.h
+c000000004A1249500000000000000D1B
+t1242712400
+s3355
+i
+i
+i
+i
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+c000000004A1249500000000000001C88
+t1242712400
+s7304
+i"AUBuffer.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.h
+c000000004A12495000000000000021E4
+t1242712400
+s8676
+i
+i
+i
+i
+i"CAStreamBasicDescription.h"
+i"CAAutoDisposer.h"
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+c000000004A1249500000000000003FB0
+t1242712400
+s16304
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.h
+c000000004A1249500000000000001407
+t1242712400
+s5127
+i"CAHostTimeBase.h"
+i"CAMutex.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUSilentTimeout.h
+c000000004A1249500000000000000C53
+t1242712400
+s3155
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+c000000004A12495000000000000031DF
+t1242712400
+s12767
+i"CAAUParameter.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.h
+c000000004A1249500000000000001BD1
+t1242712400
+s7121
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomic.h
+c000000004A12495000000000000027B0
+t1242712400
+s10160
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomicStack.h
+c000000004A1249500000000000001A7C
+t1242712400
+s6780
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+c000000004A124950000000000000188C
+t1242712400
+s6284
+i"CAAudioChannelLayout.h"
+i"CAAutoDisposer.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.h
+c000000004A1249500000000000001E94
+t1242712400
+s7828
+i
+i
+i
+i
+i
+i
+i
+i"CADebugMacros.h"
+i"CAAutoDisposer.h"
+i"CAReferenceCounted.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAutoDisposer.h
+c000000004A1249500000000000002F87
+t1242712400
+s12167
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugMacros.h
+c000000004A1249500000000000004FAE
+t1242712400
+s20398
+i
+i"CoreAudioTypes.h"
+i"CADebugPrintf.h"
+i
+i"CAHostTimeBase.h"
+i"CAHostTimeBase.h"
+i"CADebugger.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugPrintf.h
+c000000004A124950000000000000111C
+t1242712400
+s4380
+i
+i"CoreAudioTypes.h"
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugger.h
+c000000004A1249500000000000000A9C
+t1242712400
+s2716
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAException.h
+c000000004A1249500000000000000DDC
+t1242712400
+s3548
+i
+i"CoreAudioTypes.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAGuard.h
+c000000004A12495000000000000012A2
+t1242712400
+s4770
+i"CAMutex.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAHostTimeBase.h
+c000000004A1249500000000000001C6C
+t1242712400
+s7276
+i
+i
+i
+i
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CALogMacros.h
+c000000004A12495000000000000019A2
+t1242712400
+s6562
+i"CADebugMacros.h"
+i"CADebugPrintf.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMath.h
+c000000004A1249500000000000000C6B
+t1242712400
+s3179
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+c000000004A12495000000000000030DE
+t1242712400
+s12510
+i"CAMutex.h"
+i
+i"CADebugMacros.h"
+i"CAException.h"
+i"CAHostTimeBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.h
+c000000004A124950000000000000128C
+t1242712400
+s4748
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAReferenceCounted.h
+c000000004A1249500000000000000C97
+t1242712400
+s3223
+i"CAAtomic.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+c000000004A1249500000000000004E32
+t1242712400
+s20018
+i"CAStreamBasicDescription.h"
+i"CAMath.h"
+i
+i
+i"CALogMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.h
+c000000004A1249500000000000002E6C
+t1242712400
+s11884
+i
+i
+i"CoreAudioTypes.h"
+i"CoreFoundation.h"
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAThreadSafeList.h
+c000000004A1249500000000000001D08
+t1242712400
+s7432
+i"CAAtomicStack.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+c000000004CC46C4D000000000000163D
+t1287941197
+s5693
+i"CAVectorUnit.h"
+i
+i"ippdefs.h"
+i"ippcore.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.h
+c000000004CC46C4D0000000000000EC3
+t1287941197
+s3779
+i
+i"CAVectorUnitTypes.h"
+i
+i
+i
+i"CFBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnitTypes.h
+c000000004A1249500000000000000A3C
+t1242712400
+s2620
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAXException.h
+c000000004A1249500000000000002965
+t1242712400
+s10597
+i
+i
+i
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/SDKs/MacOSX10.5.sdk
+c000000004A49A9E400000000000000EE
+t1246341604
+s238
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioUnitUtilities.h
+c000000004864A73B0000000000004DF8
+t1214555963
+s19960
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AUComponent.h
+c000000004864A72E0000000000003F7C
+t1214555950
+s16252
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.h
+c000000004864A72E00000000000003CC
+t1214555950
+s972
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.r
+c000000004864A72D000000000000026E
+t1214555949
+s622
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnitProperties.h
+c000000004864A72E0000000000018D55
+t1214555950
+s101717
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/CoreAudioTypes.h
+c0000000048649BCC000000000000E5E6
+t1214553036
+s58854
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h
+c00000000486499670000000000003438
+t1214552423
+s13368
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h
+c0000000048649968000000000000192A
+t1214552424
+s6442
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h
+c00000000486499690000000000000942
+t1214552425
+s2370
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h
+c0000000047BAD4120000000000000400
+t1203426322
+s1024
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers/Components.h
+c0000000048649BE6000000000000D5E1
+t1214553062
+s54753
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/TargetConditionals.h
+c000000004817F9680000000000002778
+t1209530728
+s10104
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/ctype.h
+c0000000047BA99310000000000002C3A
+t1203411249
+s11322
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/dlfcn.h
+c00000000487581E60000000000000AC7
+t1215660518
+s2759
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/errno.h
+c0000000047BA993000000000000003EB
+t1203411248
+s1003
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/libkern/OSAtomic.h
+c0000000047BA993000000000000024B9
+t1203411248
+s9401
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h
+c0000000047E8839E0000000000000746
+t1206420382
+s1862
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h
+c0000000047BA9932000000000000380F
+t1203411250
+s14351
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdio.h
+c0000000047BA99310000000000003D1D
+t1203411249
+s15645
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdlib.h
+c0000000047BA99310000000000002A79
+t1203411249
+s10873
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h
+c0000000047BA99320000000000001731
+t1203411250
+s5937
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/sysctl.h
+c0000000047E883D1000000000000795B
+t1206420433
+s31067
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/syslog.h
+c0000000047E883D100000000000021EC
+t1206420433
+s8684
+
+N/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
+c000000004EE0342D000000000051BA20
+t1323316269
+s5356064
+
+N/System/Library/Frameworks/AudioUnit.framework/AudioUnit
+c000000004EE033220000000000012150
+t1323316002
+s74064
+
+N/System/Library/Frameworks/CoreServices.framework/CoreServices
+c000000004C23F49F0000000000021710
+t1277424799
+s136976
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/English.lproj/InfoPlist.strings
+c00000000605576F3000000000000016C
+t1616213747
+s364
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp
+c00000000605576F30000000000004C7A
+t1616213747
+s19578
+i"ResEQ.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.h
+c00000000605576F300000000000017D8
+t1616213747
+s6104
+i"AUEffectBase.h"
+i"ResEQVersion.h"
+i"AUDebugDispatcher.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.r
+c00000000605576F30000000000000C6C
+t1616213747
+s3180
+i
+i"ResEQVersion.h"
+i"AUResources.r"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQVersion.h
+c00000000605576F30000000000000D7E
+t1616213747
+s3454
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component
+t1618166892
+s102
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Info.plist
+t1618166882
+s1109
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/MacOS/ResEQ
+t1618166892
+s359072
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/PkgInfo
+t1618166882
+s8
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/English.lproj/InfoPlist.strings
+t1618166882
+s364
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/ResEQ.rsrc
+t1618166892
+s524
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o
+t1618166887
+s62760
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o
+t1618166889
+s2216
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o
+t1618166888
+s3596
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o
+t1618166887
+s288
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o
+t1618166886
+s5324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o
+t1618166888
+s19796
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o
+t1618166887
+s7552
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o
+t1618166887
+s5484
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o
+t1618166888
+s24616
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o
+t1618166889
+s8912
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o
+t1618166888
+s3452
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o
+t1618166888
+s4332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o
+t1618166888
+s8332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o
+t1618166888
+s1340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o
+t1618166887
+s4300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ
+t1618166889
+s114684
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o
+t1618166886
+s22604
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ.LinkFileList
+c000000006073446200000000000008BA
+t1618166882
+s2234
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o
+t1618166884
+s73140
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o
+t1618166885
+s2664
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o
+t1618166884
+s4340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o
+t1618166884
+s356
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o
+t1618166883
+s6360
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o
+t1618166885
+s22368
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o
+t1618166883
+s9176
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o
+t1618166884
+s6632
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o
+t1618166884
+s29532
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o
+t1618166885
+s10844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o
+t1618166884
+s4512
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o
+t1618166884
+s5376
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o
+t1618166885
+s10324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o
+t1618166884
+s1520
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o
+t1618166884
+s5080
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ
+t1618166885
+s115080
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o
+t1618166883
+s29468
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ.LinkFileList
+c000000006073446200000000000008AA
+t1618166882
+s2218
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o
+t1618166890
+s63236
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o
+t1618166892
+s2300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o
+t1618166891
+s3748
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o
+t1618166891
+s344
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o
+t1618166890
+s4456
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o
+t1618166892
+s20844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o
+t1618166890
+s7848
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o
+t1618166890
+s5712
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o
+t1618166891
+s25916
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o
+t1618166892
+s9460
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+t1618166891
+s3652
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o
+t1618166891
+s4556
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+t1618166891
+s9476
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o
+t1618166891
+s1284
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o
+t1618166891
+s4836
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ
+t1618166892
+s121504
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o
+t1618166889
+s23616
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ.LinkFileList
+c000000006073446200000000000008DA
+t1618166882
+s2266
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc
+t1618166892
+s524
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc
+t1618166892
+s524
+
+NInfo.plist
+c00000000605576F30000000000000361
+t1616213747
+s865
+
+NResEQ.exp
+c00000000605576F3000000000000000C
+t1616213747
+s12
+
+CCheck dependencies
+r0
+lSLF07#2@18"Check dependencies639859695#639859695#0(0"0(0#1#0"8613645472#0"0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859685.364341
+e639859687.788554
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639859685#639859687#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8612340640#1109" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859688.569825
+e639859689.519521
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639859688#639859689#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8612203904#1122" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859687.786930
+e639859688.593105
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639859687#639859688#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8612066208#1114" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859687.788682
+e639859687.817189
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639859687#639859687#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8611745472#1132" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859685.554849
+e639859686.557547
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639859685#639859686#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8611124416#1117" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859687.336310
+e639859688.669374
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639859687#639859688#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8603828544#1125" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859685.962150
+e639859687.008914
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639859685#639859687#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8590363328#1125" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859686.369438
+e639859687.336118
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639859686#639859687#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8608760800#1127" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859686.557676
+e639859688.120966
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639859686#639859688#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8607269120#1125" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859688.206502
+e639859689.074722
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639859688#639859689#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8603922400#1110" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859687.817337
+e639859688.059258
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639859687#639859688#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8611360864#1124" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859688.059397
+e639859688.206347
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639859688#639859688#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8607604960#1098" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859688.121099
+e639859688.481736
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639859688#639859688#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8607235328#1132" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859688.481877
+e639859688.569671
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639859688#639859688#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8612421696#1108" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859687.009063
+e639859687.786785
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639859687#639859687#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8606365696#1123" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859685.068015
+e639859686.369294
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp639859685#639859686#0(0"0(0#0#74"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp8607418176#1133" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859682.099201
+e639859684.425466
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639859682#639859684#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8605787520#1116" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.996183
+e639859685.918563
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639859684#639859685#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8603423584#1129" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.141999
+e639859684.914804
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639859684#639859684#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8608329184#1121" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.425600
+e639859684.450729
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639859684#639859684#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8610074560#1139" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859682.099959
+e639859683.094908
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639859682#639859683#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8600991360#1124" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.035466
+e639859685.364211
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639859684#639859685#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8610410240#1132" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859682.101013
+e639859683.112215
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639859682#639859683#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8595021344#1132" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859683.095059
+e639859684.035209
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639859683#639859684#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8615664800#1134" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859683.112355
+e639859684.584710
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639859683#639859684#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8604480960#1132" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.736435
+e639859685.554649
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639859684#639859685#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8610375744#1117" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.450948
+e639859684.696477
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639859684#639859684#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8608498976#1131" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.584861
+e639859684.736295
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639859684#639859684#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8613298752#1105" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.696820
+e639859685.067869
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639859684#639859685#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8611887936#1139" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.914950
+e639859684.996046
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639859684#639859684#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8608330048#1115" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859683.426489
+e639859684.141854
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639859683#639859684#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8611751552#1130" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859682.098334
+e639859683.426352
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp639859682#639859683#0(0"0(0#0#74"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp8608008256#1140" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859688.669520
+e639859690.916647
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639859688#639859690#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8608533184#1115" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859691.816393
+e639859692.441581
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639859691#639859692#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8606143200#1128" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859690.916786
+e639859691.691429
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639859690#639859691#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8607021984#1120" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859691.297162
+e639859691.326805
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639859691#639859691#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8604272832#1138" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859689.074977
+e639859690.067463
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639859689#639859690#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8606675232#1123" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859690.768999
+e639859692.046363
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639859690#639859692#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8611331072#1131" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859689.561401
+e639859690.565962
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639859689#639859690#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8610846144#1131" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859689.825558
+e639859690.768788
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639859689#639859690#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8603872192#1133" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859690.067615
+e639859691.579301
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639859690#639859691#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8598926976#1131" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859691.691571
+e639859692.307041
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639859691#639859692#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8610500992#1116" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859691.326957
+e639859691.575397
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639859691#639859691#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8603969280#1130" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859691.575544
+e639859691.727280
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639859691#639859691#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8612035072#1104" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859691.579442
+e639859691.931545
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639859691#639859691#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8611389280#1138" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859691.727636
+e639859691.816241
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639859691#639859691#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8607524416#1114" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859690.566112
+e639859691.297011
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639859690#639859691#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8612830016#1129" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859688.593264
+e639859689.825416
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp639859688#639859689#0(0"0(0#0#74"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp8611649792#1139" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o
0#
+
+CCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+s639859682.072002
+e639859682.098236
+r1
+xCopyStringsFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/English.lproj/InfoPlist.strings
+xEnglish.lproj/InfoPlist.strings
+lSLF07#2@36"Copy English.lproj/InfoPlist.strings639859682#639859682#0(0"0(0#0#96"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/English.lproj/InfoPlist.strings8615395264#424" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-16 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/English.lproj
0#
+
+CCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/MacOS/ResEQ normal "ppc i386 x86_64"
+s639859692.467820
+e639859692.471164
+r1
+xCreateUniversalBinary
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/MacOS/ResEQ
+xnormal
+xppc i386 x86_64
+lSLF07#2@97"CreateUniversalBinary build/Release/ResEQ.component/Contents/MacOS/ResEQ normal "ppc i386 x86_64"639859692#639859692#0(0"0(0#0#80"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ppc i386 x86_648601318816#610" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
/usr/bin/lipo -create /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ -output /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/MacOS/ResEQ
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ normal i386
+s639859689.519665
+e639859689.561238
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ
+xnormal
+xi386
+lSLF07#2@133"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ639859689#639859689#0(0"0(0#0#0"8615250752#786" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch i386 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ.LinkFileList -exported_symbols_list ResEQ.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ normal ppc
+s639859685.918694
+e639859685.961984
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ
+xnormal
+xppc
+lSLF07#2@132"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ639859685#639859685#0(0"0(0#0#0"8607397920#783" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch ppc -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ.LinkFileList -exported_symbols_list ResEQ.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ normal x86_64
+s639859692.441675
+e639859692.467720
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ
+xnormal
+xx86_64
+lSLF07#2@135"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ639859692#639859692#0(0"0(0#0#0"8603307136#792" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch x86_64 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ.LinkFileList -exported_symbols_list ResEQ.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ
0#
+
+CProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Info.plist Info.plist
+s639859682.063752
+e639859682.071891
+r1
+xProcessInfoPlistFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Info.plist
+xInfo.plist
+lSLF07#2@18"Process Info.plist639859682#639859682#0(0"0(0#0#75"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/Info.plist8615845856#392" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
builtin-infoPlistUtility Info.plist -genpkginfo /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/PkgInfo -expandbuildsettings -platform macosx -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Info.plist
0#
+
+CResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc
+s639859692.531540
+e639859692.541624
+r1
+xResMergerCollector
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc
+lSLF07#2@159"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc639859692#639859692#0(0"0(0#0#0"8613846784#419" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
/Developer/Tools/ResMerger -dstIs DF /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc
0#
+
+CResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/ResEQ.rsrc
+s639859692.541711
+e639859692.551415
+r1
+xResMergerProduct
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/ResEQ.rsrc
+lSLF07#2@145"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/ResEQ.rsrc639859692#639859692#0(0"0(0#0#0"8612424320#380" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
/Developer/Tools/ResMerger /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc -dstIs DF -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/ResEQ.rsrc
0#
+
+CRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc ResEQ.r
+s639859692.471281
+e639859692.531384
+r1
+xRez
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc
+xResEQ.r
+lSLF07#2@11"Rez ResEQ.r639859692#639859692#0(0"0(0#0#72"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.r8600511776#1136" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
/Developer/Tools/Rez -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc -d SystemSevenOrLater=1 -useDF -script Roman -d ppc_YES -d i386_YES -d x86_64_YES -I /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Versions/A/Headers -I /Developer/Examples/CoreAudio/AudioUnits/AUPublic/AUBase -arch ppc -arch i386 -arch x86_64 -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase -i /Developer/Extras/CoreAudio/PublicUtility -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -isysroot /Developer/SDKs/MacOSX10.5.sdk /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.r
0#
+
+CTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component
+s639859692.551531
+e639859692.553928
+r1
+xTouch
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component
+lSLF07#2@100"Touch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component639859692#639859692#0(0"0(0#0#0"8612354304#189" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
/usr/bin/touch -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component
0#
+
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/build-state~.dat b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/build-state~.dat
new file mode 100644
index 000000000..1e1b42416
--- /dev/null
+++ b/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/build-state~.dat
@@ -0,0 +1,1612 @@
+TResEQ
+v7
+r0
+t639859692.553970
+cCheck dependencies
+cProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Info.plist Info.plist
+cCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ normal ppc
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ normal i386
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ normal x86_64
+cCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/MacOS/ResEQ normal "ppc i386 x86_64"
+cRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc ResEQ.r
+cResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc
+cResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/ResEQ.rsrc
+cTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+c000000004A12495000000000000104EE
+t1242712400
+s66798
+i"AUBase.h"
+i"AUDispatch.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i
+i"CAAudioChannelLayout.h"
+i"CAHostTimeBase.h"
+i"CAVectorUnit.h"
+i"CAXException.h"
+i"AUBaseHelper.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.h
+c000000004A1249500000000000008203
+t1242712400
+s33283
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUScopeElement.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i"AUBuffer.h"
+i"CAMath.h"
+i"CAThreadSafeList.h"
+i"CAVectorUnit.h"
+i"CATrace.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+c000000004CC46C4D00000000000037D2
+t1287941197
+s14290
+i"AUBase.h"
+i"CAXException.h"
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.h
+c000000004A1249500000000000000D7E
+t1242712400
+s3454
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+c000000004A12495000000000000014D3
+t1242712400
+s5331
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.h
+c000000004A12495000000000000011E5
+t1242712400
+s4581
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+c000000004A1249500000000000000B01
+t1242712400
+s2817
+i"AUOutputElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.h
+c000000004A1249500000000000000B84
+t1242712400
+s2948
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+c000000004A12495000000000000042C4
+t1242712400
+s17092
+i"AUScopeElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.h
+c000000004A12495000000000000049D5
+t1242712400
+s18901
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+c000000004A1249500000000000001985
+t1242712400
+s6533
+i"ComponentBase.h"
+i"CAXException.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.h
+c000000004CC46C4D0000000000001FED
+t1287941197
+s8173
+i
+i"CADebugMacros.h"
+i
+i
+i
+i
+i"CoreAudioTypes.h"
+i"Components.h"
+i"AudioUnit.h"
+i"CAGuard.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+c000000004A12495000000000000041B8
+t1242712400
+s16824
+i"AUEffectBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.h
+c000000004A1249500000000000002520
+t1242712400
+s9504
+i"AUBase.h"
+i"AUSilentTimeout.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+c000000004A1249500000000000001347
+t1242712400
+s4935
+i"AUBaseHelper.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.h
+c000000004A1249500000000000000D1B
+t1242712400
+s3355
+i
+i
+i
+i
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+c000000004A1249500000000000001C88
+t1242712400
+s7304
+i"AUBuffer.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.h
+c000000004A12495000000000000021E4
+t1242712400
+s8676
+i
+i
+i
+i
+i"CAStreamBasicDescription.h"
+i"CAAutoDisposer.h"
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+c000000004A1249500000000000003FB0
+t1242712400
+s16304
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.h
+c000000004A1249500000000000001407
+t1242712400
+s5127
+i"CAHostTimeBase.h"
+i"CAMutex.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUSilentTimeout.h
+c000000004A1249500000000000000C53
+t1242712400
+s3155
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+c000000004A12495000000000000031DF
+t1242712400
+s12767
+i"CAAUParameter.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.h
+c000000004A1249500000000000001BD1
+t1242712400
+s7121
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomic.h
+c000000004A12495000000000000027B0
+t1242712400
+s10160
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomicStack.h
+c000000004A1249500000000000001A7C
+t1242712400
+s6780
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+c000000004A124950000000000000188C
+t1242712400
+s6284
+i"CAAudioChannelLayout.h"
+i"CAAutoDisposer.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.h
+c000000004A1249500000000000001E94
+t1242712400
+s7828
+i
+i
+i
+i
+i
+i
+i
+i"CADebugMacros.h"
+i"CAAutoDisposer.h"
+i"CAReferenceCounted.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAutoDisposer.h
+c000000004A1249500000000000002F87
+t1242712400
+s12167
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugMacros.h
+c000000004A1249500000000000004FAE
+t1242712400
+s20398
+i
+i"CoreAudioTypes.h"
+i"CADebugPrintf.h"
+i
+i"CAHostTimeBase.h"
+i"CAHostTimeBase.h"
+i"CADebugger.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugPrintf.h
+c000000004A124950000000000000111C
+t1242712400
+s4380
+i
+i"CoreAudioTypes.h"
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugger.h
+c000000004A1249500000000000000A9C
+t1242712400
+s2716
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAException.h
+c000000004A1249500000000000000DDC
+t1242712400
+s3548
+i
+i"CoreAudioTypes.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAGuard.h
+c000000004A12495000000000000012A2
+t1242712400
+s4770
+i"CAMutex.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAHostTimeBase.h
+c000000004A1249500000000000001C6C
+t1242712400
+s7276
+i
+i
+i
+i
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CALogMacros.h
+c000000004A12495000000000000019A2
+t1242712400
+s6562
+i"CADebugMacros.h"
+i"CADebugPrintf.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMath.h
+c000000004A1249500000000000000C6B
+t1242712400
+s3179
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+c000000004A12495000000000000030DE
+t1242712400
+s12510
+i"CAMutex.h"
+i
+i"CADebugMacros.h"
+i"CAException.h"
+i"CAHostTimeBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.h
+c000000004A124950000000000000128C
+t1242712400
+s4748
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAReferenceCounted.h
+c000000004A1249500000000000000C97
+t1242712400
+s3223
+i"CAAtomic.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+c000000004A1249500000000000004E32
+t1242712400
+s20018
+i"CAStreamBasicDescription.h"
+i"CAMath.h"
+i
+i
+i"CALogMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.h
+c000000004A1249500000000000002E6C
+t1242712400
+s11884
+i
+i
+i"CoreAudioTypes.h"
+i"CoreFoundation.h"
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAThreadSafeList.h
+c000000004A1249500000000000001D08
+t1242712400
+s7432
+i"CAAtomicStack.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+c000000004CC46C4D000000000000163D
+t1287941197
+s5693
+i"CAVectorUnit.h"
+i
+i"ippdefs.h"
+i"ippcore.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.h
+c000000004CC46C4D0000000000000EC3
+t1287941197
+s3779
+i
+i"CAVectorUnitTypes.h"
+i
+i
+i
+i"CFBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnitTypes.h
+c000000004A1249500000000000000A3C
+t1242712400
+s2620
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAXException.h
+c000000004A1249500000000000002965
+t1242712400
+s10597
+i
+i
+i
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/SDKs/MacOSX10.5.sdk
+c000000004A49A9E400000000000000EE
+t1246341604
+s238
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioUnitUtilities.h
+c000000004864A73B0000000000004DF8
+t1214555963
+s19960
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AUComponent.h
+c000000004864A72E0000000000003F7C
+t1214555950
+s16252
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.h
+c000000004864A72E00000000000003CC
+t1214555950
+s972
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.r
+c000000004864A72D000000000000026E
+t1214555949
+s622
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnitProperties.h
+c000000004864A72E0000000000018D55
+t1214555950
+s101717
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/CoreAudioTypes.h
+c0000000048649BCC000000000000E5E6
+t1214553036
+s58854
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h
+c00000000486499670000000000003438
+t1214552423
+s13368
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h
+c0000000048649968000000000000192A
+t1214552424
+s6442
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h
+c00000000486499690000000000000942
+t1214552425
+s2370
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h
+c0000000047BAD4120000000000000400
+t1203426322
+s1024
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers/Components.h
+c0000000048649BE6000000000000D5E1
+t1214553062
+s54753
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/TargetConditionals.h
+c000000004817F9680000000000002778
+t1209530728
+s10104
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/ctype.h
+c0000000047BA99310000000000002C3A
+t1203411249
+s11322
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/dlfcn.h
+c00000000487581E60000000000000AC7
+t1215660518
+s2759
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/errno.h
+c0000000047BA993000000000000003EB
+t1203411248
+s1003
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/libkern/OSAtomic.h
+c0000000047BA993000000000000024B9
+t1203411248
+s9401
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h
+c0000000047E8839E0000000000000746
+t1206420382
+s1862
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h
+c0000000047BA9932000000000000380F
+t1203411250
+s14351
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdio.h
+c0000000047BA99310000000000003D1D
+t1203411249
+s15645
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdlib.h
+c0000000047BA99310000000000002A79
+t1203411249
+s10873
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h
+c0000000047BA99320000000000001731
+t1203411250
+s5937
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/sysctl.h
+c0000000047E883D1000000000000795B
+t1206420433
+s31067
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/syslog.h
+c0000000047E883D100000000000021EC
+t1206420433
+s8684
+
+N/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
+c000000004EE0342D000000000051BA20
+t1323316269
+s5356064
+
+N/System/Library/Frameworks/AudioUnit.framework/AudioUnit
+c000000004EE033220000000000012150
+t1323316002
+s74064
+
+N/System/Library/Frameworks/CoreServices.framework/CoreServices
+c000000004C23F49F0000000000021710
+t1277424799
+s136976
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/English.lproj/InfoPlist.strings
+c00000000605576F3000000000000016C
+t1616213747
+s364
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp
+c00000000605576F30000000000004C7A
+t1616213747
+s19578
+i"ResEQ.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.h
+c00000000605576F300000000000017D8
+t1616213747
+s6104
+i"AUEffectBase.h"
+i"ResEQVersion.h"
+i"AUDebugDispatcher.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.r
+c00000000605576F30000000000000C6C
+t1616213747
+s3180
+i
+i"ResEQVersion.h"
+i"AUResources.r"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQVersion.h
+c00000000605576F30000000000000D7E
+t1616213747
+s3454
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component
+t1618166892
+s102
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Info.plist
+t1618166882
+s1109
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/MacOS/ResEQ
+t1618166892
+s359072
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/PkgInfo
+t1618166882
+s8
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/English.lproj/InfoPlist.strings
+t1618166882
+s364
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/ResEQ.rsrc
+t1618166892
+s524
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o
+t1618166887
+s62760
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o
+t1618166889
+s2216
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o
+t1618166888
+s3596
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o
+t1618166887
+s288
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o
+t1618166886
+s5324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o
+t1618166888
+s19796
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o
+t1618166887
+s7552
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o
+t1618166887
+s5484
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o
+t1618166888
+s24616
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o
+t1618166889
+s8912
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o
+t1618166888
+s3452
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o
+t1618166888
+s4332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o
+t1618166888
+s8332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o
+t1618166888
+s1340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o
+t1618166887
+s4300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ
+t1618166889
+s114684
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o
+t1618166886
+s22604
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ.LinkFileList
+c000000006073446200000000000008BA
+t1618166882
+s2234
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o
+t1618166884
+s73140
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o
+t1618166885
+s2664
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o
+t1618166884
+s4340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o
+t1618166884
+s356
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o
+t1618166883
+s6360
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o
+t1618166885
+s22368
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o
+t1618166883
+s9176
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o
+t1618166884
+s6632
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o
+t1618166884
+s29532
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o
+t1618166885
+s10844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o
+t1618166884
+s4512
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o
+t1618166884
+s5376
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o
+t1618166885
+s10324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o
+t1618166884
+s1520
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o
+t1618166884
+s5080
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ
+t1618166885
+s115080
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o
+t1618166883
+s29468
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ.LinkFileList
+c000000006073446200000000000008AA
+t1618166882
+s2218
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o
+t1618166890
+s63236
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o
+t1618166892
+s2300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o
+t1618166891
+s3748
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o
+t1618166891
+s344
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o
+t1618166890
+s4456
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o
+t1618166892
+s20844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o
+t1618166890
+s7848
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o
+t1618166890
+s5712
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o
+t1618166891
+s25916
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o
+t1618166892
+s9460
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+t1618166891
+s3652
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o
+t1618166891
+s4556
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+t1618166891
+s9476
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o
+t1618166891
+s1284
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o
+t1618166891
+s4836
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ
+t1618166892
+s121504
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o
+t1618166889
+s23616
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ.LinkFileList
+c000000006073446200000000000008DA
+t1618166882
+s2266
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc
+t1618166892
+s524
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc
+t1618166892
+s524
+
+NInfo.plist
+c00000000605576F30000000000000361
+t1616213747
+s865
+
+NResEQ.exp
+c00000000605576F3000000000000000C
+t1616213747
+s12
+
+CCheck dependencies
+r0
+lSLF07#2@18"Check dependencies639859681#639859682#0(0"0(0#1#0"8610078944#0"0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859685.364341
+e639859687.788554
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639859685#639859687#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8612340640#1109" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859688.569825
+e639859689.519521
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639859688#639859689#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8612203904#1122" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBaseHelper.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859687.786930
+e639859688.593105
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639859687#639859688#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8612066208#1114" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUBuffer.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859687.788682
+e639859687.817189
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639859687#639859687#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8611745472#1132" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDebugDispatcher.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859685.554849
+e639859686.557547
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639859685#639859686#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8611124416#1117" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUDispatch.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859687.336310
+e639859688.669374
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639859687#639859688#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8603828544#1125" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUEffectBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859685.962150
+e639859687.008914
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639859685#639859687#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8590363328#1125" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUInputElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859686.369438
+e639859687.336118
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639859686#639859687#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8608760800#1127" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUOutputElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859686.557676
+e639859688.120966
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639859686#639859688#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8607269120#1125" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/AUScopeElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859688.206502
+e639859689.074722
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639859688#639859689#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8603922400#1110" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAUParameter.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859687.817337
+e639859688.059258
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639859687#639859688#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8611360864#1124" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAAudioChannelLayout.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859688.059397
+e639859688.206347
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639859688#639859688#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8607604960#1098" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAMutex.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859688.121099
+e639859688.481736
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639859688#639859688#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8607235328#1132" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAStreamBasicDescription.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859688.481877
+e639859688.569671
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639859688#639859688#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8612421696#1108" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/CAVectorUnit.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859687.009063
+e639859687.786785
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639859687#639859687#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8606365696#1123" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ComponentBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639859685.068015
+e639859686.369294
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp639859685#639859686#0(0"0(0#0#74"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp8607418176#1133" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ-1DB483EC8D75827.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859682.099201
+e639859684.425466
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639859682#639859684#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8605787520#1116" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.996183
+e639859685.918563
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639859684#639859685#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8603423584#1129" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBaseHelper.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.141999
+e639859684.914804
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639859684#639859684#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8608329184#1121" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUBuffer.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.425600
+e639859684.450729
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639859684#639859684#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8610074560#1139" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDebugDispatcher.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859682.099959
+e639859683.094908
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639859682#639859683#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8600991360#1124" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUDispatch.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.035466
+e639859685.364211
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639859684#639859685#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8610410240#1132" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUEffectBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859682.101013
+e639859683.112215
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639859682#639859683#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8595021344#1132" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUInputElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859683.095059
+e639859684.035209
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639859683#639859684#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8615664800#1134" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUOutputElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859683.112355
+e639859684.584710
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639859683#639859684#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8604480960#1132" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/AUScopeElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.736435
+e639859685.554649
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639859684#639859685#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8610375744#1117" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAUParameter.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.450948
+e639859684.696477
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639859684#639859684#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8608498976#1131" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAAudioChannelLayout.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.584861
+e639859684.736295
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639859684#639859684#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8613298752#1105" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAMutex.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.696820
+e639859685.067869
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639859684#639859685#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8611887936#1139" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAStreamBasicDescription.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859684.914950
+e639859684.996046
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639859684#639859684#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8608330048#1115" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/CAVectorUnit.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859683.426489
+e639859684.141854
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639859683#639859684#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8611751552#1130" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ComponentBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639859682.098334
+e639859683.426352
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp639859682#639859683#0(0"0(0#0#74"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp8608008256#1140" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ-1DB483EC8D75827.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859688.669520
+e639859690.916647
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639859688#639859690#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8608533184#1115" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859691.816393
+e639859692.441581
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639859691#639859692#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8606143200#1128" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBaseHelper.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859690.916786
+e639859691.691429
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639859690#639859691#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8607021984#1120" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUBuffer.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859691.297162
+e639859691.326805
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639859691#639859691#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8604272832#1138" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDebugDispatcher.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859689.074977
+e639859690.067463
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639859689#639859690#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8606675232#1123" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUDispatch.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859690.768999
+e639859692.046363
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639859690#639859692#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8611331072#1131" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUEffectBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859689.561401
+e639859690.565962
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639859689#639859690#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8610846144#1131" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUInputElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859689.825558
+e639859690.768788
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639859689#639859690#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8603872192#1133" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUOutputElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859690.067615
+e639859691.579301
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639859690#639859691#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8598926976#1131" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/AUScopeElement.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859691.691571
+e639859692.307041
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639859691#639859692#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8610500992#1116" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAUParameter.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859691.326957
+e639859691.575397
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639859691#639859691#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8603969280#1130" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAAudioChannelLayout.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859691.575544
+e639859691.727280
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639859691#639859691#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8612035072#1104" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAMutex.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859691.579442
+e639859691.931545
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639859691#639859691#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8611389280#1138" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAStreamBasicDescription.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859691.727636
+e639859691.816241
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639859691#639859691#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8607524416#1114" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/CAVectorUnit.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859690.566112
+e639859691.297011
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639859690#639859691#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8612830016#1129" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ComponentBase.o
0#
+
+CCompileC build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639859688.593264
+e639859689.825416
+r1
+xCompileC
+xbuild/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp639859688#639859689#0(0"0(0#0#74"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp8611649792#1139" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResEQ.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ-1DB483EC8D75827.o
0#
+
+CCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+s639859682.072002
+e639859682.098236
+r1
+xCopyStringsFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/English.lproj/InfoPlist.strings
+xEnglish.lproj/InfoPlist.strings
+lSLF07#2@36"Copy English.lproj/InfoPlist.strings639859682#639859682#0(0"0(0#0#96"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/English.lproj/InfoPlist.strings8615395264#424" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-16 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/English.lproj
0#
+
+CCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/MacOS/ResEQ normal "ppc i386 x86_64"
+s639859692.467820
+e639859692.471164
+r1
+xCreateUniversalBinary
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/MacOS/ResEQ
+xnormal
+xppc i386 x86_64
+lSLF07#2@97"CreateUniversalBinary build/Release/ResEQ.component/Contents/MacOS/ResEQ normal "ppc i386 x86_64"639859692#639859692#0(0"0(0#0#80"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ppc i386 x86_648601318816#610" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
/usr/bin/lipo -create /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ -output /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/MacOS/ResEQ
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ normal i386
+s639859689.519665
+e639859689.561238
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ
+xnormal
+xi386
+lSLF07#2@133"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ639859689#639859689#0(0"0(0#0#0"8615250752#786" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch i386 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ.LinkFileList -exported_symbols_list ResEQ.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/i386/ResEQ
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ normal ppc
+s639859685.918694
+e639859685.961984
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ
+xnormal
+xppc
+lSLF07#2@132"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ639859685#639859685#0(0"0(0#0#0"8607397920#783" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch ppc -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ.LinkFileList -exported_symbols_list ResEQ.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/ppc/ResEQ
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ normal x86_64
+s639859692.441675
+e639859692.467720
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ
+xnormal
+xx86_64
+lSLF07#2@135"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ639859692#639859692#0(0"0(0#0#0"8603307136#792" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch x86_64 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ.LinkFileList -exported_symbols_list ResEQ.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/Objects-normal/x86_64/ResEQ
0#
+
+CProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Info.plist Info.plist
+s639859682.063752
+e639859682.071891
+r1
+xProcessInfoPlistFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Info.plist
+xInfo.plist
+lSLF07#2@18"Process Info.plist639859682#639859682#0(0"0(0#0#75"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/Info.plist8615845856#392" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
builtin-infoPlistUtility Info.plist -genpkginfo /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/PkgInfo -expandbuildsettings -platform macosx -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Info.plist
0#
+
+CResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc
+s639859692.531540
+e639859692.541624
+r1
+xResMergerCollector
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc
+lSLF07#2@159"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc639859692#639859692#0(0"0(0#0#0"8613846784#419" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
/Developer/Tools/ResMerger -dstIs DF /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc
0#
+
+CResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/ResEQ.rsrc
+s639859692.541711
+e639859692.551415
+r1
+xResMergerProduct
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/ResEQ.rsrc
+lSLF07#2@145"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/ResEQ.rsrc639859692#639859692#0(0"0(0#0#0"8612424320#380" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
/Developer/Tools/ResMerger /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/ResEQ.rsrc -dstIs DF -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component/Contents/Resources/ResEQ.rsrc
0#
+
+CRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc ResEQ.r
+s639859692.471281
+e639859692.531384
+r1
+xRez
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc
+xResEQ.r
+lSLF07#2@11"Rez ResEQ.r639859692#639859692#0(0"0(0#0#72"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.r8600511776#1136" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
/Developer/Tools/Rez -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/ResEQ.build/Release/ResEQ.build/ResourceManagerResources/Objects/ResEQ-F2DE06932BC77829.rsrc -d SystemSevenOrLater=1 -useDF -script Roman -d ppc_YES -d i386_YES -d x86_64_YES -I /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Versions/A/Headers -I /Developer/Examples/CoreAudio/AudioUnits/AUPublic/AUBase -arch ppc -arch i386 -arch x86_64 -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase -i /Developer/Extras/CoreAudio/PublicUtility -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/include -isysroot /Developer/SDKs/MacOSX10.5.sdk /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/ResEQ.r
0#
+
+CTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component
+s639859692.551531
+e639859692.553928
+r1
+xTouch
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component
+lSLF07#2@100"Touch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component639859692#639859692#0(0"0(0#0#0"8612354304#189" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ
/usr/bin/touch -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/ResEQ/build/Release/ResEQ.component
0#
+
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/categories.pbxbtree b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/categories.pbxbtree
new file mode 100644
index 000000000..d3f6bb3b6
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/categories.pbxbtree differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/cdecls.pbxbtree b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/cdecls.pbxbtree
new file mode 100644
index 000000000..2b78ca686
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/cdecls.pbxbtree differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/decls.pbxbtree b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/decls.pbxbtree
new file mode 100644
index 000000000..5d0f69ca0
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/decls.pbxbtree differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/files.pbxbtree b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/files.pbxbtree
new file mode 100644
index 000000000..e1cb896df
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/files.pbxbtree differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/imports.pbxbtree b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/imports.pbxbtree
new file mode 100644
index 000000000..2814e22e4
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/imports.pbxbtree differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/pbxindex.header b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/pbxindex.header
new file mode 100644
index 000000000..5e6882aa8
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/pbxindex.header differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/protocols.pbxbtree b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/protocols.pbxbtree
new file mode 100644
index 000000000..d3f6bb3b6
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/protocols.pbxbtree differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/refs.pbxbtree b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/refs.pbxbtree
new file mode 100644
index 000000000..4528b9b76
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/refs.pbxbtree differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/strings.pbxstrings/control b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/strings.pbxstrings/control
new file mode 100644
index 000000000..2ccb5b100
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/strings.pbxstrings/control differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/strings.pbxstrings/strings b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/strings.pbxstrings/strings
new file mode 100644
index 000000000..f182dc5b6
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/strings.pbxstrings/strings differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/subclasses.pbxbtree b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/subclasses.pbxbtree
new file mode 100644
index 000000000..b9ed5d624
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/subclasses.pbxbtree differ
diff --git a/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/symbols0.pbxsymbols b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/symbols0.pbxsymbols
new file mode 100644
index 000000000..14209ee12
Binary files /dev/null and b/plugins/MacAU/ResEQ/build/ResEQ.build/ResEQ.pbxindex/symbols0.pbxsymbols differ
diff --git a/plugins/MacAU/Slew/Slew.xcodeproj/christopherjohnson.pbxuser b/plugins/MacAU/Slew/Slew.xcodeproj/christopherjohnson.pbxuser
index 4a1badd4c..acce092e7 100755
--- a/plugins/MacAU/Slew/Slew.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacAU/Slew/Slew.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569679199;
- PBXWorkspaceStateSaveDate = 569679199;
+ PBXPerProjectTemplateStateSaveDate = 639860044;
+ PBXWorkspaceStateSaveDate = 639860044;
};
perUserProjectItems = {
8B38EA761D5BFD02003DFCC5 /* PBXTextBookmark */ = 8B38EA761D5BFD02003DFCC5 /* PBXTextBookmark */;
8B792FFC21F49E37006E9731 /* PBXTextBookmark */ = 8B792FFC21F49E37006E9731 /* PBXTextBookmark */;
- 8B792FFE21F49E37006E9731 /* PBXTextBookmark */ = 8B792FFE21F49E37006E9731 /* PBXTextBookmark */;
8B79300821F49E6B006E9731 /* PBXTextBookmark */ = 8B79300821F49E6B006E9731 /* PBXTextBookmark */;
+ 8BA62AB726237DFA00483AAF /* PBXTextBookmark */ = 8BA62AB726237DFA00483AAF /* PBXTextBookmark */;
};
sourceControlManager = 8BD3CCB8148830B20062E48C /* Source Control */;
userBuildSettings = {
@@ -82,16 +82,6 @@
vrLen = 940;
vrLoc = 4175;
};
- 8B792FFE21F49E37006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* Slew.cpp */;
- name = "Slew.cpp: 231";
- rLen = 0;
- rLoc = 10148;
- rType = 0;
- vrLen = 1188;
- vrLoc = 9084;
- };
8B79300821F49E6B006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 8BA05A660720730100365D66 /* Slew.cpp */;
@@ -104,9 +94,9 @@
};
8BA05A660720730100365D66 /* Slew.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {964, 3263}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1236, 4464}}";
sepNavSelRange = "{10148, 0}";
- sepNavVisRange = "{9035, 1237}";
+ sepNavVisRange = "{9286, 980}";
sepNavWindowFrame = "{{545, 47}, {895, 831}}";
};
};
@@ -125,12 +115,22 @@
sepNavVisRange = "{3192, 210}";
};
};
+ 8BA62AB726237DFA00483AAF /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* Slew.cpp */;
+ name = "Slew.cpp: 231";
+ rLen = 0;
+ rLoc = 10148;
+ rType = 0;
+ vrLen = 980;
+ vrLoc = 9286;
+ };
8BC6025B073B072D006C4272 /* Slew.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {810, 2015}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1056, 2610}}";
sepNavSelRange = "{4951, 0}";
- sepNavVisRange = "{4175, 940}";
- sepNavWindowFrame = "{{492, 40}, {909, 838}}";
+ sepNavVisRange = "{3950, 1165}";
+ sepNavWindowFrame = "{{492, 42}, {909, 836}}";
};
};
8BD3CCB8148830B20062E48C /* Source Control */ = {
diff --git a/plugins/MacAU/Slew/Slew.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacAU/Slew/Slew.xcodeproj/christopherjohnson.perspectivev3
index 59e0c294f..78b858585 100755
--- a/plugins/MacAU/Slew/Slew.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacAU/Slew/Slew.xcodeproj/christopherjohnson.perspectivev3
@@ -300,7 +300,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 5
+ 4
2
1
0
@@ -352,12 +352,12 @@
_historyCapacity
0
bookmark
- 8B79300821F49E6B006E9731
+ 8BA62AB726237DFA00483AAF
history
8B38EA761D5BFD02003DFCC5
8B792FFC21F49E37006E9731
- 8B792FFE21F49E37006E9731
+ 8B79300821F49E6B006E9731
SplitCount
@@ -371,18 +371,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {721, 468}}
+ {{0, 0}, {721, 461}}
RubberWindowFrame
365 99 928 744 0 0 1440 878
Module
PBXNavigatorGroup
Proportion
- 468pt
+ 461pt
Proportion
- 230pt
+ 237pt
Tabs
@@ -396,7 +396,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {721, 203}}
+ {{10, 27}, {721, 210}}
+ RubberWindowFrame
+ 365 99 928 744 0 0 1440 878
Module
XCDetailModule
@@ -451,8 +453,6 @@
Frame
{{10, 27}, {721, 203}}
- RubberWindowFrame
- 365 99 928 744 0 0 1440 878
Module
PBXBuildResultsModule
@@ -480,11 +480,11 @@
TableOfContents
- 8B79300921F49E6B006E9731
+ 8BA62AB826237DFA00483AAF
1CA23ED40692098700951B8B
- 8B79300A21F49E6B006E9731
+ 8BA62AB926237DFA00483AAF
8B38EA371D5BF603003DFCC5
- 8B79300B21F49E6B006E9731
+ 8BA62ABA26237DFA00483AAF
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -637,7 +637,7 @@
StatusbarIsVisible
TimeStamp
- 569679467.91034496
+ 639860218.33010495
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -654,8 +654,8 @@
5
WindowOrderList
- 8B79300C21F49E6B006E9731
- /Users/christopherjohnson/Desktop/MacAU/Slew/Slew.xcodeproj
+ 8BA62ABB26237DFA00483AAF
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.xcodeproj
WindowString
365 99 928 744 0 0 1440 878
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o
new file mode 100644
index 000000000..a20eddb1a
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o
new file mode 100644
index 000000000..48e877fb9
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o
new file mode 100644
index 000000000..2fce9264d
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o
new file mode 100644
index 000000000..24b573566
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o
new file mode 100644
index 000000000..7c4ddea60
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o
new file mode 100644
index 000000000..72de6e545
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o
new file mode 100644
index 000000000..0de7107c4
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o
new file mode 100644
index 000000000..4805b497c
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o
new file mode 100644
index 000000000..a6d690efa
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o
new file mode 100644
index 000000000..d180f7727
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o
new file mode 100644
index 000000000..d331fbc18
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o
new file mode 100644
index 000000000..262dc32f7
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o
new file mode 100644
index 000000000..0cfd9b30e
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o
new file mode 100644
index 000000000..263571618
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o
new file mode 100644
index 000000000..62df2c846
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew
new file mode 100755
index 000000000..78244d314
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o
new file mode 100644
index 000000000..e8e9a61e1
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew.LinkFileList b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew.LinkFileList
new file mode 100644
index 000000000..8b3601af6
--- /dev/null
+++ b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o
new file mode 100644
index 000000000..30cbbab77
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o
new file mode 100644
index 000000000..4a424d17b
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o
new file mode 100644
index 000000000..132b8e314
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o
new file mode 100644
index 000000000..a3eb3b0c1
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o
new file mode 100644
index 000000000..c2dfc5807
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o
new file mode 100644
index 000000000..4353d8250
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o
new file mode 100644
index 000000000..feecbbb7e
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o
new file mode 100644
index 000000000..70323f97b
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o
new file mode 100644
index 000000000..5057b57e2
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o
new file mode 100644
index 000000000..b6ffa244f
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o
new file mode 100644
index 000000000..97f98ac2f
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o
new file mode 100644
index 000000000..935e0bfd6
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o
new file mode 100644
index 000000000..b8b51d753
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o
new file mode 100644
index 000000000..4ce4ed3cd
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o
new file mode 100644
index 000000000..9bafdb4fb
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew
new file mode 100755
index 000000000..8b0f0ce5b
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o
new file mode 100644
index 000000000..be587c6d2
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew.LinkFileList b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew.LinkFileList
new file mode 100644
index 000000000..f747f3e67
--- /dev/null
+++ b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o
new file mode 100644
index 000000000..09eceaa64
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o
new file mode 100644
index 000000000..211d87b5c
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o
new file mode 100644
index 000000000..5fc0e15be
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o
new file mode 100644
index 000000000..8e7087417
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o
new file mode 100644
index 000000000..5ce3e81d2
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o
new file mode 100644
index 000000000..7e2b03180
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o
new file mode 100644
index 000000000..3ac5e6806
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o
new file mode 100644
index 000000000..9ee53add2
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o
new file mode 100644
index 000000000..9567a9a86
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o
new file mode 100644
index 000000000..c323b43d1
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o
new file mode 100644
index 000000000..83a99fa40
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o
new file mode 100644
index 000000000..2644b82ff
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o
new file mode 100644
index 000000000..40bba150f
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o
new file mode 100644
index 000000000..3c21a0eac
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o
new file mode 100644
index 000000000..01e70c71b
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew
new file mode 100755
index 000000000..0456d1b9d
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o
new file mode 100644
index 000000000..13f1fe4e7
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew.LinkFileList b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew.LinkFileList
new file mode 100644
index 000000000..2c00ebe6e
--- /dev/null
+++ b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc
new file mode 100644
index 000000000..6b9c9f085
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc
new file mode 100644
index 000000000..fd3f45630
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.dep b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.dep
new file mode 100644
index 000000000..7a5aa2aa6
--- /dev/null
+++ b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.dep
@@ -0,0 +1,59 @@
+e30bf670894175244fd8ab13cde917a1 bd69cec1a3bd22b27b25e976a918f1dd ffffffffffffffffffffffffffffffff 102 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component
+84413791f87164645809df88c5bf716c 60c3a562bcfd827eab1ef746f0160f28 ffffffffffffffffffffffffffffffff 520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/Slew.rsrc
+bc2088dedad58f04ee1fe76413016104 67fcc17e50ab34de887def85512992b5 ffffffffffffffffffffffffffffffff 333976 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/MacOS/Slew
+00000000605576f30000000000000168 dc552d2327e65e17daad8b3cba689b3c ffffffffffffffffffffffffffffffff 360 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/English.lproj/InfoPlist.strings
+00000000000000000000000000000000 58d1f9b060f4b52eca8b5b2296809417 ffffffffffffffffffffffffffffffff 8 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/PkgInfo
+00000000000000000000000000000000 58d1f9b060f4b52eca8b5b2296809417 ffffffffffffffffffffffffffffffff 1107 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Info.plist
+956545444de79143f73e5be164c928ca 112472d5b596f527af378469a17659a6 ffffffffffffffffffffffffffffffff 520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc
+000000004864a72d000000000000035c 956545440583366ef73e5be164c92b96 ffffffffffffffffffffffffffffffff 520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc
+8b83768befe164d7fb977da6103e861f 6fc3dfa9bc930e9af4aeeabe55f96913 ffffffffffffffffffffffffffffffff 112792 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew
+88d8931817b2da57b3792344c32e1508 3c1ac38c15ad141999615bbde2f7a32e ffffffffffffffffffffffffffffffff 106016 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew
+abcfd445b6341777b366927c3bf0734c 476da52d3d8c3c7078589af94cef4b62 ffffffffffffffffffffffffffffffff 110452 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew
+0000000009085486000000000001b528 59de6b407cdd6cfe3f958f4b6d45c0e8 ffffffffffffffffffffffffffffffff 2300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o
+0000000009085486000000000001b528 308ffdd963042f89416eb674a2c080c2 ffffffffffffffffffffffffffffffff 2216 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o
+0000000009085486000000000001b528 b577eddda023413e5af692450128986a ffffffffffffffffffffffffffffffff 2664 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o
+000000000d89aa8e0000000000006fbd 001e025e49d0ec4b1a6b8a9bf60b8cee ffffffffffffffffffffffffffffffff 1284 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 52f0823a19d0acdfb81b6408c3202367 ffffffffffffffffffffffffffffffff 1340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd cb6fe7ea6d4a88c4f063541442e1d5f9 ffffffffffffffffffffffffffffffff 1520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o
+000000004864a73b00000000000067f6 8640cffadf15aa6c440f5d400fc30748 ffffffffffffffffffffffffffffffff 9460 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o
+000000004864a73b00000000000067f6 9540b278465c2c8061763a39fb85a400 ffffffffffffffffffffffffffffffff 8912 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o
+000000004864a73b00000000000067f6 0f35562e6d4a41b24a2cb614b6bfc476 ffffffffffffffffffffffffffffffff 10844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o
+00000000459e514c000000000000b0e9 026be2cdaed97ae5c0864bbc2707352b ffffffffffffffffffffffffffffffff 9476 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 a225fcc165397beb54d5088e8dff0ff4 ffffffffffffffffffffffffffffffff 8332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 4a2f5693cf245dbd91d56418f2173b6a ffffffffffffffffffffffffffffffff 10324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o
+000000000fde02b3000000000000e8c5 35be05fc9b69b840329789220914b2ab ffffffffffffffffffffffffffffffff 4556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o
+000000000fde02b3000000000000e8c5 d5728d31ffd89c221978600a0bf1cd8a ffffffffffffffffffffffffffffffff 4332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o
+000000000fde02b3000000000000e8c5 6ff8cb3ce2a7e560a6cac697e9d299ff ffffffffffffffffffffffffffffffff 5376 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o
+000000000224c870000000000000a1ca 7296dc929ceb06b1cdb8a388fc1f9032 ffffffffffffffffffffffffffffffff 3652 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca d96f1e91fc3be4f4138ad4cd718b799b ffffffffffffffffffffffffffffffff 3452 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca 0553299ad6337304dd2f2612c9c3c3c2 ffffffffffffffffffffffffffffffff 4512 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o
+000000000b2c9e1300000000000045af 2b9f938a4ae26d2cffc5a0a708271bcf ffffffffffffffffffffffffffffffff 344 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 2ad00627d671b676d295aa2e77870394 ffffffffffffffffffffffffffffffff 288 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af e639df7e837952b5ca64a36e67c43be1 ffffffffffffffffffffffffffffffff 356 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o
+0000000000735ce0000000000000debb 01281230c2117506a080bcea21fd12cc ffffffffffffffffffffffffffffffff 3748 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o
+0000000000735ce0000000000000debb d343c67804f1fa75f3c67e9c402b3cf0 ffffffffffffffffffffffffffffffff 3596 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o
+0000000000735ce0000000000000debb a34d3bba0724455faf58847a02434654 ffffffffffffffffffffffffffffffff 4340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o
+000000000b7e84bf00000000000078d4 46cd5c35200651af15a36fb79988464d ffffffffffffffffffffffffffffffff 20844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o
+000000000b7e84bf00000000000078d4 bbb1b2ea154f29b52337d701eda4cd9f ffffffffffffffffffffffffffffffff 19796 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o
+000000000b7e84bf00000000000078d4 97dedc1e1a3e0bae6bec874d610cefec ffffffffffffffffffffffffffffffff 22368 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o
+000000004cd54809000000000000c180 e33fa2a29f9bb59493e6b2aa8f61518c ffffffffffffffffffffffffffffffff 4836 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o
+000000004cd54809000000000000c180 53bd9d40f5d9a9d800d12cb40da951fa ffffffffffffffffffffffffffffffff 4300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o
+000000004cd54809000000000000c180 d69662cc742ecb04535270536ada2df6 ffffffffffffffffffffffffffffffff 5080 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o
+000000000257e57600000000000074ab f7ce2f8680d6f3c2355898df4dc7ceb8 ffffffffffffffffffffffffffffffff 25916 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o
+000000000257e57600000000000074ab 5014101b0ac5943912f2b2cf74c02bcf ffffffffffffffffffffffffffffffff 24616 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o
+000000000257e57600000000000074ab 87b1664ffc029e49bd774232d0ddc502 ffffffffffffffffffffffffffffffff 29532 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o
+00000000459e20a7000000000000dea0 9f913d129a7441ad35b5b0592475224c ffffffffffffffffffffffffffffffff 5712 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o
+00000000459e20a7000000000000dea0 5c2e94515df73395bb5e231174a7c07c ffffffffffffffffffffffffffffffff 5484 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o
+00000000459e20a7000000000000dea0 adc1ca5a30674443bbe145df17b053ef ffffffffffffffffffffffffffffffff 6632 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o
+000000000b7e84bf00000000000004cc 9f91983dc34ba2bd95aa1c9e53bddf26 ffffffffffffffffffffffffffffffff 7848 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o
+000000000b7e84bf00000000000004cc 0d01d484325d88788e59eecae227742d ffffffffffffffffffffffffffffffff 7552 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o
+000000000b7e84bf00000000000004cc 99c3ea2fe3dbab3ec501c755404dc8d6 ffffffffffffffffffffffffffffffff 9176 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o
+0000000004a0f5680000000000000b33 a2ca29699080d4effcc80bc722af1b63 ffffffffffffffffffffffffffffffff 4456 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o
+0000000004a0f5680000000000000b33 b24e01cc4e5e9e55562417e0776be7af ffffffffffffffffffffffffffffffff 5324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o
+0000000004a0f5680000000000000b33 ee23547fdb6ad30e009d6e3968d8bad2 ffffffffffffffffffffffffffffffff 6360 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o
+00000000413e98c60000000000017e35 9939b164241fa0315831415f5149d3b3 ffffffffffffffffffffffffffffffff 63236 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o
+00000000413e98c60000000000017e35 7f6ddd737b259622af0e6351f1ce0025 ffffffffffffffffffffffffffffffff 62760 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o
+00000000413e98c60000000000017e35 9c06f004cd85c5b25eee01bed8844965 ffffffffffffffffffffffffffffffff 73140 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o
+0000000060076c5f00000000000075fb 52388645b1deb2e64d71fbf020377b59 ffffffffffffffffffffffffffffffff 16332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o
+0000000060076c5f00000000000075fb 0c58526668863d90a93753ea1dd83627 ffffffffffffffffffffffffffffffff 15120 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o
+0000000060076c5f00000000000075fb 3fcc843e79df44cf7989199145ffcda7 ffffffffffffffffffffffffffffffff 18316 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap
new file mode 100644
index 000000000..52d03b761
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew~.dep b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew~.dep
new file mode 100644
index 000000000..7a5aa2aa6
--- /dev/null
+++ b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew~.dep
@@ -0,0 +1,59 @@
+e30bf670894175244fd8ab13cde917a1 bd69cec1a3bd22b27b25e976a918f1dd ffffffffffffffffffffffffffffffff 102 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component
+84413791f87164645809df88c5bf716c 60c3a562bcfd827eab1ef746f0160f28 ffffffffffffffffffffffffffffffff 520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/Slew.rsrc
+bc2088dedad58f04ee1fe76413016104 67fcc17e50ab34de887def85512992b5 ffffffffffffffffffffffffffffffff 333976 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/MacOS/Slew
+00000000605576f30000000000000168 dc552d2327e65e17daad8b3cba689b3c ffffffffffffffffffffffffffffffff 360 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/English.lproj/InfoPlist.strings
+00000000000000000000000000000000 58d1f9b060f4b52eca8b5b2296809417 ffffffffffffffffffffffffffffffff 8 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/PkgInfo
+00000000000000000000000000000000 58d1f9b060f4b52eca8b5b2296809417 ffffffffffffffffffffffffffffffff 1107 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Info.plist
+956545444de79143f73e5be164c928ca 112472d5b596f527af378469a17659a6 ffffffffffffffffffffffffffffffff 520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc
+000000004864a72d000000000000035c 956545440583366ef73e5be164c92b96 ffffffffffffffffffffffffffffffff 520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc
+8b83768befe164d7fb977da6103e861f 6fc3dfa9bc930e9af4aeeabe55f96913 ffffffffffffffffffffffffffffffff 112792 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew
+88d8931817b2da57b3792344c32e1508 3c1ac38c15ad141999615bbde2f7a32e ffffffffffffffffffffffffffffffff 106016 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew
+abcfd445b6341777b366927c3bf0734c 476da52d3d8c3c7078589af94cef4b62 ffffffffffffffffffffffffffffffff 110452 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew
+0000000009085486000000000001b528 59de6b407cdd6cfe3f958f4b6d45c0e8 ffffffffffffffffffffffffffffffff 2300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o
+0000000009085486000000000001b528 308ffdd963042f89416eb674a2c080c2 ffffffffffffffffffffffffffffffff 2216 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o
+0000000009085486000000000001b528 b577eddda023413e5af692450128986a ffffffffffffffffffffffffffffffff 2664 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o
+000000000d89aa8e0000000000006fbd 001e025e49d0ec4b1a6b8a9bf60b8cee ffffffffffffffffffffffffffffffff 1284 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 52f0823a19d0acdfb81b6408c3202367 ffffffffffffffffffffffffffffffff 1340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd cb6fe7ea6d4a88c4f063541442e1d5f9 ffffffffffffffffffffffffffffffff 1520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o
+000000004864a73b00000000000067f6 8640cffadf15aa6c440f5d400fc30748 ffffffffffffffffffffffffffffffff 9460 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o
+000000004864a73b00000000000067f6 9540b278465c2c8061763a39fb85a400 ffffffffffffffffffffffffffffffff 8912 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o
+000000004864a73b00000000000067f6 0f35562e6d4a41b24a2cb614b6bfc476 ffffffffffffffffffffffffffffffff 10844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o
+00000000459e514c000000000000b0e9 026be2cdaed97ae5c0864bbc2707352b ffffffffffffffffffffffffffffffff 9476 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 a225fcc165397beb54d5088e8dff0ff4 ffffffffffffffffffffffffffffffff 8332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 4a2f5693cf245dbd91d56418f2173b6a ffffffffffffffffffffffffffffffff 10324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o
+000000000fde02b3000000000000e8c5 35be05fc9b69b840329789220914b2ab ffffffffffffffffffffffffffffffff 4556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o
+000000000fde02b3000000000000e8c5 d5728d31ffd89c221978600a0bf1cd8a ffffffffffffffffffffffffffffffff 4332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o
+000000000fde02b3000000000000e8c5 6ff8cb3ce2a7e560a6cac697e9d299ff ffffffffffffffffffffffffffffffff 5376 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o
+000000000224c870000000000000a1ca 7296dc929ceb06b1cdb8a388fc1f9032 ffffffffffffffffffffffffffffffff 3652 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca d96f1e91fc3be4f4138ad4cd718b799b ffffffffffffffffffffffffffffffff 3452 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca 0553299ad6337304dd2f2612c9c3c3c2 ffffffffffffffffffffffffffffffff 4512 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o
+000000000b2c9e1300000000000045af 2b9f938a4ae26d2cffc5a0a708271bcf ffffffffffffffffffffffffffffffff 344 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 2ad00627d671b676d295aa2e77870394 ffffffffffffffffffffffffffffffff 288 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af e639df7e837952b5ca64a36e67c43be1 ffffffffffffffffffffffffffffffff 356 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o
+0000000000735ce0000000000000debb 01281230c2117506a080bcea21fd12cc ffffffffffffffffffffffffffffffff 3748 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o
+0000000000735ce0000000000000debb d343c67804f1fa75f3c67e9c402b3cf0 ffffffffffffffffffffffffffffffff 3596 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o
+0000000000735ce0000000000000debb a34d3bba0724455faf58847a02434654 ffffffffffffffffffffffffffffffff 4340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o
+000000000b7e84bf00000000000078d4 46cd5c35200651af15a36fb79988464d ffffffffffffffffffffffffffffffff 20844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o
+000000000b7e84bf00000000000078d4 bbb1b2ea154f29b52337d701eda4cd9f ffffffffffffffffffffffffffffffff 19796 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o
+000000000b7e84bf00000000000078d4 97dedc1e1a3e0bae6bec874d610cefec ffffffffffffffffffffffffffffffff 22368 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o
+000000004cd54809000000000000c180 e33fa2a29f9bb59493e6b2aa8f61518c ffffffffffffffffffffffffffffffff 4836 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o
+000000004cd54809000000000000c180 53bd9d40f5d9a9d800d12cb40da951fa ffffffffffffffffffffffffffffffff 4300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o
+000000004cd54809000000000000c180 d69662cc742ecb04535270536ada2df6 ffffffffffffffffffffffffffffffff 5080 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o
+000000000257e57600000000000074ab f7ce2f8680d6f3c2355898df4dc7ceb8 ffffffffffffffffffffffffffffffff 25916 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o
+000000000257e57600000000000074ab 5014101b0ac5943912f2b2cf74c02bcf ffffffffffffffffffffffffffffffff 24616 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o
+000000000257e57600000000000074ab 87b1664ffc029e49bd774232d0ddc502 ffffffffffffffffffffffffffffffff 29532 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o
+00000000459e20a7000000000000dea0 9f913d129a7441ad35b5b0592475224c ffffffffffffffffffffffffffffffff 5712 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o
+00000000459e20a7000000000000dea0 5c2e94515df73395bb5e231174a7c07c ffffffffffffffffffffffffffffffff 5484 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o
+00000000459e20a7000000000000dea0 adc1ca5a30674443bbe145df17b053ef ffffffffffffffffffffffffffffffff 6632 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o
+000000000b7e84bf00000000000004cc 9f91983dc34ba2bd95aa1c9e53bddf26 ffffffffffffffffffffffffffffffff 7848 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o
+000000000b7e84bf00000000000004cc 0d01d484325d88788e59eecae227742d ffffffffffffffffffffffffffffffff 7552 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o
+000000000b7e84bf00000000000004cc 99c3ea2fe3dbab3ec501c755404dc8d6 ffffffffffffffffffffffffffffffff 9176 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o
+0000000004a0f5680000000000000b33 a2ca29699080d4effcc80bc722af1b63 ffffffffffffffffffffffffffffffff 4456 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o
+0000000004a0f5680000000000000b33 b24e01cc4e5e9e55562417e0776be7af ffffffffffffffffffffffffffffffff 5324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o
+0000000004a0f5680000000000000b33 ee23547fdb6ad30e009d6e3968d8bad2 ffffffffffffffffffffffffffffffff 6360 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o
+00000000413e98c60000000000017e35 9939b164241fa0315831415f5149d3b3 ffffffffffffffffffffffffffffffff 63236 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o
+00000000413e98c60000000000017e35 7f6ddd737b259622af0e6351f1ce0025 ffffffffffffffffffffffffffffffff 62760 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o
+00000000413e98c60000000000017e35 9c06f004cd85c5b25eee01bed8844965 ffffffffffffffffffffffffffffffff 73140 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o
+0000000060076c5f00000000000075fb 52388645b1deb2e64d71fbf020377b59 ffffffffffffffffffffffffffffffff 16332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o
+0000000060076c5f00000000000075fb 0c58526668863d90a93753ea1dd83627 ffffffffffffffffffffffffffffffff 15120 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o
+0000000060076c5f00000000000075fb 3fcc843e79df44cf7989199145ffcda7 ffffffffffffffffffffffffffffffff 18316 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/build-state.dat b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/build-state.dat
new file mode 100644
index 000000000..94e73bc41
--- /dev/null
+++ b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/build-state.dat
@@ -0,0 +1,1612 @@
+TSlew
+v7
+r0
+t639860059.472286
+cCheck dependencies
+cProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Info.plist Info.plist
+cCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew normal ppc
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew normal i386
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew normal x86_64
+cCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/MacOS/Slew normal "ppc i386 x86_64"
+cRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc Slew.r
+cResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc
+cResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/Slew.rsrc
+cTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+c000000004A12495000000000000104EE
+t1242712400
+s66798
+i"AUBase.h"
+i"AUDispatch.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i
+i"CAAudioChannelLayout.h"
+i"CAHostTimeBase.h"
+i"CAVectorUnit.h"
+i"CAXException.h"
+i"AUBaseHelper.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.h
+c000000004A1249500000000000008203
+t1242712400
+s33283
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUScopeElement.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i"AUBuffer.h"
+i"CAMath.h"
+i"CAThreadSafeList.h"
+i"CAVectorUnit.h"
+i"CATrace.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+c000000004CC46C4D00000000000037D2
+t1287941197
+s14290
+i"AUBase.h"
+i"CAXException.h"
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.h
+c000000004A1249500000000000000D7E
+t1242712400
+s3454
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+c000000004A12495000000000000014D3
+t1242712400
+s5331
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.h
+c000000004A12495000000000000011E5
+t1242712400
+s4581
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+c000000004A1249500000000000000B01
+t1242712400
+s2817
+i"AUOutputElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.h
+c000000004A1249500000000000000B84
+t1242712400
+s2948
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+c000000004A12495000000000000042C4
+t1242712400
+s17092
+i"AUScopeElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.h
+c000000004A12495000000000000049D5
+t1242712400
+s18901
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+c000000004A1249500000000000001985
+t1242712400
+s6533
+i"ComponentBase.h"
+i"CAXException.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.h
+c000000004CC46C4D0000000000001FED
+t1287941197
+s8173
+i
+i"CADebugMacros.h"
+i
+i
+i
+i
+i"CoreAudioTypes.h"
+i"Components.h"
+i"AudioUnit.h"
+i"CAGuard.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+c000000004A12495000000000000041B8
+t1242712400
+s16824
+i"AUEffectBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.h
+c000000004A1249500000000000002520
+t1242712400
+s9504
+i"AUBase.h"
+i"AUSilentTimeout.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+c000000004A1249500000000000001347
+t1242712400
+s4935
+i"AUBaseHelper.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.h
+c000000004A1249500000000000000D1B
+t1242712400
+s3355
+i
+i
+i
+i
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+c000000004A1249500000000000001C88
+t1242712400
+s7304
+i"AUBuffer.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.h
+c000000004A12495000000000000021E4
+t1242712400
+s8676
+i
+i
+i
+i
+i"CAStreamBasicDescription.h"
+i"CAAutoDisposer.h"
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+c000000004A1249500000000000003FB0
+t1242712400
+s16304
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.h
+c000000004A1249500000000000001407
+t1242712400
+s5127
+i"CAHostTimeBase.h"
+i"CAMutex.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUSilentTimeout.h
+c000000004A1249500000000000000C53
+t1242712400
+s3155
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+c000000004A12495000000000000031DF
+t1242712400
+s12767
+i"CAAUParameter.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.h
+c000000004A1249500000000000001BD1
+t1242712400
+s7121
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomic.h
+c000000004A12495000000000000027B0
+t1242712400
+s10160
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomicStack.h
+c000000004A1249500000000000001A7C
+t1242712400
+s6780
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+c000000004A124950000000000000188C
+t1242712400
+s6284
+i"CAAudioChannelLayout.h"
+i"CAAutoDisposer.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.h
+c000000004A1249500000000000001E94
+t1242712400
+s7828
+i
+i
+i
+i
+i
+i
+i
+i"CADebugMacros.h"
+i"CAAutoDisposer.h"
+i"CAReferenceCounted.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAutoDisposer.h
+c000000004A1249500000000000002F87
+t1242712400
+s12167
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugMacros.h
+c000000004A1249500000000000004FAE
+t1242712400
+s20398
+i
+i"CoreAudioTypes.h"
+i"CADebugPrintf.h"
+i
+i"CAHostTimeBase.h"
+i"CAHostTimeBase.h"
+i"CADebugger.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugPrintf.h
+c000000004A124950000000000000111C
+t1242712400
+s4380
+i
+i"CoreAudioTypes.h"
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugger.h
+c000000004A1249500000000000000A9C
+t1242712400
+s2716
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAException.h
+c000000004A1249500000000000000DDC
+t1242712400
+s3548
+i
+i"CoreAudioTypes.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAGuard.h
+c000000004A12495000000000000012A2
+t1242712400
+s4770
+i"CAMutex.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAHostTimeBase.h
+c000000004A1249500000000000001C6C
+t1242712400
+s7276
+i
+i
+i
+i
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CALogMacros.h
+c000000004A12495000000000000019A2
+t1242712400
+s6562
+i"CADebugMacros.h"
+i"CADebugPrintf.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMath.h
+c000000004A1249500000000000000C6B
+t1242712400
+s3179
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+c000000004A12495000000000000030DE
+t1242712400
+s12510
+i"CAMutex.h"
+i
+i"CADebugMacros.h"
+i"CAException.h"
+i"CAHostTimeBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.h
+c000000004A124950000000000000128C
+t1242712400
+s4748
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAReferenceCounted.h
+c000000004A1249500000000000000C97
+t1242712400
+s3223
+i"CAAtomic.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+c000000004A1249500000000000004E32
+t1242712400
+s20018
+i"CAStreamBasicDescription.h"
+i"CAMath.h"
+i
+i
+i"CALogMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.h
+c000000004A1249500000000000002E6C
+t1242712400
+s11884
+i
+i
+i"CoreAudioTypes.h"
+i"CoreFoundation.h"
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAThreadSafeList.h
+c000000004A1249500000000000001D08
+t1242712400
+s7432
+i"CAAtomicStack.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+c000000004CC46C4D000000000000163D
+t1287941197
+s5693
+i"CAVectorUnit.h"
+i
+i"ippdefs.h"
+i"ippcore.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.h
+c000000004CC46C4D0000000000000EC3
+t1287941197
+s3779
+i
+i"CAVectorUnitTypes.h"
+i
+i
+i
+i"CFBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnitTypes.h
+c000000004A1249500000000000000A3C
+t1242712400
+s2620
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAXException.h
+c000000004A1249500000000000002965
+t1242712400
+s10597
+i
+i
+i
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/SDKs/MacOSX10.5.sdk
+c000000004A49A9E400000000000000EE
+t1246341604
+s238
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioUnitUtilities.h
+c000000004864A73B0000000000004DF8
+t1214555963
+s19960
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AUComponent.h
+c000000004864A72E0000000000003F7C
+t1214555950
+s16252
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.h
+c000000004864A72E00000000000003CC
+t1214555950
+s972
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.r
+c000000004864A72D000000000000026E
+t1214555949
+s622
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnitProperties.h
+c000000004864A72E0000000000018D55
+t1214555950
+s101717
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/CoreAudioTypes.h
+c0000000048649BCC000000000000E5E6
+t1214553036
+s58854
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h
+c00000000486499670000000000003438
+t1214552423
+s13368
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h
+c0000000048649968000000000000192A
+t1214552424
+s6442
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h
+c00000000486499690000000000000942
+t1214552425
+s2370
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h
+c0000000047BAD4120000000000000400
+t1203426322
+s1024
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers/Components.h
+c0000000048649BE6000000000000D5E1
+t1214553062
+s54753
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/TargetConditionals.h
+c000000004817F9680000000000002778
+t1209530728
+s10104
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/ctype.h
+c0000000047BA99310000000000002C3A
+t1203411249
+s11322
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/dlfcn.h
+c00000000487581E60000000000000AC7
+t1215660518
+s2759
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/errno.h
+c0000000047BA993000000000000003EB
+t1203411248
+s1003
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/libkern/OSAtomic.h
+c0000000047BA993000000000000024B9
+t1203411248
+s9401
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h
+c0000000047E8839E0000000000000746
+t1206420382
+s1862
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h
+c0000000047BA9932000000000000380F
+t1203411250
+s14351
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdio.h
+c0000000047BA99310000000000003D1D
+t1203411249
+s15645
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdlib.h
+c0000000047BA99310000000000002A79
+t1203411249
+s10873
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h
+c0000000047BA99320000000000001731
+t1203411250
+s5937
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/sysctl.h
+c0000000047E883D1000000000000795B
+t1206420433
+s31067
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/syslog.h
+c0000000047E883D100000000000021EC
+t1206420433
+s8684
+
+N/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
+c000000004EE0342D000000000051BA20
+t1323316269
+s5356064
+
+N/System/Library/Frameworks/AudioUnit.framework/AudioUnit
+c000000004EE033220000000000012150
+t1323316002
+s74064
+
+N/System/Library/Frameworks/CoreServices.framework/CoreServices
+c000000004C23F49F0000000000021710
+t1277424799
+s136976
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/English.lproj/InfoPlist.strings
+c00000000605576F30000000000000168
+t1616213747
+s360
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp
+c00000000605576F30000000000002820
+t1616213747
+s10272
+i"Slew.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.h
+c00000000605576F300000000000013FB
+t1616213747
+s5115
+i"AUEffectBase.h"
+i"SlewVersion.h"
+i"AUDebugDispatcher.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.r
+c00000000605576F30000000000000C61
+t1616213747
+s3169
+i
+i"SlewVersion.h"
+i"AUResources.r"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/SlewVersion.h
+c00000000605576F30000000000000D53
+t1616213747
+s3411
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component
+t1618167259
+s102
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Info.plist
+t1618167249
+s1107
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/MacOS/Slew
+t1618167259
+s333976
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/PkgInfo
+t1618167249
+s8
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/English.lproj/InfoPlist.strings
+t1618167249
+s360
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/Slew.rsrc
+t1618167259
+s520
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o
+t1618167254
+s62760
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o
+t1618167256
+s2216
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o
+t1618167255
+s3596
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o
+t1618167254
+s288
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o
+t1618167253
+s5324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o
+t1618167255
+s19796
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o
+t1618167253
+s7552
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o
+t1618167254
+s5484
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o
+t1618167255
+s24616
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o
+t1618167256
+s8912
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o
+t1618167255
+s3452
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o
+t1618167255
+s4332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o
+t1618167255
+s8332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o
+t1618167255
+s1340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o
+t1618167254
+s4300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew
+t1618167256
+s106016
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o
+t1618167253
+s15120
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew.LinkFileList
+c00000000607345D10000000000000889
+t1618167249
+s2185
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o
+t1618167251
+s73140
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o
+t1618167252
+s2664
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o
+t1618167251
+s4340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o
+t1618167251
+s356
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o
+t1618167250
+s6360
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o
+t1618167252
+s22368
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o
+t1618167250
+s9176
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o
+t1618167251
+s6632
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o
+t1618167251
+s29532
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o
+t1618167252
+s10844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o
+t1618167251
+s4512
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o
+t1618167251
+s5376
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o
+t1618167252
+s10324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o
+t1618167252
+s1520
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o
+t1618167250
+s5080
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew
+t1618167252
+s110452
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o
+t1618167250
+s18316
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew.LinkFileList
+c00000000607345D10000000000000879
+t1618167249
+s2169
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o
+t1618167257
+s63236
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o
+t1618167259
+s2300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o
+t1618167258
+s3748
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o
+t1618167258
+s344
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o
+t1618167257
+s4456
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o
+t1618167258
+s20844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o
+t1618167257
+s7848
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o
+t1618167257
+s5712
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o
+t1618167258
+s25916
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o
+t1618167259
+s9460
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+t1618167258
+s3652
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o
+t1618167258
+s4556
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+t1618167258
+s9476
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o
+t1618167258
+s1284
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o
+t1618167258
+s4836
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew
+t1618167259
+s112792
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o
+t1618167256
+s16332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew.LinkFileList
+c00000000607345D100000000000008A9
+t1618167249
+s2217
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc
+t1618167259
+s520
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc
+t1618167259
+s520
+
+NInfo.plist
+c00000000605576F30000000000000361
+t1616213747
+s865
+
+NSlew.exp
+c00000000605576F3000000000000000B
+t1616213747
+s11
+
+CCheck dependencies
+r0
+lSLF07#2@18"Check dependencies639860048#639860049#0(0"0(0#1#0"8611278816#0"0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860052.299903
+e639860054.699505
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639860052#639860054#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8612739040#1093" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860055.562696
+e639860056.508937
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639860055#639860056#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8608027360#1106" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860054.699634
+e639860055.494724
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639860054#639860055#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8615441632#1098" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860054.769984
+e639860054.799246
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639860054#639860054#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8613995072#1116" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860052.688757
+e639860053.707698
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639860052#639860053#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8608320128#1101" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860054.256131
+e639860055.594942
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639860054#639860055#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8609947104#1109" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860052.980002
+e639860054.006691
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639860052#639860054#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8610724768#1109" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860053.273303
+e639860054.255915
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639860053#639860054#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8611684480#1111" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860053.707848
+e639860055.284704
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639860053#639860055#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8610431488#1109" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860055.284849
+e639860056.112322
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639860055#639860056#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8608799136#1094" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860054.799389
+e639860055.038997
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639860054#639860055#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8612985024#1108" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860055.039143
+e639860055.190438
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639860055#639860055#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8611068128#1082" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860055.190584
+e639860055.562563
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639860055#639860055#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8610428000#1116" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860055.494872
+e639860055.584771
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639860055#639860055#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8600841184#1092" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860054.006832
+e639860054.769843
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639860054#639860054#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8599067104#1107" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860052.185321
+e639860053.273168
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp639860052#639860053#0(0"0(0#0#72"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp8613445440#1114" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860049.155158
+e639860051.529058
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639860049#639860051#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8611572384#1100" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860052.012558
+e639860052.936976
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639860052#639860052#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8611457024#1113" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860051.068748
+e639860051.926189
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639860051#639860051#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8608095296#1105" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860051.529202
+e639860051.563907
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639860051#639860051#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8600077632#1123" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860049.155933
+e639860050.144305
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639860049#639860050#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8610512448#1108" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860050.924988
+e639860052.299752
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639860050#639860052#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8610982336#1116" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860049.156984
+e639860050.130591
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639860049#639860050#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8608536672#1116" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860050.130735
+e639860051.068602
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639860050#639860051#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8602864416#1118" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860050.144450
+e639860051.720124
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639860050#639860051#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8602927680#1116" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860051.868149
+e639860052.688497
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639860051#639860052#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8612597792#1101" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860051.564059
+e639860051.807143
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639860051#639860051#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8598862496#1115" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860051.720279
+e639860051.868000
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639860051#639860051#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8610473344#1089" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860051.807296
+e639860052.185181
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639860051#639860052#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8615854208#1123" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860051.926332
+e639860052.012205
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639860051#639860052#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8612259232#1099" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860050.207410
+e639860050.924742
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639860050#639860050#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8610070464#1114" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860049.154303
+e639860050.207273
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp639860049#639860050#0(0"0(0#0#72"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp8615213280#1121" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860055.595083
+e639860057.835247
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639860055#639860057#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8607546592#1099" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860058.745186
+e639860059.359556
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639860058#639860059#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8610476896#1112" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860057.835475
+e639860058.626208
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639860057#639860058#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8606959296#1104" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860058.249941
+e639860058.279096
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639860058#639860058#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8598301792#1122" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860056.112578
+e639860057.084344
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639860056#639860057#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8612005408#1107" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860057.557869
+e639860058.859230
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639860057#639860058#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8608771712#1115" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860056.549983
+e639860057.537962
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639860056#639860057#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8610378112#1115" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860056.617850
+e639860057.557710
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639860056#639860057#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8608772480#1117" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860057.084487
+e639860058.589864
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639860057#639860058#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8611153344#1115" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860058.626353
+e639860059.233194
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639860058#639860059#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8611847968#1100" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860058.279246
+e639860058.516797
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639860058#639860058#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8607398400#1114" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860058.516953
+e639860058.656118
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639860058#639860058#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8613774848#1088" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860058.590012
+e639860058.935314
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639860058#639860058#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8612693568#1122" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860058.656253
+e639860058.745037
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639860058#639860058#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8611111872#1098" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860057.538107
+e639860058.249798
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639860057#639860058#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8610110624#1113" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860055.584923
+e639860056.617705
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp639860055#639860056#0(0"0(0#0#72"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp8607831168#1120" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o
0#
+
+CCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+s639860049.129267
+e639860049.154205
+r1
+xCopyStringsFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/English.lproj/InfoPlist.strings
+xEnglish.lproj/InfoPlist.strings
+lSLF07#2@36"Copy English.lproj/InfoPlist.strings639860049#639860049#0(0"0(0#0#95"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/English.lproj/InfoPlist.strings8610321504#421" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-16 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/English.lproj
0#
+
+CCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/MacOS/Slew normal "ppc i386 x86_64"
+s639860059.386329
+e639860059.389643
+r1
+xCreateUniversalBinary
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/MacOS/Slew
+xnormal
+xppc i386 x86_64
+lSLF07#2@95"CreateUniversalBinary build/Release/Slew.component/Contents/MacOS/Slew normal "ppc i386 x86_64"639860059#639860059#0(0"0(0#0#79"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/ppc i386 x86_648600511008#594" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
/usr/bin/lipo -create /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew -output /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/MacOS/Slew
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew normal i386
+s639860056.509081
+e639860056.549826
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew
+xnormal
+xi386
+lSLF07#2@129"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew639860056#639860056#0(0"0(0#0#0"8611143808#774" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch i386 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew.LinkFileList -exported_symbols_list Slew.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew normal ppc
+s639860052.937105
+e639860052.979834
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew
+xnormal
+xppc
+lSLF07#2@128"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew639860052#639860052#0(0"0(0#0#0"8601236512#771" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch ppc -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew.LinkFileList -exported_symbols_list Slew.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew normal x86_64
+s639860059.359744
+e639860059.386229
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew
+xnormal
+xx86_64
+lSLF07#2@131"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew639860059#639860059#0(0"0(0#0#0"8607810528#780" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch x86_64 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew.LinkFileList -exported_symbols_list Slew.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew
0#
+
+CProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Info.plist Info.plist
+s639860049.125955
+e639860049.129158
+r1
+xProcessInfoPlistFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Info.plist
+xInfo.plist
+lSLF07#2@18"Process Info.plist639860049#639860049#0(0"0(0#0#74"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Info.plist8594703136#387" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
builtin-infoPlistUtility Info.plist -genpkginfo /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/PkgInfo -expandbuildsettings -platform macosx -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Info.plist
0#
+
+CResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc
+s639860059.449453
+e639860059.459595
+r1
+xResMergerCollector
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc
+lSLF07#2@155"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc639860059#639860059#0(0"0(0#0#0"8615266848#410" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
/Developer/Tools/ResMerger -dstIs DF /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc
0#
+
+CResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/Slew.rsrc
+s639860059.459691
+e639860059.469756
+r1
+xResMergerProduct
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/Slew.rsrc
+lSLF07#2@142"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/Slew.rsrc639860059#639860059#0(0"0(0#0#0"8613430496#372" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
/Developer/Tools/ResMerger /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc -dstIs DF -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/Slew.rsrc
0#
+
+CRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc Slew.r
+s639860059.389726
+e639860059.449345
+r1
+xRez
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc
+xSlew.r
+lSLF07#2@10"Rez Slew.r639860059#639860059#0(0"0(0#0#70"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.r8599254336#1126" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
/Developer/Tools/Rez -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc -d SystemSevenOrLater=1 -useDF -script Roman -d ppc_YES -d i386_YES -d x86_64_YES -I /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Versions/A/Headers -I /Developer/Examples/CoreAudio/AudioUnits/AUPublic/AUBase -arch ppc -arch i386 -arch x86_64 -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase -i /Developer/Extras/CoreAudio/PublicUtility -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -isysroot /Developer/SDKs/MacOSX10.5.sdk /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.r
0#
+
+CTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component
+s639860059.469847
+e639860059.472249
+r1
+xTouch
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component
+lSLF07#2@98"Touch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component639860059#639860059#0(0"0(0#0#0"8612924864#186" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
/usr/bin/touch -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component
0#
+
diff --git a/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/build-state~.dat b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/build-state~.dat
new file mode 100644
index 000000000..94e73bc41
--- /dev/null
+++ b/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/build-state~.dat
@@ -0,0 +1,1612 @@
+TSlew
+v7
+r0
+t639860059.472286
+cCheck dependencies
+cProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Info.plist Info.plist
+cCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew normal ppc
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew normal i386
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew normal x86_64
+cCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/MacOS/Slew normal "ppc i386 x86_64"
+cRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc Slew.r
+cResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc
+cResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/Slew.rsrc
+cTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+c000000004A12495000000000000104EE
+t1242712400
+s66798
+i"AUBase.h"
+i"AUDispatch.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i
+i"CAAudioChannelLayout.h"
+i"CAHostTimeBase.h"
+i"CAVectorUnit.h"
+i"CAXException.h"
+i"AUBaseHelper.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.h
+c000000004A1249500000000000008203
+t1242712400
+s33283
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUScopeElement.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i"AUBuffer.h"
+i"CAMath.h"
+i"CAThreadSafeList.h"
+i"CAVectorUnit.h"
+i"CATrace.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+c000000004CC46C4D00000000000037D2
+t1287941197
+s14290
+i"AUBase.h"
+i"CAXException.h"
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.h
+c000000004A1249500000000000000D7E
+t1242712400
+s3454
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+c000000004A12495000000000000014D3
+t1242712400
+s5331
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.h
+c000000004A12495000000000000011E5
+t1242712400
+s4581
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+c000000004A1249500000000000000B01
+t1242712400
+s2817
+i"AUOutputElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.h
+c000000004A1249500000000000000B84
+t1242712400
+s2948
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+c000000004A12495000000000000042C4
+t1242712400
+s17092
+i"AUScopeElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.h
+c000000004A12495000000000000049D5
+t1242712400
+s18901
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+c000000004A1249500000000000001985
+t1242712400
+s6533
+i"ComponentBase.h"
+i"CAXException.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.h
+c000000004CC46C4D0000000000001FED
+t1287941197
+s8173
+i
+i"CADebugMacros.h"
+i
+i
+i
+i
+i"CoreAudioTypes.h"
+i"Components.h"
+i"AudioUnit.h"
+i"CAGuard.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+c000000004A12495000000000000041B8
+t1242712400
+s16824
+i"AUEffectBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.h
+c000000004A1249500000000000002520
+t1242712400
+s9504
+i"AUBase.h"
+i"AUSilentTimeout.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+c000000004A1249500000000000001347
+t1242712400
+s4935
+i"AUBaseHelper.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.h
+c000000004A1249500000000000000D1B
+t1242712400
+s3355
+i
+i
+i
+i
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+c000000004A1249500000000000001C88
+t1242712400
+s7304
+i"AUBuffer.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.h
+c000000004A12495000000000000021E4
+t1242712400
+s8676
+i
+i
+i
+i
+i"CAStreamBasicDescription.h"
+i"CAAutoDisposer.h"
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+c000000004A1249500000000000003FB0
+t1242712400
+s16304
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.h
+c000000004A1249500000000000001407
+t1242712400
+s5127
+i"CAHostTimeBase.h"
+i"CAMutex.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUSilentTimeout.h
+c000000004A1249500000000000000C53
+t1242712400
+s3155
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+c000000004A12495000000000000031DF
+t1242712400
+s12767
+i"CAAUParameter.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.h
+c000000004A1249500000000000001BD1
+t1242712400
+s7121
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomic.h
+c000000004A12495000000000000027B0
+t1242712400
+s10160
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomicStack.h
+c000000004A1249500000000000001A7C
+t1242712400
+s6780
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+c000000004A124950000000000000188C
+t1242712400
+s6284
+i"CAAudioChannelLayout.h"
+i"CAAutoDisposer.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.h
+c000000004A1249500000000000001E94
+t1242712400
+s7828
+i
+i
+i
+i
+i
+i
+i
+i"CADebugMacros.h"
+i"CAAutoDisposer.h"
+i"CAReferenceCounted.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAutoDisposer.h
+c000000004A1249500000000000002F87
+t1242712400
+s12167
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugMacros.h
+c000000004A1249500000000000004FAE
+t1242712400
+s20398
+i
+i"CoreAudioTypes.h"
+i"CADebugPrintf.h"
+i
+i"CAHostTimeBase.h"
+i"CAHostTimeBase.h"
+i"CADebugger.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugPrintf.h
+c000000004A124950000000000000111C
+t1242712400
+s4380
+i
+i"CoreAudioTypes.h"
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugger.h
+c000000004A1249500000000000000A9C
+t1242712400
+s2716
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAException.h
+c000000004A1249500000000000000DDC
+t1242712400
+s3548
+i
+i"CoreAudioTypes.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAGuard.h
+c000000004A12495000000000000012A2
+t1242712400
+s4770
+i"CAMutex.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAHostTimeBase.h
+c000000004A1249500000000000001C6C
+t1242712400
+s7276
+i
+i
+i
+i
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CALogMacros.h
+c000000004A12495000000000000019A2
+t1242712400
+s6562
+i"CADebugMacros.h"
+i"CADebugPrintf.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMath.h
+c000000004A1249500000000000000C6B
+t1242712400
+s3179
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+c000000004A12495000000000000030DE
+t1242712400
+s12510
+i"CAMutex.h"
+i
+i"CADebugMacros.h"
+i"CAException.h"
+i"CAHostTimeBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.h
+c000000004A124950000000000000128C
+t1242712400
+s4748
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAReferenceCounted.h
+c000000004A1249500000000000000C97
+t1242712400
+s3223
+i"CAAtomic.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+c000000004A1249500000000000004E32
+t1242712400
+s20018
+i"CAStreamBasicDescription.h"
+i"CAMath.h"
+i
+i
+i"CALogMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.h
+c000000004A1249500000000000002E6C
+t1242712400
+s11884
+i
+i
+i"CoreAudioTypes.h"
+i"CoreFoundation.h"
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAThreadSafeList.h
+c000000004A1249500000000000001D08
+t1242712400
+s7432
+i"CAAtomicStack.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+c000000004CC46C4D000000000000163D
+t1287941197
+s5693
+i"CAVectorUnit.h"
+i
+i"ippdefs.h"
+i"ippcore.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.h
+c000000004CC46C4D0000000000000EC3
+t1287941197
+s3779
+i
+i"CAVectorUnitTypes.h"
+i
+i
+i
+i"CFBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnitTypes.h
+c000000004A1249500000000000000A3C
+t1242712400
+s2620
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAXException.h
+c000000004A1249500000000000002965
+t1242712400
+s10597
+i
+i
+i
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/SDKs/MacOSX10.5.sdk
+c000000004A49A9E400000000000000EE
+t1246341604
+s238
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioUnitUtilities.h
+c000000004864A73B0000000000004DF8
+t1214555963
+s19960
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AUComponent.h
+c000000004864A72E0000000000003F7C
+t1214555950
+s16252
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.h
+c000000004864A72E00000000000003CC
+t1214555950
+s972
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnit.r
+c000000004864A72D000000000000026E
+t1214555949
+s622
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AudioUnitProperties.h
+c000000004864A72E0000000000018D55
+t1214555950
+s101717
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/CoreAudioTypes.h
+c0000000048649BCC000000000000E5E6
+t1214553036
+s58854
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h
+c00000000486499670000000000003438
+t1214552423
+s13368
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h
+c0000000048649968000000000000192A
+t1214552424
+s6442
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h
+c00000000486499690000000000000942
+t1214552425
+s2370
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h
+c0000000047BAD4120000000000000400
+t1203426322
+s1024
+
+N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers/Components.h
+c0000000048649BE6000000000000D5E1
+t1214553062
+s54753
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/TargetConditionals.h
+c000000004817F9680000000000002778
+t1209530728
+s10104
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/ctype.h
+c0000000047BA99310000000000002C3A
+t1203411249
+s11322
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/dlfcn.h
+c00000000487581E60000000000000AC7
+t1215660518
+s2759
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/errno.h
+c0000000047BA993000000000000003EB
+t1203411248
+s1003
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/libkern/OSAtomic.h
+c0000000047BA993000000000000024B9
+t1203411248
+s9401
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h
+c0000000047E8839E0000000000000746
+t1206420382
+s1862
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h
+c0000000047BA9932000000000000380F
+t1203411250
+s14351
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdio.h
+c0000000047BA99310000000000003D1D
+t1203411249
+s15645
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdlib.h
+c0000000047BA99310000000000002A79
+t1203411249
+s10873
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h
+c0000000047BA99320000000000001731
+t1203411250
+s5937
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/sysctl.h
+c0000000047E883D1000000000000795B
+t1206420433
+s31067
+
+N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/syslog.h
+c0000000047E883D100000000000021EC
+t1206420433
+s8684
+
+N/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
+c000000004EE0342D000000000051BA20
+t1323316269
+s5356064
+
+N/System/Library/Frameworks/AudioUnit.framework/AudioUnit
+c000000004EE033220000000000012150
+t1323316002
+s74064
+
+N/System/Library/Frameworks/CoreServices.framework/CoreServices
+c000000004C23F49F0000000000021710
+t1277424799
+s136976
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/English.lproj/InfoPlist.strings
+c00000000605576F30000000000000168
+t1616213747
+s360
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp
+c00000000605576F30000000000002820
+t1616213747
+s10272
+i"Slew.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.h
+c00000000605576F300000000000013FB
+t1616213747
+s5115
+i"AUEffectBase.h"
+i"SlewVersion.h"
+i"AUDebugDispatcher.h"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.r
+c00000000605576F30000000000000C61
+t1616213747
+s3169
+i
+i"SlewVersion.h"
+i"AUResources.r"
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/SlewVersion.h
+c00000000605576F30000000000000D53
+t1616213747
+s3411
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component
+t1618167259
+s102
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Info.plist
+t1618167249
+s1107
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/MacOS/Slew
+t1618167259
+s333976
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/PkgInfo
+t1618167249
+s8
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/English.lproj/InfoPlist.strings
+t1618167249
+s360
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/Slew.rsrc
+t1618167259
+s520
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o
+t1618167254
+s62760
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o
+t1618167256
+s2216
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o
+t1618167255
+s3596
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o
+t1618167254
+s288
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o
+t1618167253
+s5324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o
+t1618167255
+s19796
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o
+t1618167253
+s7552
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o
+t1618167254
+s5484
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o
+t1618167255
+s24616
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o
+t1618167256
+s8912
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o
+t1618167255
+s3452
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o
+t1618167255
+s4332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o
+t1618167255
+s8332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o
+t1618167255
+s1340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o
+t1618167254
+s4300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew
+t1618167256
+s106016
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o
+t1618167253
+s15120
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew.LinkFileList
+c00000000607345D10000000000000889
+t1618167249
+s2185
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o
+t1618167251
+s73140
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o
+t1618167252
+s2664
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o
+t1618167251
+s4340
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o
+t1618167251
+s356
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o
+t1618167250
+s6360
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o
+t1618167252
+s22368
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o
+t1618167250
+s9176
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o
+t1618167251
+s6632
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o
+t1618167251
+s29532
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o
+t1618167252
+s10844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o
+t1618167251
+s4512
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o
+t1618167251
+s5376
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o
+t1618167252
+s10324
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o
+t1618167252
+s1520
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o
+t1618167250
+s5080
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew
+t1618167252
+s110452
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o
+t1618167250
+s18316
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew.LinkFileList
+c00000000607345D10000000000000879
+t1618167249
+s2169
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o
+t1618167257
+s63236
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o
+t1618167259
+s2300
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o
+t1618167258
+s3748
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o
+t1618167258
+s344
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o
+t1618167257
+s4456
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o
+t1618167258
+s20844
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o
+t1618167257
+s7848
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o
+t1618167257
+s5712
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o
+t1618167258
+s25916
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o
+t1618167259
+s9460
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+t1618167258
+s3652
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o
+t1618167258
+s4556
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+t1618167258
+s9476
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o
+t1618167258
+s1284
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o
+t1618167258
+s4836
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew
+t1618167259
+s112792
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o
+t1618167256
+s16332
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew.LinkFileList
+c00000000607345D100000000000008A9
+t1618167249
+s2217
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc
+t1618167259
+s520
+
+N/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc
+t1618167259
+s520
+
+NInfo.plist
+c00000000605576F30000000000000361
+t1616213747
+s865
+
+NSlew.exp
+c00000000605576F3000000000000000B
+t1616213747
+s11
+
+CCheck dependencies
+r0
+lSLF07#2@18"Check dependencies639860048#639860049#0(0"0(0#1#0"8611278816#0"0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860052.299903
+e639860054.699505
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639860052#639860054#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8612739040#1093" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860055.562696
+e639860056.508937
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639860055#639860056#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8608027360#1106" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBaseHelper.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860054.699634
+e639860055.494724
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639860054#639860055#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8615441632#1098" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUBuffer.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860054.769984
+e639860054.799246
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639860054#639860054#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8613995072#1116" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDebugDispatcher.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860052.688757
+e639860053.707698
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639860052#639860053#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8608320128#1101" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUDispatch.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860054.256131
+e639860055.594942
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639860054#639860055#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8609947104#1109" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUEffectBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860052.980002
+e639860054.006691
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639860052#639860054#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8610724768#1109" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUInputElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860053.273303
+e639860054.255915
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639860053#639860054#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8611684480#1111" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUOutputElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860053.707848
+e639860055.284704
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639860053#639860055#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8610431488#1109" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/AUScopeElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860055.284849
+e639860056.112322
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639860055#639860056#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8608799136#1094" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAUParameter.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860054.799389
+e639860055.038997
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639860054#639860055#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8612985024#1108" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAAudioChannelLayout.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860055.039143
+e639860055.190438
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639860055#639860055#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8611068128#1082" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAMutex.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860055.190584
+e639860055.562563
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639860055#639860055#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8610428000#1116" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAStreamBasicDescription.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860055.494872
+e639860055.584771
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639860055#639860055#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8600841184#1092" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/CAVectorUnit.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860054.006832
+e639860054.769843
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639860054#639860054#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8599067104#1107" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/ComponentBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+s639860052.185321
+e639860053.273168
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp
+xnormal
+xi386
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp639860052#639860053#0(0"0(0#0#72"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp8613445440#1114" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/i386 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew-1DB483EC8D75827.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860049.155158
+e639860051.529058
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639860049#639860051#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8611572384#1100" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860052.012558
+e639860052.936976
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639860052#639860052#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8611457024#1113" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBaseHelper.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860051.068748
+e639860051.926189
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639860051#639860051#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8608095296#1105" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUBuffer.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860051.529202
+e639860051.563907
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639860051#639860051#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8600077632#1123" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDebugDispatcher.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860049.155933
+e639860050.144305
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639860049#639860050#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8610512448#1108" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUDispatch.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860050.924988
+e639860052.299752
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639860050#639860052#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8610982336#1116" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUEffectBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860049.156984
+e639860050.130591
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639860049#639860050#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8608536672#1116" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUInputElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860050.130735
+e639860051.068602
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639860050#639860051#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8602864416#1118" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUOutputElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860050.144450
+e639860051.720124
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639860050#639860051#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8602927680#1116" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/AUScopeElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860051.868149
+e639860052.688497
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639860051#639860052#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8612597792#1101" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAUParameter.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860051.564059
+e639860051.807143
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639860051#639860051#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8598862496#1115" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAAudioChannelLayout.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860051.720279
+e639860051.868000
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639860051#639860051#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8610473344#1089" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAMutex.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860051.807296
+e639860052.185181
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639860051#639860052#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8615854208#1123" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAStreamBasicDescription.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860051.926332
+e639860052.012205
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639860051#639860052#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8612259232#1099" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/CAVectorUnit.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860050.207410
+e639860050.924742
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639860050#639860050#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8610070464#1114" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/ComponentBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+s639860049.154303
+e639860050.207273
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp
+xnormal
+xppc
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp639860049#639860050#0(0"0(0#0#72"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp8615213280#1121" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G4 -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/ppc -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew-1DB483EC8D75827.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860055.595083
+e639860057.835247
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@73"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp639860055#639860057#0(0"0(0#0#65"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp8607546592#1099" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860058.745186
+e639860059.359556
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp639860058#639860059#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp8610476896#1112" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBaseHelper.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860057.835475
+e639860058.626208
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@76"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp639860057#639860058#0(0"0(0#0#68"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp8606959296#1104" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUBuffer.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860058.249941
+e639860058.279096
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@85"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp639860058#639860058#0(0"0(0#0#77"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp8598301792#1122" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDebugDispatcher.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860056.112578
+e639860057.084344
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@77"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp639860056#639860057#0(0"0(0#0#69"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp8612005408#1107" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUDispatch.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860057.557869
+e639860058.859230
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@83"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp639860057#639860058#0(0"0(0#0#75"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp8608771712#1115" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUEffectBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860056.549983
+e639860057.537962
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp639860056#639860057#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp8610378112#1115" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUInputElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860056.617850
+e639860057.557710
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@82"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp639860056#639860057#0(0"0(0#0#74"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp8608772480#1117" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUOutputElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860057.084487
+e639860058.589864
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@81"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp639860057#639860058#0(0"0(0#0#73"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp8611153344#1115" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/AUScopeElement.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860058.626353
+e639860059.233194
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@67"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp639860058#639860059#0(0"0(0#0#59"/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp8611847968#1100" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAUParameter.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860058.279246
+e639860058.516797
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@74"Compile /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp639860058#639860058#0(0"0(0#0#66"/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp8607398400#1114" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAAudioChannelLayout.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860058.516953
+e639860058.656118
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@61"Compile /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp639860058#639860058#0(0"0(0#0#53"/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp8613774848#1088" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAMutex.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860058.590012
+e639860058.935314
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@78"Compile /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp639860058#639860058#0(0"0(0#0#70"/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp8612693568#1122" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAStreamBasicDescription.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860058.656253
+e639860058.745037
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o
+x/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@66"Compile /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp639860058#639860058#0(0"0(0#0#58"/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp8611111872#1098" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/CAVectorUnit.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860057.538107
+e639860058.249798
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o
+x/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp639860057#639860058#0(0"0(0#0#72"/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp8610110624#1113" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/ComponentBase.o
0#
+
+CCompileC build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+s639860055.584923
+e639860056.617705
+r1
+xCompileC
+xbuild/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp
+xnormal
+xx86_64
+xc++
+xcom.apple.compilers.gcc.4_2
+lSLF07#2@80"Compile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp639860055#639860056#0(0"0(0#0#72"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp8607831168#1120" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
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 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fvisibility-inlines-hidden -mmacosx-version-min=10.4 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Slew.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources/x86_64 -I/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/DerivedSources -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.cpp -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew-1DB483EC8D75827.o
0#
+
+CCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+s639860049.129267
+e639860049.154205
+r1
+xCopyStringsFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/English.lproj/InfoPlist.strings
+xEnglish.lproj/InfoPlist.strings
+lSLF07#2@36"Copy English.lproj/InfoPlist.strings639860049#639860049#0(0"0(0#0#95"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/English.lproj/InfoPlist.strings8610321504#421" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-16 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/English.lproj
0#
+
+CCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/MacOS/Slew normal "ppc i386 x86_64"
+s639860059.386329
+e639860059.389643
+r1
+xCreateUniversalBinary
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/MacOS/Slew
+xnormal
+xppc i386 x86_64
+lSLF07#2@95"CreateUniversalBinary build/Release/Slew.component/Contents/MacOS/Slew normal "ppc i386 x86_64"639860059#639860059#0(0"0(0#0#79"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/ppc i386 x86_648600511008#594" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
/usr/bin/lipo -create /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew -output /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/MacOS/Slew
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew normal i386
+s639860056.509081
+e639860056.549826
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew
+xnormal
+xi386
+lSLF07#2@129"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew639860056#639860056#0(0"0(0#0#0"8611143808#774" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch i386 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew.LinkFileList -exported_symbols_list Slew.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/i386/Slew
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew normal ppc
+s639860052.937105
+e639860052.979834
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew
+xnormal
+xppc
+lSLF07#2@128"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew639860052#639860052#0(0"0(0#0#0"8601236512#771" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch ppc -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew.LinkFileList -exported_symbols_list Slew.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/ppc/Slew
0#
+
+CLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew normal x86_64
+s639860059.359744
+e639860059.386229
+r1
+xLd
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew
+xnormal
+xx86_64
+lSLF07#2@131"Link /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew639860059#639860059#0(0"0(0#0#0"8607810528#780" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
setenv MACOSX_DEPLOYMENT_TARGET 10.4
/Developer/usr/bin/g++-4.2 -arch x86_64 -bundle -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -F/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -filelist /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew.LinkFileList -exported_symbols_list Slew.exp -mmacosx-version-min=10.4 -bundle -framework AudioToolbox -framework AudioUnit -framework CoreServices -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/Objects-normal/x86_64/Slew
0#
+
+CProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Info.plist Info.plist
+s639860049.125955
+e639860049.129158
+r1
+xProcessInfoPlistFile
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Info.plist
+xInfo.plist
+lSLF07#2@18"Process Info.plist639860049#639860049#0(0"0(0#0#74"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Info.plist8594703136#387" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
builtin-infoPlistUtility Info.plist -genpkginfo /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/PkgInfo -expandbuildsettings -platform macosx -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Info.plist
0#
+
+CResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc
+s639860059.449453
+e639860059.459595
+r1
+xResMergerCollector
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc
+lSLF07#2@155"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc639860059#639860059#0(0"0(0#0#0"8615266848#410" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
/Developer/Tools/ResMerger -dstIs DF /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc
0#
+
+CResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/Slew.rsrc
+s639860059.459691
+e639860059.469756
+r1
+xResMergerProduct
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/Slew.rsrc
+lSLF07#2@142"Merge resources into /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/Slew.rsrc639860059#639860059#0(0"0(0#0#0"8613430496#372" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
/Developer/Tools/ResMerger /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Slew.rsrc -dstIs DF -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component/Contents/Resources/Slew.rsrc
0#
+
+CRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc Slew.r
+s639860059.389726
+e639860059.449345
+r1
+xRez
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc
+xSlew.r
+lSLF07#2@10"Rez Slew.r639860059#639860059#0(0"0(0#0#70"/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.r8599254336#1126" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
/Developer/Tools/Rez -o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Slew.build/Release/Slew.build/ResourceManagerResources/Objects/Slew-F2DE06932BC77829.rsrc -d SystemSevenOrLater=1 -useDF -script Roman -d ppc_YES -d i386_YES -d x86_64_YES -I /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Versions/A/Headers -I /Developer/Examples/CoreAudio/AudioUnits/AUPublic/AUBase -arch ppc -arch i386 -arch x86_64 -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase -i /Developer/Extras/CoreAudio/PublicUtility -i /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release -i /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/include -isysroot /Developer/SDKs/MacOSX10.5.sdk /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/Slew.r
0#
+
+CTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component
+s639860059.469847
+e639860059.472249
+r1
+xTouch
+x/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component
+lSLF07#2@98"Touch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component639860059#639860059#0(0"0(0#0#0"8612924864#186" cd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew
/usr/bin/touch -c /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Slew/build/Release/Slew.component
0#
+
diff --git a/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/categories.pbxbtree b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/categories.pbxbtree
new file mode 100644
index 000000000..d3f6bb3b6
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/categories.pbxbtree differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/cdecls.pbxbtree b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/cdecls.pbxbtree
new file mode 100644
index 000000000..ed3024039
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/cdecls.pbxbtree differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/decls.pbxbtree b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/decls.pbxbtree
new file mode 100644
index 000000000..b0a3678da
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/decls.pbxbtree differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/files.pbxbtree b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/files.pbxbtree
new file mode 100644
index 000000000..243eb2437
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/files.pbxbtree differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/imports.pbxbtree b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/imports.pbxbtree
new file mode 100644
index 000000000..8d064b6af
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/imports.pbxbtree differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/pbxindex.header b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/pbxindex.header
new file mode 100644
index 000000000..c3133e4e9
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/pbxindex.header differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/protocols.pbxbtree b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/protocols.pbxbtree
new file mode 100644
index 000000000..d3f6bb3b6
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/protocols.pbxbtree differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/refs.pbxbtree b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/refs.pbxbtree
new file mode 100644
index 000000000..6c16422b4
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/refs.pbxbtree differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/strings.pbxstrings/control b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/strings.pbxstrings/control
new file mode 100644
index 000000000..7562ec46d
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/strings.pbxstrings/control differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/strings.pbxstrings/strings b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/strings.pbxstrings/strings
new file mode 100644
index 000000000..41c0dc1fa
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/strings.pbxstrings/strings differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/subclasses.pbxbtree b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/subclasses.pbxbtree
new file mode 100644
index 000000000..536a96334
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/subclasses.pbxbtree differ
diff --git a/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/symbols0.pbxsymbols b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/symbols0.pbxsymbols
new file mode 100644
index 000000000..fa65be28e
Binary files /dev/null and b/plugins/MacAU/Slew/build/Slew.build/Slew.pbxindex/symbols0.pbxsymbols differ
diff --git a/plugins/MacAU/StarChild/StarChild.cpp b/plugins/MacAU/StarChild/StarChild.cpp
index 61959c8d3..850d80eb5 100755
--- a/plugins/MacAU/StarChild/StarChild.cpp
+++ b/plugins/MacAU/StarChild/StarChild.cpp
@@ -190,12 +190,13 @@ ComponentResult StarChild::Reset(AudioUnitScope inScope, AudioUnitElement inEle
int count;
for(count = 0; count < 44101; count++) {d[count] = 0.0;}
+ dCount = 0;
for(count = 0; count < 11; count++) {wearL[count] = 0.0; wearR[count] = 0.0; factor[count] = 0.0;}
wearLPrev = 0.0; wearRPrev = 0.0;
-
+ p[0] = 1;
p[1] = 11; p[2] = 13; p[3] = 17; p[4] = 19; p[5] = 23; p[6] = 29; p[7] = 31; p[8] = 37; p[9] = 41;
p[10] = 43; p[11] = 47; p[12] = 53; p[13] = 59; p[14] = 61; p[15] = 67; p[16] = 71; p[17] = 73; p[18] = 79; p[19] = 83; p[20] = 89;
p[21] = 97; p[22] = 101; p[23] = 103; p[24] = 107; p[25] = 109; p[26] = 113; p[27] = 127; p[28] = 131; p[29] = 137; p[30] = 139;
diff --git a/plugins/MacAU/StarChild/StarChild.xcodeproj/christopherjohnson.pbxuser b/plugins/MacAU/StarChild/StarChild.xcodeproj/christopherjohnson.pbxuser
index 479a352f5..b202b873b 100755
--- a/plugins/MacAU/StarChild/StarChild.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacAU/StarChild/StarChild.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569680704;
- PBXWorkspaceStateSaveDate = 569680704;
+ PBXPerProjectTemplateStateSaveDate = 639860622;
+ PBXWorkspaceStateSaveDate = 639860622;
};
perUserProjectItems = {
8B79307721F4A440006E9731 /* PBXTextBookmark */ = 8B79307721F4A440006E9731 /* PBXTextBookmark */;
- 8B79307921F4A440006E9731 /* PBXTextBookmark */ = 8B79307921F4A440006E9731 /* PBXTextBookmark */;
- 8B79307E21F4A491006E9731 /* PBXTextBookmark */ = 8B79307E21F4A491006E9731 /* PBXTextBookmark */;
+ 8BA62AF426237F0800483AAF /* PBXTextBookmark */ = 8BA62AF426237F0800483AAF /* PBXTextBookmark */;
+ 8BA62B2B26237FED00483AAF /* PBXTextBookmark */ = 8BA62B2B26237FED00483AAF /* PBXTextBookmark */;
};
sourceControlManager = 8BD3CCB8148830B20062E48C /* Source Control */;
userBuildSettings = {
@@ -71,32 +71,12 @@
vrLen = 1029;
vrLoc = 4501;
};
- 8B79307921F4A440006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* StarChild.cpp */;
- name = "StarChild.cpp: 650";
- rLen = 0;
- rLoc = 38428;
- rType = 0;
- vrLen = 1146;
- vrLoc = 37584;
- };
- 8B79307E21F4A491006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* StarChild.cpp */;
- name = "StarChild.cpp: 260";
- rLen = 0;
- rLoc = 12080;
- rType = 0;
- vrLen = 1508;
- vrLoc = 11340;
- };
8BA05A660720730100365D66 /* StarChild.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1013, 8762}}";
- sepNavSelRange = "{12080, 0}";
- sepNavVisRange = "{11340, 1508}";
- sepNavWindowFrame = "{{237, 42}, {1203, 836}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1299, 12006}}";
+ sepNavSelRange = "{8188, 0}";
+ sepNavVisRange = "{8552, 2409}";
+ sepNavWindowFrame = "{{187, 42}, {1203, 836}}";
};
};
8BA05A690720730100365D66 /* StarChildVersion.h */ = {
@@ -107,12 +87,32 @@
sepNavWindowFrame = "{{596, 63}, {932, 815}}";
};
};
+ 8BA62AF426237F0800483AAF /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* StarChild.cpp */;
+ name = "StarChild.cpp: 198";
+ rLen = 0;
+ rLoc = 8188;
+ rType = 0;
+ vrLen = 2604;
+ vrLoc = 7784;
+ };
+ 8BA62B2B26237FED00483AAF /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* StarChild.cpp */;
+ name = "StarChild.cpp: 199";
+ rLen = 0;
+ rLoc = 8188;
+ rType = 0;
+ vrLen = 2409;
+ vrLoc = 8552;
+ };
8BC6025B073B072D006C4272 /* StarChild.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {922, 2106}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1182, 2844}}";
sepNavSelRange = "{5101, 0}";
- sepNavVisRange = "{4501, 1029}";
- sepNavWindowFrame = "{{652, 63}, {932, 815}}";
+ sepNavVisRange = "{4501, 1023}";
+ sepNavWindowFrame = "{{508, 63}, {932, 815}}";
};
};
8BD3CCB8148830B20062E48C /* Source Control */ = {
diff --git a/plugins/MacAU/StarChild/StarChild.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacAU/StarChild/StarChild.xcodeproj/christopherjohnson.perspectivev3
index 334904455..12ba79c84 100755
--- a/plugins/MacAU/StarChild/StarChild.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacAU/StarChild/StarChild.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -333,8 +335,6 @@
Dock
- BecomeActive
-
ContentConfiguration
PBXProjectModuleGUID
@@ -352,11 +352,11 @@
_historyCapacity
0
bookmark
- 8B79307E21F4A491006E9731
+ 8BA62B2B26237FED00483AAF
history
8B79307721F4A440006E9731
- 8B79307921F4A440006E9731
+ 8BA62AF426237F0800483AAF
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {669, 542}}
+ {{0, 0}, {669, 534}}
RubberWindowFrame
447 102 876 720 0 0 1440 878
Module
PBXNavigatorGroup
Proportion
- 542pt
+ 534pt
Proportion
- 132pt
+ 140pt
Tabs
@@ -395,7 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {669, 105}}
+ {{10, 27}, {669, 113}}
+ RubberWindowFrame
+ 447 102 876 720 0 0 1440 878
Module
XCDetailModule
@@ -449,9 +451,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {669, 105}}
- RubberWindowFrame
- 447 102 876 720 0 0 1440 878
+ {{10, 27}, {669, 109}}
Module
PBXBuildResultsModule
@@ -479,11 +479,11 @@
TableOfContents
- 8B79307F21F4A491006E9731
+ 8BA62B2C26237FED00483AAF
1CA23ED40692098700951B8B
- 8B79308021F4A491006E9731
+ 8BA62B2D26237FED00483AAF
8BAC22EC1F1EA26E009C635C
- 8B79308121F4A491006E9731
+ 8BA62B2E26237FED00483AAF
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 569681041.62753606
+ 639860717.41382003
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -653,7 +653,7 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacAU/StarChild/StarChild.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/StarChild.xcodeproj
WindowString
447 102 876 720 0 0 1440 878
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBase.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBase.o
new file mode 100644
index 000000000..a20eddb1a
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBase.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBaseHelper.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBaseHelper.o
new file mode 100644
index 000000000..48e877fb9
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBaseHelper.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBuffer.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBuffer.o
new file mode 100644
index 000000000..2fce9264d
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBuffer.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUDebugDispatcher.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUDebugDispatcher.o
new file mode 100644
index 000000000..24b573566
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUDispatch.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUDispatch.o
new file mode 100644
index 000000000..7c4ddea60
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUDispatch.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUEffectBase.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUEffectBase.o
new file mode 100644
index 000000000..72de6e545
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUEffectBase.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUInputElement.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUInputElement.o
new file mode 100644
index 000000000..0de7107c4
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUInputElement.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUOutputElement.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUOutputElement.o
new file mode 100644
index 000000000..4805b497c
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUOutputElement.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUScopeElement.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUScopeElement.o
new file mode 100644
index 000000000..a6d690efa
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUScopeElement.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAAUParameter.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAAUParameter.o
new file mode 100644
index 000000000..d180f7727
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAAUParameter.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAAudioChannelLayout.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAAudioChannelLayout.o
new file mode 100644
index 000000000..d331fbc18
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAMutex.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAMutex.o
new file mode 100644
index 000000000..262dc32f7
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAMutex.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAStreamBasicDescription.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAStreamBasicDescription.o
new file mode 100644
index 000000000..0cfd9b30e
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAVectorUnit.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAVectorUnit.o
new file mode 100644
index 000000000..263571618
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAVectorUnit.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/ComponentBase.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/ComponentBase.o
new file mode 100644
index 000000000..62df2c846
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/ComponentBase.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild
new file mode 100755
index 000000000..467d1d5c5
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild-1DB483EC8D75827.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild-1DB483EC8D75827.o
new file mode 100644
index 000000000..e6cebbfb0
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild.LinkFileList b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild.LinkFileList
new file mode 100644
index 000000000..e75f40f10
--- /dev/null
+++ b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBaseHelper.o
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBase.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBase.o
new file mode 100644
index 000000000..30cbbab77
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBase.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBaseHelper.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBaseHelper.o
new file mode 100644
index 000000000..4a424d17b
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBaseHelper.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBuffer.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBuffer.o
new file mode 100644
index 000000000..132b8e314
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBuffer.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUDebugDispatcher.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUDebugDispatcher.o
new file mode 100644
index 000000000..a3eb3b0c1
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUDispatch.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUDispatch.o
new file mode 100644
index 000000000..c2dfc5807
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUDispatch.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUEffectBase.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUEffectBase.o
new file mode 100644
index 000000000..4353d8250
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUEffectBase.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUInputElement.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUInputElement.o
new file mode 100644
index 000000000..feecbbb7e
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUInputElement.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUOutputElement.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUOutputElement.o
new file mode 100644
index 000000000..70323f97b
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUOutputElement.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUScopeElement.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUScopeElement.o
new file mode 100644
index 000000000..5057b57e2
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUScopeElement.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAAUParameter.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAAUParameter.o
new file mode 100644
index 000000000..b6ffa244f
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAAUParameter.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAAudioChannelLayout.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAAudioChannelLayout.o
new file mode 100644
index 000000000..97f98ac2f
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAMutex.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAMutex.o
new file mode 100644
index 000000000..935e0bfd6
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAMutex.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAStreamBasicDescription.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAStreamBasicDescription.o
new file mode 100644
index 000000000..b8b51d753
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAVectorUnit.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAVectorUnit.o
new file mode 100644
index 000000000..4ce4ed3cd
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAVectorUnit.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/ComponentBase.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/ComponentBase.o
new file mode 100644
index 000000000..9bafdb4fb
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/ComponentBase.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild
new file mode 100755
index 000000000..dd742a16e
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild-1DB483EC8D75827.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild-1DB483EC8D75827.o
new file mode 100644
index 000000000..0541ccaf7
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild.LinkFileList b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild.LinkFileList
new file mode 100644
index 000000000..f5416afd9
--- /dev/null
+++ b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBaseHelper.o
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBase.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBase.o
new file mode 100644
index 000000000..09eceaa64
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBase.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBaseHelper.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBaseHelper.o
new file mode 100644
index 000000000..211d87b5c
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBaseHelper.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBuffer.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBuffer.o
new file mode 100644
index 000000000..5fc0e15be
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBuffer.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUDebugDispatcher.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUDebugDispatcher.o
new file mode 100644
index 000000000..8e7087417
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUDebugDispatcher.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUDispatch.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUDispatch.o
new file mode 100644
index 000000000..5ce3e81d2
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUDispatch.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUEffectBase.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUEffectBase.o
new file mode 100644
index 000000000..7e2b03180
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUEffectBase.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUInputElement.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUInputElement.o
new file mode 100644
index 000000000..3ac5e6806
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUInputElement.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUOutputElement.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUOutputElement.o
new file mode 100644
index 000000000..9ee53add2
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUOutputElement.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUScopeElement.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUScopeElement.o
new file mode 100644
index 000000000..9567a9a86
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUScopeElement.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAAUParameter.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAAUParameter.o
new file mode 100644
index 000000000..c323b43d1
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAAUParameter.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAAudioChannelLayout.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAAudioChannelLayout.o
new file mode 100644
index 000000000..83a99fa40
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAAudioChannelLayout.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAMutex.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAMutex.o
new file mode 100644
index 000000000..2644b82ff
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAMutex.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAStreamBasicDescription.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAStreamBasicDescription.o
new file mode 100644
index 000000000..40bba150f
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAStreamBasicDescription.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAVectorUnit.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAVectorUnit.o
new file mode 100644
index 000000000..3c21a0eac
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAVectorUnit.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/ComponentBase.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/ComponentBase.o
new file mode 100644
index 000000000..01e70c71b
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/ComponentBase.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild
new file mode 100755
index 000000000..cc741ba39
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild-1DB483EC8D75827.o b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild-1DB483EC8D75827.o
new file mode 100644
index 000000000..069de567a
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild-1DB483EC8D75827.o differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild.LinkFileList b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild.LinkFileList
new file mode 100644
index 000000000..9b5d7a9cb
--- /dev/null
+++ b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild.LinkFileList
@@ -0,0 +1,16 @@
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild-1DB483EC8D75827.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUDispatch.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUInputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUOutputElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUScopeElement.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/ComponentBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUEffectBase.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBuffer.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUDebugDispatcher.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAMutex.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAAUParameter.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAVectorUnit.o
+/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBaseHelper.o
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/ResourceManagerResources/Objects/StarChild-F2DE06932BC77829.rsrc b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/ResourceManagerResources/Objects/StarChild-F2DE06932BC77829.rsrc
new file mode 100644
index 000000000..194fa91e4
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/ResourceManagerResources/Objects/StarChild-F2DE06932BC77829.rsrc differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/ResourceManagerResources/StarChild.rsrc b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/ResourceManagerResources/StarChild.rsrc
new file mode 100644
index 000000000..e8920a229
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/ResourceManagerResources/StarChild.rsrc differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/StarChild.dep b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/StarChild.dep
new file mode 100644
index 000000000..c6dc0a34b
--- /dev/null
+++ b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/StarChild.dep
@@ -0,0 +1,59 @@
+2b7f4cb4742a6f44db528c1196979a1f de91463050d02a9f1418010cf862cdb9 ffffffffffffffffffffffffffffffff 102 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component
+7983bb7a0ced213cf0c9887f6a69cb9b ca32e3f66943fded0319acaabd7fc9f2 ffffffffffffffffffffffffffffffff 540 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component/Contents/Resources/StarChild.rsrc
+0cc5f0543a4643a1ed0bc53dc5b8b049 c6031e5bd183891277072098b6c38276 ffffffffffffffffffffffffffffffff 387152 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component/Contents/MacOS/StarChild
+00000000605576f3000000000000017c 5208fa379a140fd5b28e4d6132faab35 ffffffffffffffffffffffffffffffff 380 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component/Contents/Resources/English.lproj/InfoPlist.strings
+00000000000000000000000000000000 8c47eef706985a7095c9ef1c38796c8e ffffffffffffffffffffffffffffffff 8 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component/Contents/PkgInfo
+00000000000000000000000000000000 8c47eef706985a7095c9ef1c38796c8e ffffffffffffffffffffffffffffffff 1117 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component/Contents/Info.plist
+fff3e3a98a9d01d145ab90616f103fd5 69dcf995a9d043fc6d75e1d0ddea8ed3 ffffffffffffffffffffffffffffffff 129104 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild
+7b8ed46a564537c40000dca584e62d64 72383fa839b38a4f7c8de117fda8108d ffffffffffffffffffffffffffffffff 122348 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild
+f2fe4026a290f465c971d609b1f32971 61a2418cd46d486270295f37bfff15d7 ffffffffffffffffffffffffffffffff 130916 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild
+00000000602152e4000000000000cb8e 0411a7d4640cd6ea9ab6fde0a92afaaf ffffffffffffffffffffffffffffffff 33044 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild-1DB483EC8D75827.o
+00000000602152e4000000000000cb8e 2812eb4d2e34aac57545ea60c715993f ffffffffffffffffffffffffffffffff 34228 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild-1DB483EC8D75827.o
+00000000602152e4000000000000cb8e 5bdd5d8f026deb469b05cbd71e65cf82 ffffffffffffffffffffffffffffffff 41732 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild-1DB483EC8D75827.o
+0000000009085486000000000001b528 b8fbf42e4986f4c5665be953e91fa183 ffffffffffffffffffffffffffffffff 2300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBaseHelper.o
+0000000009085486000000000001b528 fd96ced5a200dee4c2e31bcfbc429e1d ffffffffffffffffffffffffffffffff 2216 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBaseHelper.o
+0000000009085486000000000001b528 37f37f18798bd9f8ce6154e1c956bb80 ffffffffffffffffffffffffffffffff 2664 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBaseHelper.o
+000000000d89aa8e0000000000006fbd 7a3560e7b9b4ffc78bd30de3abe2f461 ffffffffffffffffffffffffffffffff 1284 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 74ad89e9baad66a148d29829c4d70591 ffffffffffffffffffffffffffffffff 1340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd f2b2c8a0b640a986de02e12103373e98 ffffffffffffffffffffffffffffffff 1520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAVectorUnit.o
+000000004864a73b00000000000067f6 984e9a32551950067eaec55e03a2d300 ffffffffffffffffffffffffffffffff 9460 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAAUParameter.o
+000000004864a73b00000000000067f6 3e1d8723691c850a04a5d81105bed1a7 ffffffffffffffffffffffffffffffff 8912 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAAUParameter.o
+000000004864a73b00000000000067f6 80a26197a2316a24142c562ea189c697 ffffffffffffffffffffffffffffffff 10844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAAUParameter.o
+00000000459e514c000000000000b0e9 d662802eee1260a22040fe260d48e8bd ffffffffffffffffffffffffffffffff 9476 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 d85bceecf6cd997f5b9eddac6093d980 ffffffffffffffffffffffffffffffff 8332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 0589ea5b514cea6c17855658838da981 ffffffffffffffffffffffffffffffff 10324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAStreamBasicDescription.o
+000000000fde02b3000000000000e8c5 1ef0a1a4f5b29775a55e70c69aa50d8e ffffffffffffffffffffffffffffffff 4556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAMutex.o
+000000000fde02b3000000000000e8c5 85b9baf16762093064da207228726eb3 ffffffffffffffffffffffffffffffff 4332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAMutex.o
+000000000fde02b3000000000000e8c5 2b7bd0175645be5177b1ea115900ca71 ffffffffffffffffffffffffffffffff 5376 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAMutex.o
+000000000224c870000000000000a1ca 78ea07b6e6c5d0029c6dda3e84c78f87 ffffffffffffffffffffffffffffffff 3652 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca ac138a2e726c0797a656ef34816044a5 ffffffffffffffffffffffffffffffff 3452 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca 7a8b26847dc3a79a1ad33a1ccfbd6b83 ffffffffffffffffffffffffffffffff 4512 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAAudioChannelLayout.o
+000000000b2c9e1300000000000045af 465900bc743d0e22955909dce66f2dff ffffffffffffffffffffffffffffffff 344 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 1b8723face56ed6eee9a8a1abcf03c3b ffffffffffffffffffffffffffffffff 288 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af b3355600b9fd7bbef66326c78f1f6875 ffffffffffffffffffffffffffffffff 356 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUDebugDispatcher.o
+0000000000735ce0000000000000debb 452bbe5fa33cfa0271e41cac90f216ac ffffffffffffffffffffffffffffffff 3748 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBuffer.o
+0000000000735ce0000000000000debb a2885d971ff5a40b2134c011e8c404b1 ffffffffffffffffffffffffffffffff 3596 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBuffer.o
+0000000000735ce0000000000000debb 9ad78d6ae6c47b7c50c71184eb56a8ce ffffffffffffffffffffffffffffffff 4340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBuffer.o
+000000000b7e84bf00000000000078d4 1fe37912dd316a58ec7cd9f62976393f ffffffffffffffffffffffffffffffff 20844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUEffectBase.o
+000000000b7e84bf00000000000078d4 82417eac9ff72d392b759cb84d093528 ffffffffffffffffffffffffffffffff 19796 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUEffectBase.o
+000000000b7e84bf00000000000078d4 d00d6223dd4cba3e6f040881a14eafa8 ffffffffffffffffffffffffffffffff 22368 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUEffectBase.o
+000000004cd54809000000000000c180 1ee59d4302910c113565888b720d64be ffffffffffffffffffffffffffffffff 4836 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/ComponentBase.o
+000000004cd54809000000000000c180 d1fc2bb62abf095e1fa2da04a34dc0e0 ffffffffffffffffffffffffffffffff 4300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/ComponentBase.o
+000000004cd54809000000000000c180 59f5ac3866caebec6472657cb399a392 ffffffffffffffffffffffffffffffff 5080 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/ComponentBase.o
+000000000257e57600000000000074ab 344fe845f561f4017232516d15186295 ffffffffffffffffffffffffffffffff 25916 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUScopeElement.o
+000000000257e57600000000000074ab 20adf1fc4514e1187017087be5e56f7f ffffffffffffffffffffffffffffffff 24616 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUScopeElement.o
+000000000257e57600000000000074ab 9548c646db1f9c296fcfacac36db4c9d ffffffffffffffffffffffffffffffff 29532 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUScopeElement.o
+00000000459e20a7000000000000dea0 6732e07c3b2c8707c569ec48e27234ec ffffffffffffffffffffffffffffffff 5712 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUOutputElement.o
+00000000459e20a7000000000000dea0 a4d484b9779131ffb80691e621167b32 ffffffffffffffffffffffffffffffff 5484 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUOutputElement.o
+00000000459e20a7000000000000dea0 fa9537679bd09a791013f962f49d5a27 ffffffffffffffffffffffffffffffff 6632 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUOutputElement.o
+000000000b7e84bf00000000000004cc 9d784a229fbdbd0743f797092f80d907 ffffffffffffffffffffffffffffffff 7848 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUInputElement.o
+000000000b7e84bf00000000000004cc d8ad8eb4b4094e4d107f6368a0104dd6 ffffffffffffffffffffffffffffffff 7552 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUInputElement.o
+000000000b7e84bf00000000000004cc ec10aa8e37e18874be7bbb34f00f45b9 ffffffffffffffffffffffffffffffff 9176 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUInputElement.o
+0000000004a0f5680000000000000b33 3264360dd7880192da2572b3a3830e82 ffffffffffffffffffffffffffffffff 4456 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUDispatch.o
+0000000004a0f5680000000000000b33 0d6025fc28058c5492b8ecfc67a3c035 ffffffffffffffffffffffffffffffff 5324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUDispatch.o
+0000000004a0f5680000000000000b33 4d32cbe30d924e2f39a6c8b69e95155c ffffffffffffffffffffffffffffffff 6360 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUDispatch.o
+00000000413e98c60000000000017e35 ef0f421e7f44684a46650423c2923416 ffffffffffffffffffffffffffffffff 63236 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBase.o
+00000000413e98c60000000000017e35 ae4df4716723d630d36c65664e3ba31e ffffffffffffffffffffffffffffffff 62760 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBase.o
+00000000413e98c60000000000017e35 d65c52736e8cf99f790f04970b5eddc5 ffffffffffffffffffffffffffffffff 73140 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBase.o
+79d36d033424a857b907cab0ca8f84f4 0050d67938c9896b49ce42cfa0e64f6f ffffffffffffffffffffffffffffffff 540 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/ResourceManagerResources/StarChild.rsrc
+000000004864a72d000000000000057a 79d36d037c400f7ab907cab0ca8f818e ffffffffffffffffffffffffffffffff 540 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/ResourceManagerResources/Objects/StarChild-F2DE06932BC77829.rsrc
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/StarChild.hmap b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/StarChild.hmap
new file mode 100644
index 000000000..b25e6ad82
Binary files /dev/null and b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/StarChild.hmap differ
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/StarChild~.dep b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/StarChild~.dep
new file mode 100644
index 000000000..93d62ddd8
--- /dev/null
+++ b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/StarChild~.dep
@@ -0,0 +1,59 @@
+7983bb7a0ced213cf0c9887f6a69cb9b ca32e3f66943fded0319acaabd7fc9f2 ffffffffffffffffffffffffffffffff 540 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component/Contents/Resources/StarChild.rsrc
+79d36d033424a857b907cab0ca8f84f4 0050d67938c9896b49ce42cfa0e64f6f ffffffffffffffffffffffffffffffff 540 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/ResourceManagerResources/StarChild.rsrc
+000000004864a72d000000000000057a 79d36d037c400f7ab907cab0ca8f818e ffffffffffffffffffffffffffffffff 540 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/ResourceManagerResources/Objects/StarChild-F2DE06932BC77829.rsrc
+fff3e3a98a9d0ef545ab90616f103fe2 69dcf995a9d043fc6d75e1d0ddea8ed3 ffffffffffffffffffffffffffffffff 129104 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild
+0000000009085486000000000001b528 b8fbf42e4986f4c5665be953e91fa183 ffffffffffffffffffffffffffffffff 2300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBaseHelper.o
+0000000009085486000000000001b528 fd96ced5a200dee4c2e31bcfbc429e1d ffffffffffffffffffffffffffffffff 2216 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBaseHelper.o
+0000000009085486000000000001b528 37f37f18798bd9f8ce6154e1c956bb80 ffffffffffffffffffffffffffffffff 2664 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBaseHelper.o
+000000000d89aa8e0000000000006fbd 7a3560e7b9b4ffc78bd30de3abe2f461 ffffffffffffffffffffffffffffffff 1284 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd 74ad89e9baad66a148d29829c4d70591 ffffffffffffffffffffffffffffffff 1340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAVectorUnit.o
+000000000d89aa8e0000000000006fbd f2b2c8a0b640a986de02e12103373e98 ffffffffffffffffffffffffffffffff 1520 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAVectorUnit.o
+000000004864a73b00000000000067f6 984e9a32551950067eaec55e03a2d300 ffffffffffffffffffffffffffffffff 9460 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAAUParameter.o
+000000004864a73b00000000000067f6 3e1d8723691c850a04a5d81105bed1a7 ffffffffffffffffffffffffffffffff 8912 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAAUParameter.o
+000000004864a73b00000000000067f6 80a26197a2316a24142c562ea189c697 ffffffffffffffffffffffffffffffff 10844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAAUParameter.o
+00000000459e514c000000000000b0e9 d662802eee1260a22040fe260d48e8bd ffffffffffffffffffffffffffffffff 9476 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 d85bceecf6cd997f5b9eddac6093d980 ffffffffffffffffffffffffffffffff 8332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAStreamBasicDescription.o
+00000000459e514c000000000000b0e9 0589ea5b514cea6c17855658838da981 ffffffffffffffffffffffffffffffff 10324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAStreamBasicDescription.o
+000000000fde02b3000000000000e8c5 1ef0a1a4f5b29775a55e70c69aa50d8e ffffffffffffffffffffffffffffffff 4556 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAMutex.o
+000000000fde02b3000000000000e8c5 85b9baf16762093064da207228726eb3 ffffffffffffffffffffffffffffffff 4332 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAMutex.o
+000000000fde02b3000000000000e8c5 2b7bd0175645be5177b1ea115900ca71 ffffffffffffffffffffffffffffffff 5376 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAMutex.o
+000000000224c870000000000000a1ca 78ea07b6e6c5d0029c6dda3e84c78f87 ffffffffffffffffffffffffffffffff 3652 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca ac138a2e726c0797a656ef34816044a5 ffffffffffffffffffffffffffffffff 3452 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAAudioChannelLayout.o
+000000000224c870000000000000a1ca 7a8b26847dc3a79a1ad33a1ccfbd6b83 ffffffffffffffffffffffffffffffff 4512 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAAudioChannelLayout.o
+000000000b2c9e1300000000000045af 465900bc743d0e22955909dce66f2dff ffffffffffffffffffffffffffffffff 344 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af 1b8723face56ed6eee9a8a1abcf03c3b ffffffffffffffffffffffffffffffff 288 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUDebugDispatcher.o
+000000000b2c9e1300000000000045af b3355600b9fd7bbef66326c78f1f6875 ffffffffffffffffffffffffffffffff 356 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUDebugDispatcher.o
+0000000000735ce0000000000000debb 452bbe5fa33cfa0271e41cac90f216ac ffffffffffffffffffffffffffffffff 3748 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBuffer.o
+0000000000735ce0000000000000debb a2885d971ff5a40b2134c011e8c404b1 ffffffffffffffffffffffffffffffff 3596 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBuffer.o
+0000000000735ce0000000000000debb 9ad78d6ae6c47b7c50c71184eb56a8ce ffffffffffffffffffffffffffffffff 4340 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBuffer.o
+000000000b7e84bf00000000000078d4 1fe37912dd316a58ec7cd9f62976393f ffffffffffffffffffffffffffffffff 20844 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUEffectBase.o
+000000000b7e84bf00000000000078d4 82417eac9ff72d392b759cb84d093528 ffffffffffffffffffffffffffffffff 19796 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUEffectBase.o
+000000000b7e84bf00000000000078d4 d00d6223dd4cba3e6f040881a14eafa8 ffffffffffffffffffffffffffffffff 22368 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUEffectBase.o
+000000004cd54809000000000000c180 1ee59d4302910c113565888b720d64be ffffffffffffffffffffffffffffffff 4836 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/ComponentBase.o
+000000004cd54809000000000000c180 d1fc2bb62abf095e1fa2da04a34dc0e0 ffffffffffffffffffffffffffffffff 4300 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/ComponentBase.o
+000000004cd54809000000000000c180 59f5ac3866caebec6472657cb399a392 ffffffffffffffffffffffffffffffff 5080 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/ComponentBase.o
+000000000257e57600000000000074ab 344fe845f561f4017232516d15186295 ffffffffffffffffffffffffffffffff 25916 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUScopeElement.o
+000000000257e57600000000000074ab 20adf1fc4514e1187017087be5e56f7f ffffffffffffffffffffffffffffffff 24616 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUScopeElement.o
+000000000257e57600000000000074ab 9548c646db1f9c296fcfacac36db4c9d ffffffffffffffffffffffffffffffff 29532 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUScopeElement.o
+00000000459e20a7000000000000dea0 6732e07c3b2c8707c569ec48e27234ec ffffffffffffffffffffffffffffffff 5712 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUOutputElement.o
+00000000459e20a7000000000000dea0 a4d484b9779131ffb80691e621167b32 ffffffffffffffffffffffffffffffff 5484 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUOutputElement.o
+00000000459e20a7000000000000dea0 fa9537679bd09a791013f962f49d5a27 ffffffffffffffffffffffffffffffff 6632 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUOutputElement.o
+000000000b7e84bf00000000000004cc 9d784a229fbdbd0743f797092f80d907 ffffffffffffffffffffffffffffffff 7848 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUInputElement.o
+000000000b7e84bf00000000000004cc d8ad8eb4b4094e4d107f6368a0104dd6 ffffffffffffffffffffffffffffffff 7552 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUInputElement.o
+000000000b7e84bf00000000000004cc ec10aa8e37e18874be7bbb34f00f45b9 ffffffffffffffffffffffffffffffff 9176 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUInputElement.o
+0000000004a0f5680000000000000b33 3264360dd7880192da2572b3a3830e82 ffffffffffffffffffffffffffffffff 4456 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUDispatch.o
+0000000004a0f5680000000000000b33 0d6025fc28058c5492b8ecfc67a3c035 ffffffffffffffffffffffffffffffff 5324 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUDispatch.o
+0000000004a0f5680000000000000b33 4d32cbe30d924e2f39a6c8b69e95155c ffffffffffffffffffffffffffffffff 6360 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUDispatch.o
+00000000413e98c60000000000017e35 ef0f421e7f44684a46650423c2923416 ffffffffffffffffffffffffffffffff 63236 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBase.o
+00000000413e98c60000000000017e35 ae4df4716723d630d36c65664e3ba31e ffffffffffffffffffffffffffffffff 62760 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBase.o
+00000000413e98c60000000000017e35 d65c52736e8cf99f790f04970b5eddc5 ffffffffffffffffffffffffffffffff 73140 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBase.o
+0000000060215dc0000000000000cbb9 0411a7d4640cd6ea9ab6fde0a92afaaf ffffffffffffffffffffffffffffffff 33012 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild-1DB483EC8D75827.o
+0000000060215dc0000000000000cbb9 2812eb4d2e34aac57545ea60c715993f ffffffffffffffffffffffffffffffff 34228 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild-1DB483EC8D75827.o
+0000000060215dc0000000000000cbb9 5bdd5d8f026deb469b05cbd71e65cf82 ffffffffffffffffffffffffffffffff 0 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild-1DB483EC8D75827.o
+7b8ed46a564538e00000dca584e62d53 72383fa839b38a4f7c8de117fda8108d ffffffffffffffffffffffffffffffff 122348 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild
+00000000605576f3000000000000017c 5208fa379a140fd5b28e4d6132faab35 ffffffffffffffffffffffffffffffff 380 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component/Contents/Resources/English.lproj/InfoPlist.strings
+00000000000000000000000000000000 8c47eef706985a7095c9ef1c38796c8e ffffffffffffffffffffffffffffffff 1117 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component/Contents/Info.plist
+00000000000000000000000000000000 8c47eef706985a7095c9ef1c38796c8e ffffffffffffffffffffffffffffffff 8 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component/Contents/PkgInfo
+ffffffffffffffffffffffffffffffff de91463050d02a9f1418010cf862cdb9 ffffffffffffffffffffffffffffffff 0 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component
+ffffffffffffffffffffffffffffffff c6031e5bd183891277072098b6c38276 ffffffffffffffffffffffffffffffff 0 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component/Contents/MacOS/StarChild
+ffffffffffffffffffffffffffffffff 61a2418cd46d486270295f37bfff15d7 ffffffffffffffffffffffffffffffff 0 /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild
diff --git a/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/build-state.dat b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/build-state.dat
new file mode 100644
index 000000000..2bcda7339
--- /dev/null
+++ b/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/build-state.dat
@@ -0,0 +1,1612 @@
+TStarChild
+v7
+r0
+t639860714.889277
+cCheck dependencies
+cProcessInfoPlistFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component/Contents/Info.plist Info.plist
+cCopyStringsFile /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/StarChild.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal ppc c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/ppc/StarChild normal ppc
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/StarChild.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/i386/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal i386 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild-1DB483EC8D75827.o /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/StarChild.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUDispatch.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUInputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUOutputElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUScopeElement.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/ComponentBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUEffectBase.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBuffer.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUDebugDispatcher.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAAudioChannelLayout.o /Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAMutex.o /Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAStreamBasicDescription.o /Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAAUParameter.o /Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/CAVectorUnit.o /Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cCompileC build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/AUBaseHelper.o /Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp normal x86_64 c++ com.apple.compilers.gcc.4_2
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/x86_64/StarChild normal x86_64
+cLd /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/Objects-normal/i386/StarChild normal i386
+cCreateUniversalBinary /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component/Contents/MacOS/StarChild normal "ppc i386 x86_64"
+cRez /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/ResourceManagerResources/Objects/StarChild-F2DE06932BC77829.rsrc StarChild.r
+cResMergerCollector /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/StarChild.build/Release/StarChild.build/ResourceManagerResources/StarChild.rsrc
+cResMergerProduct /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component/Contents/Resources/StarChild.rsrc
+cTouch /Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/StarChild/build/Release/StarChild.component
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp
+c000000004A12495000000000000104EE
+t1242712400
+s66798
+i"AUBase.h"
+i"AUDispatch.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i
+i"CAAudioChannelLayout.h"
+i"CAHostTimeBase.h"
+i"CAVectorUnit.h"
+i"CAXException.h"
+i"AUBaseHelper.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.h
+c000000004A1249500000000000008203
+t1242712400
+s33283
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUScopeElement.h"
+i"AUInputElement.h"
+i"AUOutputElement.h"
+i"AUBuffer.h"
+i"CAMath.h"
+i"CAThreadSafeList.h"
+i"CAVectorUnit.h"
+i"CATrace.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp
+c000000004CC46C4D00000000000037D2
+t1287941197
+s14290
+i"AUBase.h"
+i"CAXException.h"
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.h
+c000000004A1249500000000000000D7E
+t1242712400
+s3454
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp
+c000000004A12495000000000000014D3
+t1242712400
+s5331
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.h
+c000000004A12495000000000000011E5
+t1242712400
+s4581
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp
+c000000004A1249500000000000000B01
+t1242712400
+s2817
+i"AUOutputElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.h
+c000000004A1249500000000000000B84
+t1242712400
+s2948
+i"AUScopeElement.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp
+c000000004A12495000000000000042C4
+t1242712400
+s17092
+i"AUScopeElement.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.h
+c000000004A12495000000000000049D5
+t1242712400
+s18901
+i
+i
+i
+i
+i"ComponentBase.h"
+i"AUBuffer.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp
+c000000004A1249500000000000001985
+t1242712400
+s6533
+i"ComponentBase.h"
+i"CAXException.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.h
+c000000004CC46C4D0000000000001FED
+t1287941197
+s8173
+i
+i"CADebugMacros.h"
+i
+i
+i
+i
+i"CoreAudioTypes.h"
+i"Components.h"
+i"AudioUnit.h"
+i"CAGuard.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp
+c000000004A12495000000000000041B8
+t1242712400
+s16824
+i"AUEffectBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.h
+c000000004A1249500000000000002520
+t1242712400
+s9504
+i"AUBase.h"
+i"AUSilentTimeout.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp
+c000000004A1249500000000000001347
+t1242712400
+s4935
+i"AUBaseHelper.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.h
+c000000004A1249500000000000000D1B
+t1242712400
+s3355
+i
+i
+i
+i
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp
+c000000004A1249500000000000001C88
+t1242712400
+s7304
+i"AUBuffer.h"
+i
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.h
+c000000004A12495000000000000021E4
+t1242712400
+s8676
+i
+i
+i
+i
+i"CAStreamBasicDescription.h"
+i"CAAutoDisposer.h"
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.cpp
+c000000004A1249500000000000003FB0
+t1242712400
+s16304
+i"AUDebugDispatcher.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUDebugDispatcher.h
+c000000004A1249500000000000001407
+t1242712400
+s5127
+i"CAHostTimeBase.h"
+i"CAMutex.h"
+i"AUBase.h"
+
+N/Developer/Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUSilentTimeout.h
+c000000004A1249500000000000000C53
+t1242712400
+s3155
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.cpp
+c000000004A12495000000000000031DF
+t1242712400
+s12767
+i"CAAUParameter.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAUParameter.h
+c000000004A1249500000000000001BD1
+t1242712400
+s7121
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomic.h
+c000000004A12495000000000000027B0
+t1242712400
+s10160
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAtomicStack.h
+c000000004A1249500000000000001A7C
+t1242712400
+s6780
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp
+c000000004A124950000000000000188C
+t1242712400
+s6284
+i"CAAudioChannelLayout.h"
+i"CAAutoDisposer.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAudioChannelLayout.h
+c000000004A1249500000000000001E94
+t1242712400
+s7828
+i
+i
+i
+i
+i
+i
+i
+i"CADebugMacros.h"
+i"CAAutoDisposer.h"
+i"CAReferenceCounted.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAAutoDisposer.h
+c000000004A1249500000000000002F87
+t1242712400
+s12167
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugMacros.h
+c000000004A1249500000000000004FAE
+t1242712400
+s20398
+i
+i"CoreAudioTypes.h"
+i"CADebugPrintf.h"
+i
+i"CAHostTimeBase.h"
+i"CAHostTimeBase.h"
+i"CADebugger.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugPrintf.h
+c000000004A124950000000000000111C
+t1242712400
+s4380
+i
+i"CoreAudioTypes.h"
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CADebugger.h
+c000000004A1249500000000000000A9C
+t1242712400
+s2716
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAException.h
+c000000004A1249500000000000000DDC
+t1242712400
+s3548
+i
+i"CoreAudioTypes.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAGuard.h
+c000000004A12495000000000000012A2
+t1242712400
+s4770
+i"CAMutex.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAHostTimeBase.h
+c000000004A1249500000000000001C6C
+t1242712400
+s7276
+i
+i
+i
+i
+i"CADebugMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CALogMacros.h
+c000000004A12495000000000000019A2
+t1242712400
+s6562
+i"CADebugMacros.h"
+i"CADebugPrintf.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMath.h
+c000000004A1249500000000000000C6B
+t1242712400
+s3179
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.cpp
+c000000004A12495000000000000030DE
+t1242712400
+s12510
+i"CAMutex.h"
+i
+i"CADebugMacros.h"
+i"CAException.h"
+i"CAHostTimeBase.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAMutex.h
+c000000004A124950000000000000128C
+t1242712400
+s4748
+i
+i
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAReferenceCounted.h
+c000000004A1249500000000000000C97
+t1242712400
+s3223
+i"CAAtomic.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp
+c000000004A1249500000000000004E32
+t1242712400
+s20018
+i"CAStreamBasicDescription.h"
+i"CAMath.h"
+i
+i
+i"CALogMacros.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAStreamBasicDescription.h
+c000000004A1249500000000000002E6C
+t1242712400
+s11884
+i
+i
+i"CoreAudioTypes.h"
+i"CoreFoundation.h"
+i"CADebugMacros.h"
+i
+i
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAThreadSafeList.h
+c000000004A1249500000000000001D08
+t1242712400
+s7432
+i"CAAtomicStack.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.cpp
+c000000004CC46C4D000000000000163D
+t1287941197
+s5693
+i"CAVectorUnit.h"
+i
+i"ippdefs.h"
+i"ippcore.h"
+
+N/Developer/Extras/CoreAudio/PublicUtility/CAVectorUnit.h
+c000000004CC46C4D0000000000000EC3
+t1287941197
+s3779
+i
+i"CAVectorUnitTypes.h"
+i