Trying to build under Mono 1.9 on Mac OSX 10.5.4, I''m getting the error: Found more than one version of ruby.exe on your path when running "rake compile mono=1" Any thoughts on what might be happening? Any other details I can provide? Thanks! Joe -- joe fiorini http://www.faithfulgeek.org // freelancing & knowledge sharing -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20080805/529d4c2d/attachment-0001.html>
I''m on svn r126 On Tue, Aug 5, 2008 at 7:08 PM, Joe Fiorini <joe at faithfulgeek.org> wrote:> Trying to build under Mono 1.9 on Mac OSX 10.5.4, I''m getting the error: > Found more than one version of ruby.exe on your path > > when running "rake compile mono=1" > > Any thoughts on what might be happening? Any other details I can provide? > > Thanks! > Joe > > -- > joe fiorini > http://www.faithfulgeek.org > // freelancing & knowledge sharing >-- joe fiorini http://www.faithfulgeek.org // freelancing & knowledge sharing -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20080805/d69fbae5/attachment.html>
It means that there is more than one ruby/ruby.exe on your path, which you probably figured out. The workaround is to copy default.irconfig.rb to ~/.irconfig.rb, then edit the file to make the MRI variable point to the right path. JD From: ironruby-core-bounces at rubyforge.org [mailto:ironruby-core-bounces at rubyforge.org] On Behalf Of Joe Fiorini Sent: Tuesday, August 05, 2008 4:23 PM To: ironruby-core at rubyforge.org Subject: Re: [Ironruby-core] Can''t build under Mono I''m on svn r126 On Tue, Aug 5, 2008 at 7:08 PM, Joe Fiorini <joe at faithfulgeek.org<mailto:joe at faithfulgeek.org>> wrote: Trying to build under Mono 1.9 on Mac OSX 10.5.4, I''m getting the error: Found more than one version of ruby.exe on your path when running "rake compile mono=1" Any thoughts on what might be happening? Any other details I can provide? Thanks! Joe -- joe fiorini http://www.faithfulgeek.org // freelancing & knowledge sharing -- joe fiorini http://www.faithfulgeek.org // freelancing & knowledge sharing -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20080805/173ce3ca/attachment.html>
2008/8/6 Jim Deville <jdeville at microsoft.com>:> It means that there is more than one ruby/ruby.exe on your path, which you > probably figured out. The workaround is to copy default.irconfig.rb to > ~/.irconfig.rb, then edit the file to make the MRI variable point to the > right path.Actually, what happens is that on Mac OS X Ruby binary is called "ruby", but current build script only checks for "ruby.exe", and if "number of ruby found != 1" then it says "more than one ruby found", which is false since it''s less than one in this case. I believe I sent a fix for this more than a month ago?! http://sparcs.kaist.ac.kr/~tinuviel/download/IronRuby/patch-find-executable -- Seo Sanghyeon
Yes you did, and I''m trying to get it in. John asked me to work on it during the rush upto the OSCON talk. Between that and a family emergency, I haven''t had much of a chance to work on it. I''ll try to get to it this week. JD> -----Original Message----- > From: ironruby-core-bounces at rubyforge.org [mailto:ironruby-core- > bounces at rubyforge.org] On Behalf Of Sanghyeon Seo > Sent: Tuesday, August 05, 2008 5:17 PM > To: ironruby-core at rubyforge.org > Subject: Re: [Ironruby-core] Can''t build under Mono > > 2008/8/6 Jim Deville <jdeville at microsoft.com>: > > It means that there is more than one ruby/ruby.exe on your path, > which you > > probably figured out. The workaround is to copy default.irconfig.rb > to > > ~/.irconfig.rb, then edit the file to make the MRI variable point to > the > > right path. > > Actually, what happens is that on Mac OS X Ruby binary is called > "ruby", but current build script only checks for "ruby.exe", and if > "number of ruby found != 1" then it says "more than one ruby found", > which is false since it''s less than one in this case. > > I believe I sent a fix for this more than a month ago?! > http://sparcs.kaist.ac.kr/~tinuviel/download/IronRuby/patch-find- > executable > > -- > Seo Sanghyeon > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-core
Come to think of it. Is there a reason to call ruby.exe on Windows? Windows has the PATHEXT variable, and it will find ruby.exe if you call ruby in the right location. Am I missing something? Or should we make the runners call ruby instead of ruby.exe? JD> -----Original Message----- > From: ironruby-core-bounces at rubyforge.org [mailto:ironruby-core- > bounces at rubyforge.org] On Behalf Of Sanghyeon Seo > Sent: Tuesday, August 05, 2008 5:17 PM > To: ironruby-core at rubyforge.org > Subject: Re: [Ironruby-core] Can''t build under Mono > > 2008/8/6 Jim Deville <jdeville at microsoft.com>: > > It means that there is more than one ruby/ruby.exe on your path, > which you > > probably figured out. The workaround is to copy default.irconfig.rb > to > > ~/.irconfig.rb, then edit the file to make the MRI variable point to > the > > right path. > > Actually, what happens is that on Mac OS X Ruby binary is called > "ruby", but current build script only checks for "ruby.exe", and if > "number of ruby found != 1" then it says "more than one ruby found", > which is false since it''s less than one in this case. > > I believe I sent a fix for this more than a month ago?! > http://sparcs.kaist.ac.kr/~tinuviel/download/IronRuby/patch-find- > executable > > -- > Seo Sanghyeon > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-core
2008/8/6 Jim Deville <jdeville at microsoft.com>:> Come to think of it. Is there a reason to call ruby.exe on Windows? Windows has the PATHEXT variable, and it will find ruby.exe if you call ruby in the right location. Am I missing something? Or should we make the runners call ruby instead of ruby.exe?This is true. Just executing "ruby" will do the right thing both on Windows and UNIX. I thought the idea was to warn users if they don''t have Ruby installed, or if there are more than one Ruby installations. So I did the minimally intrusive change to keep that. find_executable is basically a reimplementation of PATH/PATHEXT searching logic. -- Seo Sanghyeon
Sanghyeon Seo wrote:> 2008/8/6 Jim Deville <jdeville at microsoft.com>: >> Come to think of it. Is there a reason to call ruby.exe on Windows? Windows has the PATHEXT variable, and it will find ruby.exe if you call ruby in the right location. Am I missing something? Or should we make the runners call ruby instead of ruby.exe? > > This is true. Just executing "ruby" will do the right thing both on > Windows and UNIX. I thought the idea was to warn users if they don''t > have Ruby installed, or if there are more than one Ruby installations. > So I did the minimally intrusive change to keep that.Bah, just use whatever PATH finds. - Charlie
Thanks for all the suggestions! I''m using a .irconfig.rb in my home directory, which got me past that error. Now it''s tell me it can''t find a large number of source files, like so: error CS2001: Source file `Development/Open'' could not be found error CS2001: Source file `Source'' could not be found error CS2001: Source file `Projects/ironrubyRubyTestKey.snk'' could not be found error CS2001: Source file `Actions\ActionSelfExpression.cs'' could not be found error CS2001: Source file `Actions\ArgumentInfo.cs'' could not be found error CS2001: Source file `Actions\CallAction.cs'' could not be found error CS2001: Source file `Actions\CallSiteBinder.cs'' could not be found error CS2001: Source file `Actions\CallSignature.cs'' could not be found error CS2001: Source file `Actions\ConvertAction.cs'' could not be found error CS2001: Source file `Actions\CustomTracker.cs'' could not be found error CS2001: Source file `Actions\DeferMetaObject.cs'' could not be found error CS2001: Source file `Actions\DeleteMemberAction.cs'' could not be found error CS2001: Source file `Actions\ErrorMetaObject.cs'' could not be found error CS2001: Source file `Actions\GetMemberAction.cs'' could not be found error CS2001: Source file `Actions\IDynamicObject.cs'' could not be found error CS2001: Source file `Actions\InvokeAction.cs'' could not be found error CS2001: Source file `Actions\MatchCaller.cs'' could not be found error CS2001: Source file `Actions\MetaAction.cs'' could not be found error CS2001: Source file `Actions\MetaObject.cs'' could not be found error CS2001: Source file `Actions\Old\OldCreateInstanceAction.cs'' could not be found error CS2001: Source file `Actions\OperationAction.cs'' could not be found error CS2001: Source file `Actions\ParameterMetaObject.cs'' could not be found error CS2001: Source file `Actions\RestrictedMetaObject.cs'' could not be found error CS2001: Source file `Actions\Restrictions.cs'' could not be found error CS2001: Source file `Actions\SetMemberAction.cs'' could not be found error CS2001: Source file `Actions\SplatCallSite.cs'' could not be found error CS2001: Source file `Actions\SplatCallSite.Generated.cs'' could not be found error CS2001: Source file `Actions\StandardAction.cs'' could not be found error CS2001: Source file `Actions\StandardActionKind.cs'' could not be found error CS2001: Source file `Ast\Argument.cs'' could not be found error CS2001: Source file `Ast\CodeContextExpression.cs'' could not be found error CS2001: Source file `Ast\Extensions.cs'' could not be found error CS2001: Source file `Ast\IndexedPropertyExpression.cs'' could not be found error CS2001: Source file `Compiler\Set.cs'' could not be found error CS2001: Source file `Compiler\ExpressionQuoter.cs'' could not be found error CS2001: Source file `Ast\ElementInit.cs'' could not be found error CS2001: Source file `Ast\ListInitExpression.cs'' could not be found error CS2001: Source file `Ast\MemberAssignment.cs'' could not be found error CS2001: Source file `Ast\MemberInitExpression.cs'' could not be found error CS2001: Source file `Ast\MemberListBinding.cs'' could not be found error CS2001: Source file `Ast\MemberMemberBinding.cs'' could not be found error CS2001: Source file `Compiler\KeyedQueue.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Binary.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.ControlFlow.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Generated.cs'' could not be found error CS2001: Source file `Compiler\DynamicNodeRewriter.cs'' could not be found error CS2001: Source file `Ast\ILocalVariables.cs'' could not be found error CS2001: Source file `Compiler\CompilerScope.Storage.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Unary.cs'' could not be found error CS2001: Source file `Compiler\StackSpiller.Bindings.cs'' could not be found error CS2001: Source file `Com\ArgBuilder.cs'' could not be found error CS2001: Source file `Com\BoundDispEvent.cs'' could not be found error CS2001: Source file `Com\ComClassMetaObject.cs'' could not be found error CS2001: Source file `Com\ComInvokeAction.cs'' could not be found error CS2001: Source file `Com\ComDispIds.cs'' could not be found error CS2001: Source file `Com\ComEventDesc.cs'' could not be found error CS2001: Source file `Com\ComEventSink.cs'' could not be found error CS2001: Source file `Com\ComEventSinkProxy.cs'' could not be found error CS2001: Source file `Com\ComEventSinksContainer.cs'' could not be found error CS2001: Source file `Com\ComHresults.cs'' could not be found error CS2001: Source file `Com\ComInterop.cs'' could not be found error CS2001: Source file `Com\ComMetaObject.cs'' could not be found error CS2001: Source file `Com\ComMethodDesc.cs'' could not be found error CS2001: Source file `Com\ComObject.cs'' could not be found error CS2001: Source file `Com\ComObjectWithTypeInfo.cs'' could not be found error CS2001: Source file `Com\ComParamDesc.cs'' could not be found error CS2001: Source file `Com\ComReferenceArgBuilder.cs'' could not be found error CS2001: Source file `Com\ComRuntimeHelpers.cs'' could not be found error CS2001: Source file `Com\ComType.cs'' could not be found error CS2001: Source file `Com\ComTypeClassDesc.cs'' could not be found error CS2001: Source file `Com\ComTypeDesc.cs'' could not be found error CS2001: Source file `Com\ComTypeEnumDesc.cs'' could not be found error CS2001: Source file `Com\ComTypeLibDesc.cs'' could not be found error CS2001: Source file `Com\ComTypeLibInfo.cs'' could not be found error CS2001: Source file `Com\ComTypeLibMemberDesc.cs'' could not be found error CS2001: Source file `Com\DispCallable.cs'' could not be found error CS2001: Source file `Com\DispCallableMetaObject.cs'' could not be found error CS2001: Source file `Com\DispMethod.cs'' could not be found error CS2001: Source file `Com\DispPropertyGet.cs'' could not be found error CS2001: Source file `Com\DispPropertyPut.cs'' could not be found error CS2001: Source file `Com\ExcepInfo.cs'' could not be found error CS2001: Source file `Com\GenericComMetaObject.cs'' could not be found error CS2001: Source file `Com\GenericComObject.cs'' could not be found error CS2001: Source file `Com\IDispatchComObject.cs'' could not be found error CS2001: Source file `Com\IDispatchMetaObject.cs'' could not be found error CS2001: Source file `Com\IDispatchObject.cs'' could not be found error CS2001: Source file `Com\InvokeBinder.cs'' could not be found error CS2001: Source file `Com\MetaUnwrappedComObject.cs'' could not be found error CS2001: Source file `Com\NullArgBuilder.cs'' could not be found error CS2001: Source file `Com\ReferenceArgBuilder.cs'' could not be found error CS2001: Source file `Com\ReturnBuilder.cs'' could not be found error CS2001: Source file `Com\SimpleArgBuilder.cs'' could not be found error CS2001: Source file `Com\TypeEnumMetaObject.cs'' could not be found error CS2001: Source file `Com\TypeInfoMetaObject.cs'' could not be found error CS2001: Source file `Com\TypeLibInfoMetaObject.cs'' could not be found error CS2001: Source file `Com\TypeLibMetaObject.cs'' could not be found error CS2001: Source file `Com\VarEnumSelector.cs'' could not be found error CS2001: Source file `Com\Variant.cs'' could not be found error CS2001: Source file `Com\VariantArray.cs'' could not be found error CS2001: Source file `Com\VariantBuilder.cs'' could not be found error CS2001: Source file `Generation\GlobalRewriter.cs'' could not be found error CS2001: Source file `Ast\GlobalVariableExpression.cs'' could not be found error CS2001: Source file `Generation\GlobalOptimizedRewriter.cs'' could not be found error CS2001: Source file `Actions\ExtensionMethodTracker.cs'' could not be found error CS2001: Source file `Actions\Old\OldDynamicAction.cs'' could not be found error CS2001: Source file `Actions\ActionBinder.cs'' could not be found error CS2001: Source file `Actions\BoundMemberTracker.cs'' could not be found error CS2001: Source file `Actions\ConstructorTracker.cs'' could not be found error CS2001: Source file `Actions\ErrorInfo.cs'' could not be found error CS2001: Source file `Actions\EventTracker.cs'' could not be found error CS2001: Source file `Actions\ExtensionPropertyTracker.cs'' could not be found error CS2001: Source file `Actions\FieldTracker.cs'' could not be found error CS2001: Source file `Actions\Matchmaker.cs'' could not be found error CS2001: Source file `Actions\MethodGroup.cs'' could not be found error CS2001: Source file `Actions\MethodTracker.cs'' could not be found error CS2001: Source file `Actions\RuleValidator.cs'' could not be found error CS2001: Source file `Actions\NamespaceTracker.cs'' could not be found error CS2001: Source file `Actions\NestedTypeTracker.cs'' could not be found error CS2001: Source file `Actions\PropertyTracker.cs'' could not be found error CS2001: Source file `Actions\ReflectedPropertyTracker.cs'' could not be found error CS2001: Source file `Actions\Rule.cs'' could not be found error CS2001: Source file `Actions\RuleCache.cs'' could not be found error CS2001: Source file `Actions\Old\OldCallAction.cs'' could not be found error CS2001: Source file `Actions\Old\OldConvertToAction.cs'' could not be found error CS2001: Source file `Actions\CreateAction.cs'' could not be found error CS2001: Source file `Actions\Old\OldDeleteMemberAction.cs'' could not be found error CS2001: Source file `Actions\DynamicSiteHelpers.Generated.cs'' could not be found error CS2001: Source file `Actions\Old\OldDoOperationAction.cs'' could not be found error CS2001: Source file `Actions\DynamicSiteHelpers.cs'' could not be found error CS2001: Source file `Actions\EmptyRuleSet.cs'' could not be found error CS2001: Source file `Actions\MemberTracker.cs'' could not be found error CS2001: Source file `Actions\Old\OldGetMemberAction.cs'' could not be found error CS2001: Source file `Actions\Old\OldInvokeMemberAction.cs'' could not be found error CS2001: Source file `Actions\Old\OldMemberAction.cs'' could not be found error CS2001: Source file `Actions\MemberGroup.cs'' could not be found error CS2001: Source file `Actions\RuleSet.cs'' could not be found error CS2001: Source file `Actions\RuleTree.cs'' could not be found error CS2001: Source file `Actions\Old\OldSetMemberAction.cs'' could not be found error CS2001: Source file `Actions\SmallRuleSet.cs'' could not be found error CS2001: Source file `Actions\RuleBuilder.cs'' could not be found error CS2001: Source file `Actions\TemplatedValue.cs'' could not be found error CS2001: Source file `Actions\TopNamespaceTracker.cs'' could not be found error CS2001: Source file `Actions\TrackerTypes.cs'' could not be found error CS2001: Source file `Actions\TypeGroup.cs'' could not be found error CS2001: Source file `Actions\TypeTracker.cs'' could not be found error CS2001: Source file `Actions\UpdateDelegates.cs'' could not be found error CS2001: Source file `Ast\Annotations.cs'' could not be found error CS2001: Source file `Actions\Matchmaker.Generated.cs'' could not be found error CS2001: Source file `Compiler\Closure.cs'' could not be found error CS2001: Source file `Ast\AutoRuleTemplate.cs'' could not be found error CS2001: Source file `Compiler\HoistedLocals.cs'' could not be found error CS2001: Source file `Compiler\CompilerScope.cs'' could not be found error CS2001: Source file `Compiler\GeneratorInfo.cs'' could not be found error CS2001: Source file `Generation\IExpressionSerializable.cs'' could not be found error CS2001: Source file `Ast\InvocationExpression.cs'' could not be found error CS2001: Source file `Ast\LabelTarget.cs'' could not be found error CS2001: Source file `Ast\OpAssignmentExpression.cs'' could not be found error CS2001: Source file `Ast\ParameterExpression.cs'' could not be found error CS2001: Source file `Compiler\StackSpiller.Temps.cs'' could not be found error CS2001: Source file `Generation\ToDiskRewriter.cs'' could not be found error CS2001: Source file `Actions\Stitcher.cs'' could not be found error CS2001: Source file `Ast\TreeComparer.cs'' could not be found error CS2001: Source file `Compiler\ExpressionTreeVisitor.cs'' could not be found error CS2001: Source file `Compiler\ExpressionTreeVisitor.Generated.cs'' could not be found error CS2001: Source file `Runtime\OptimizedScriptCode.cs'' could not be found error CS2001: Source file `Generation\GlobalLookupRewriter.cs'' could not be found error CS2001: Source file `Hosting\EngineOptions.cs'' could not be found error CS2001: Source file `Runtime\LanguageBoundTextContentProvider.cs'' could not be found error CS2001: Source file `Runtime\AssemblyTypeNames.cs'' could not be found error CS2001: Source file `Compiler\StackSpiller.Generated.cs'' could not be found error CS2001: Source file `Compiler\ExpressionWriter.cs'' could not be found error CS2001: Source file `Ast\BinaryExpression.cs'' could not be found error CS2001: Source file `Ast\CatchBlock.cs'' could not be found error CS2001: Source file `Compiler\CatchRecord.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Address.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Lambda.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Expressions.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Logical.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Statements.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.cs'' could not be found error CS2001: Source file `Compiler\ConstantCheck.cs'' could not be found error CS2001: Source file `Compiler\StackSpiller.cs'' could not be found error CS2001: Source file `Ast\LocalScopeExpression.cs'' could not be found error CS2001: Source file `Compiler\TryStatementInfo.cs'' could not be found error CS2001: Source file `Compiler\VariableBinder.cs'' could not be found error CS2001: Source file `Ast\DoStatementBuilder.cs'' could not be found error CS2001: Source file `Ast\IfStatementBuilder.cs'' could not be found error CS2001: Source file `Ast\ExpressionType.cs'' could not be found error CS2001: Source file `Ast\TypeUtils.cs'' could not be found error CS2001: Source file `Runtime\DlrCachedCodeAttribute.cs'' could not be found error CS2001: Source file `Runtime\DocumentationAttribute.cs'' could not be found error CS2001: Source file `Generation\ConversionResult.cs'' could not be found error CS2001: Source file `Generation\DebugILGen.cs'' could not be found error CS2001: Source file `Generation\DynamicILGen.cs'' could not be found error CS2001: Source file `Generation\ILGen.cs'' could not be found error CS2001: Source file `Compiler\TryFlowAnalyzer.cs'' could not be found error CS2001: Source file `Ast\TryStatementBuilder.cs'' could not be found error CS2001: Source file `Ast\TypeBinaryExpression.cs'' could not be found error CS2001: Source file `Ast\UnaryExpression.cs'' could not be found error CS2001: Source file `Ast\LambdaExpression.cs'' could not be found error CS2001: Source file `Ast\DeleteExpression.cs'' could not be found error CS2001: Source file `Ast\ActionExpression.cs'' could not be found error CS2001: Source file `Actions\ArgumentKind.cs'' could not be found error CS2001: Source file `Ast\Block.cs'' could not be found error CS2001: Source file `Ast\AssignmentExpression.cs'' could not be found error CS2001: Source file `Ast\BreakStatement.cs'' could not be found error CS2001: Source file `Actions\CallSite.cs'' could not be found error CS2001: Source file `Actions\DynamicSiteTargets.Generated.cs'' could not be found error CS2001: Source file `Ast\ConditionalExpression.cs'' could not be found error CS2001: Source file `Ast\ConstantExpression.cs'' could not be found error CS2001: Source file `Ast\ContinueStatement.cs'' could not be found error CS2001: Source file `Ast\MemberBinding.cs'' could not be found error CS2001: Source file `Ast\NewExpression.cs'' could not be found error CS2001: Source file `Ast\DoStatement.cs'' could not be found error CS2001: Source file `Ast\EmptyStatement.cs'' could not be found error CS2001: Source file `Ast\IfStatementTest.cs'' could not be found error CS2001: Source file `Ast\LabeledStatement.cs'' could not be found error CS2001: Source file `Ast\MemberExpression.cs'' could not be found error CS2001: Source file `Ast\NewArrayExpression.cs'' could not be found error CS2001: Source file `Ast\DebugStatement.cs'' could not be found error CS2001: Source file `Ast\Expression.cs'' could not be found error CS2001: Source file `Ast\MethodCallExpression.cs'' could not be found error CS2001: Source file `Ast\ReturnStatement.cs'' could not be found error CS2001: Source file `Ast\ScopeExpression.cs'' could not be found error CS2001: Source file `Ast\SwitchCase.cs'' could not be found error CS2001: Source file `Ast\SwitchStatement.cs'' could not be found error CS2001: Source file `Ast\ThrowStatement.cs'' could not be found error CS2001: Source file `Ast\TryStatement.cs'' could not be found error CS2001: Source file `Ast\VariableExpression.cs'' could not be found error CS2001: Source file `Ast\LoopStatement.cs'' could not be found error CS2001: Source file `Compiler\YieldLabelBuilder.cs'' could not be found error CS2001: Source file `Ast\YieldStatement.cs'' could not be found error CS2001: Source file `Compiler\YieldTarget.cs'' could not be found error CS2001: Source file `Runtime\BinderType.cs'' could not be found error CS2001: Source file `Runtime\DynamicRuntimeHostingProvider.cs'' could not be found error CS2001: Source file `Runtime\CallTargets.cs'' could not be found error CS2001: Source file `Generation\GlobalStaticFieldRewriter.cs'' could not be found error CS2001: Source file `Generation\GlobalArrayRewriter.cs'' could not be found error CS2001: Source file `Runtime\LocalVariableAccess.cs'' could not be found error CS2001: Source file `Runtime\MultiRuntimeAwareAttribute.cs'' could not be found error CS2001: Source file `Runtime\NullTextContentProvider.cs'' could not be found error CS2001: Source file `Runtime\ScopeExtension.cs'' could not be found error CS2001: Source file `Generation\NarrowingLevel.cs'' could not be found error CS2001: Source file `Runtime\ScriptCode.cs'' could not be found error CS2001: Source file `Runtime\DlrConfiguration.cs'' could not be found error CS2001: Source file `Runtime\SourceStringContentProvider.cs'' could not be found error CS2001: Source file `Ast\SourceFileInformation.cs'' could not be found error CS2001: Source file `Ast\SourceLocation.cs'' could not be found error CS2001: Source file `Ast\SourceSpan.cs'' could not be found error CS2001: Source file `Runtime\OperationFailed.cs'' could not be found error CS2001: Source file `Runtime\OperatorSlotAttribute.cs'' could not be found error CS2001: Source file `Runtime\CustomSymbolDictionary.cs'' could not be found error CS2001: Source file `Runtime\ExplicitConversionMethodAttribute.cs'' could not be found error CS2001: Source file `Runtime\Extensible.cs'' could not be found error CS2001: Source file `Runtime\ExtensionTypeAttribute.cs'' could not be found error CS2001: Source file `Runtime\ExtraKeyEnumerator.cs'' could not be found error CS2001: Source file `Runtime\ExceptionHelpers.cs'' could not be found error CS2001: Source file `Generation\ParameterInfoWrapper.cs'' could not be found error CS2001: Source file `Runtime\ImplicitConversionMethodAttribute.cs'' could not be found error CS2001: Source file `Runtime\LanguageContext.cs'' could not be found error CS2001: Source file `Runtime\ReflectionCache.cs'' could not be found error CS2001: Source file `Runtime\ScopeMemberAttributes.cs'' could not be found error CS2001: Source file `Runtime\ModuleChangeEventArgs.cs'' could not be found error CS2001: Source file `Runtime\ModuleChangeEventType.cs'' could not be found error CS2001: Source file `Runtime\ModuleGlobalCache.cs'' could not be found error CS2001: Source file `Runtime\GlobalsDictionary.cs'' could not be found error CS2001: Source file `Runtime\ModuleGlobalWrapper.cs'' could not be found error CS2001: Source file `Runtime\Scope.cs'' could not be found error CS2001: Source file `Runtime\NotNullAttribute.cs'' could not be found error CS2001: Source file `Runtime\ScriptDomainManager.cs'' could not be found error CS2001: Source file `Runtime\DynamicStackFrame.cs'' could not be found error CS2001: Source file `Runtime\SharedIO.cs'' could not be found error CS2001: Source file `Runtime\StaticExtensionMethodAttribute.cs'' could not be found error CS2001: Source file `Runtime\SymbolDictionary.cs'' could not be found error CS2001: Source file `Runtime\BaseSymbolDictionary.cs'' could not be found error CS2001: Source file `Runtime\TransformDictEnumerator.cs'' could not be found error CS2001: Source file `Runtime\UnboundNameException.cs'' could not be found error CS2001: Source file `Runtime\Generator.cs'' could not be found error CS2001: Source file `Generation\Snippets.cs'' could not be found error CS2001: Source file `Runtime\RuntimeHelpers.cs'' could not be found error CS2001: Source file `Generation\AssemblyGen.cs'' could not be found error CS2001: Source file `Generation\CompilerHelpers.cs'' could not be found error CS2001: Source file `Generation\Targets.cs'' could not be found error CS2001: Source file `Generation\TypeGen.cs'' could not be found error CS2001: Source file `Runtime\IMembersList.cs'' could not be found error CS2001: Source file `Runtime\IDynamicObject.cs'' could not be found error CS2001: Source file `Runtime\ContextId.cs'' could not be found error CS2001: Source file `Runtime\PropertyMethodAttribute.cs'' could not be found error CS2001: Source file `Runtime\CodeContext.cs'' could not be found error CS2001: Source file `Actions\UpdateDelegates.Generated.cs'' could not be found error CS2001: Source file `Utils\Action.cs'' could not be found error CS2001: Source file `Utils\ArrayUtils.cs'' could not be found error CS2001: Source file `Utils\AssemblyQualifiedTypeName.cs'' could not be found error CS2001: Source file `Utils\Assert.cs'' could not be found error CS2001: Source file `Utils\CheckedDictionaryEnumerator.cs'' could not be found error CS2001: Source file `Utils\CollectionUtils.cs'' could not be found error CS2001: Source file `Utils\ConsoleStreamType.cs'' could not be found error CS2001: Source file `Utils\ContractUtils.cs'' could not be found error CS2001: Source file `Utils\DictionaryUnionEnumerator.cs'' could not be found error CS2001: Source file `Utils\ExceptionFactory.Generated.cs'' could not be found error CS2001: Source file `Utils\ExceptionUtils.cs'' could not be found error CS2001: Source file `Utils\Extension.cs'' could not be found error CS2001: Source file `Utils\ReadOnlyDictionary.cs'' could not be found error CS2001: Source file `Utils\ReferenceEqualityComparer.cs'' could not be found error CS2001: Source file `Utils\Function.cs'' could not be found error CS2001: Source file `Utils\IOUtils.cs'' could not be found error CS2001: Source file `Utils\ListStack.cs'' could not be found error CS2001: Source file `Utils\ReflectionUtils.cs'' could not be found error CS2001: Source file `Utils\StringUtils.cs'' could not be found error CS2001: Source file `Utils\StrongBox.cs'' could not be found error CS2001: Source file `Utils\SynchronizedDictionary.cs'' could not be found error CS2001: Source file `Runtime\Operators.cs'' could not be found error CS2001: Source file `Properties\AssemblyInfo.cs'' could not be found error CS2001: Source file `Runtime\Uninitialized.cs'' could not be found error CS2001: Source file `Utils\TextStream.cs'' could not be found I know I did a successful checkout, could something be wrong with the Rakefile? I''m on r127 btw, not r126. Thanks again! Joe On Tue, Aug 5, 2008 at 8:46 PM, Charles Oliver Nutter < charles.nutter at sun.com> wrote:> Sanghyeon Seo wrote: > >> 2008/8/6 Jim Deville <jdeville at microsoft.com>: >> >>> Come to think of it. Is there a reason to call ruby.exe on Windows? >>> Windows has the PATHEXT variable, and it will find ruby.exe if you call ruby >>> in the right location. Am I missing something? Or should we make the runners >>> call ruby instead of ruby.exe? >>> >> >> This is true. Just executing "ruby" will do the right thing both on >> Windows and UNIX. I thought the idea was to warn users if they don''t >> have Ruby installed, or if there are more than one Ruby installations. >> So I did the minimally intrusive change to keep that. >> > > Bah, just use whatever PATH finds. > > - Charlie > > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-core >-- joe fiorini http://www.faithfulgeek.org // freelancing & knowledge sharing -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20080806/1e012fef/attachment-0001.html>
Looks like case sensitivity. Are you on Mac or *nix? -----Original Message----- From: "Joe Fiorini" <joe at faithfulgeek.org> To: "ironruby-core at rubyforge.org" <ironruby-core at rubyforge.org> Sent: 8/6/08 5:09 PM Subject: Re: [Ironruby-core] Can''t build under Mono Thanks for all the suggestions! I''m using a .irconfig.rb in my home directory, which got me past that error. Now it''s tell me it can''t find a large number of source files, like so: error CS2001: Source file `Development/Open'' could not be found error CS2001: Source file `Source'' could not be found error CS2001: Source file `Projects/ironrubyRubyTestKey.snk'' could not be found error CS2001: Source file `Actions\ActionSelfExpression.cs'' could not be found error CS2001: Source file `Actions\ArgumentInfo.cs'' could not be found error CS2001: Source file `Actions\CallAction.cs'' could not be found error CS2001: Source file `Actions\CallSiteBinder.cs'' could not be found error CS2001: Source file `Actions\CallSignature.cs'' could not be found error CS2001: Source file `Actions\ConvertAction.cs'' could not be found error CS2001: Source file `Actions\CustomTracker.cs'' could not be found error CS2001: Source file `Actions\DeferMetaObject.cs'' could not be found error CS2001: Source file `Actions\DeleteMemberAction.cs'' could not be found error CS2001: Source file `Actions\ErrorMetaObject.cs'' could not be found error CS2001: Source file `Actions\GetMemberAction.cs'' could not be found error CS2001: Source file `Actions\IDynamicObject.cs'' could not be found error CS2001: Source file `Actions\InvokeAction.cs'' could not be found error CS2001: Source file `Actions\MatchCaller.cs'' could not be found error CS2001: Source file `Actions\MetaAction.cs'' could not be found error CS2001: Source file `Actions\MetaObject.cs'' could not be found error CS2001: Source file `Actions\Old\OldCreateInstanceAction.cs'' could not be found error CS2001: Source file `Actions\OperationAction.cs'' could not be found error CS2001: Source file `Actions\ParameterMetaObject.cs'' could not be found error CS2001: Source file `Actions\RestrictedMetaObject.cs'' could not be found error CS2001: Source file `Actions\Restrictions.cs'' could not be found error CS2001: Source file `Actions\SetMemberAction.cs'' could not be found error CS2001: Source file `Actions\SplatCallSite.cs'' could not be found error CS2001: Source file `Actions\SplatCallSite.Generated.cs'' could not be found error CS2001: Source file `Actions\StandardAction.cs'' could not be found error CS2001: Source file `Actions\StandardActionKind.cs'' could not be found error CS2001: Source file `Ast\Argument.cs'' could not be found error CS2001: Source file `Ast\CodeContextExpression.cs'' could not be found error CS2001: Source file `Ast\Extensions.cs'' could not be found error CS2001: Source file `Ast\IndexedPropertyExpression.cs'' could not be found error CS2001: Source file `Compiler\Set.cs'' could not be found error CS2001: Source file `Compiler\ExpressionQuoter.cs'' could not be found error CS2001: Source file `Ast\ElementInit.cs'' could not be found error CS2001: Source file `Ast\ListInitExpression.cs'' could not be found error CS2001: Source file `Ast\MemberAssignment.cs'' could not be found error CS2001: Source file `Ast\MemberInitExpression.cs'' could not be found error CS2001: Source file `Ast\MemberListBinding.cs'' could not be found error CS2001: Source file `Ast\MemberMemberBinding.cs'' could not be found error CS2001: Source file `Compiler\KeyedQueue.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Binary.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.ControlFlow.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Generated.cs'' could not be found error CS2001: Source file `Compiler\DynamicNodeRewriter.cs'' could not be found error CS2001: Source file `Ast\ILocalVariables.cs'' could not be found error CS2001: Source file `Compiler\CompilerScope.Storage.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Unary.cs'' could not be found error CS2001: Source file `Compiler\StackSpiller.Bindings.cs'' could not be found error CS2001: Source file `Com\ArgBuilder.cs'' could not be found error CS2001: Source file `Com\BoundDispEvent.cs'' could not be found error CS2001: Source file `Com\ComClassMetaObject.cs'' could not be found error CS2001: Source file `Com\ComInvokeAction.cs'' could not be found error CS2001: Source file `Com\ComDispIds.cs'' could not be found error CS2001: Source file `Com\ComEventDesc.cs'' could not be found error CS2001: Source file `Com\ComEventSink.cs'' could not be found error CS2001: Source file `Com\ComEventSinkProxy.cs'' could not be found error CS2001: Source file `Com\ComEventSinksContainer.cs'' could not be found error CS2001: Source file `Com\ComHresults.cs'' could not be found error CS2001: Source file `Com\ComInterop.cs'' could not be found error CS2001: Source file `Com\ComMetaObject.cs'' could not be found error CS2001: Source file `Com\ComMethodDesc.cs'' could not be found error CS2001: Source file `Com\ComObject.cs'' could not be found error CS2001: Source file `Com\ComObjectWithTypeInfo.cs'' could not be found error CS2001: Source file `Com\ComParamDesc.cs'' could not be found error CS2001: Source file `Com\ComReferenceArgBuilder.cs'' could not be found error CS2001: Source file `Com\ComRuntimeHelpers.cs'' could not be found error CS2001: Source file `Com\ComType.cs'' could not be found error CS2001: Source file `Com\ComTypeClassDesc.cs'' could not be found error CS2001: Source file `Com\ComTypeDesc.cs'' could not be found error CS2001: Source file `Com\ComTypeEnumDesc.cs'' could not be found error CS2001: Source file `Com\ComTypeLibDesc.cs'' could not be found error CS2001: Source file `Com\ComTypeLibInfo.cs'' could not be found error CS2001: Source file `Com\ComTypeLibMemberDesc.cs'' could not be found error CS2001: Source file `Com\DispCallable.cs'' could not be found error CS2001: Source file `Com\DispCallableMetaObject.cs'' could not be found error CS2001: Source file `Com\DispMethod.cs'' could not be found error CS2001: Source file `Com\DispPropertyGet.cs'' could not be found error CS2001: Source file `Com\DispPropertyPut.cs'' could not be found error CS2001: Source file `Com\ExcepInfo.cs'' could not be found error CS2001: Source file `Com\GenericComMetaObject.cs'' could not be found error CS2001: Source file `Com\GenericComObject.cs'' could not be found error CS2001: Source file `Com\IDispatchComObject.cs'' could not be found error CS2001: Source file `Com\IDispatchMetaObject.cs'' could not be found error CS2001: Source file `Com\IDispatchObject.cs'' could not be found error CS2001: Source file `Com\InvokeBinder.cs'' could not be found error CS2001: Source file `Com\MetaUnwrappedComObject.cs'' could not be found error CS2001: Source file `Com\NullArgBuilder.cs'' could not be found error CS2001: Source file `Com\ReferenceArgBuilder.cs'' could not be found error CS2001: Source file `Com\ReturnBuilder.cs'' could not be found error CS2001: Source file `Com\SimpleArgBuilder.cs'' could not be found error CS2001: Source file `Com\TypeEnumMetaObject.cs'' could not be found error CS2001: Source file `Com\TypeInfoMetaObject.cs'' could not be found error CS2001: Source file `Com\TypeLibInfoMetaObject.cs'' could not be found error CS2001: Source file `Com\TypeLibMetaObject.cs'' could not be found error CS2001: Source file `Com\VarEnumSelector.cs'' could not be found error CS2001: Source file `Com\Variant.cs'' could not be found error CS2001: Source file `Com\VariantArray.cs'' could not be found error CS2001: Source file `Com\VariantBuilder.cs'' could not be found error CS2001: Source file `Generation\GlobalRewriter.cs'' could not be found error CS2001: Source file `Ast\GlobalVariableExpression.cs'' could not be found error CS2001: Source file `Generation\GlobalOptimizedRewriter.cs'' could not be found error CS2001: Source file `Actions\ExtensionMethodTracker.cs'' could not be found error CS2001: Source file `Actions\Old\OldDynamicAction.cs'' could not be found error CS2001: Source file `Actions\ActionBinder.cs'' could not be found error CS2001: Source file `Actions\BoundMemberTracker.cs'' could not be found error CS2001: Source file `Actions\ConstructorTracker.cs'' could not be found error CS2001: Source file `Actions\ErrorInfo.cs'' could not be found error CS2001: Source file `Actions\EventTracker.cs'' could not be found error CS2001: Source file `Actions\ExtensionPropertyTracker.cs'' could not be found error CS2001: Source file `Actions\FieldTracker.cs'' could not be found error CS2001: Source file `Actions\Matchmaker.cs'' could not be found error CS2001: Source file `Actions\MethodGroup.cs'' could not be found error CS2001: Source file `Actions\MethodTracker.cs'' could not be found error CS2001: Source file `Actions\RuleValidator.cs'' could not be found error CS2001: Source file `Actions\NamespaceTracker.cs'' could not be found error CS2001: Source file `Actions\NestedTypeTracker.cs'' could not be found error CS2001: Source file `Actions\PropertyTracker.cs'' could not be found error CS2001: Source file `Actions\ReflectedPropertyTracker.cs'' could not be found error CS2001: Source file `Actions\Rule.cs'' could not be found error CS2001: Source file `Actions\RuleCache.cs'' could not be found error CS2001: Source file `Actions\Old\OldCallAction.cs'' could not be found error CS2001: Source file `Actions\Old\OldConvertToAction.cs'' could not be found error CS2001: Source file `Actions\CreateAction.cs'' could not be found error CS2001: Source file `Actions\Old\OldDeleteMemberAction.cs'' could not be found error CS2001: Source file `Actions\DynamicSiteHelpers.Generated.cs'' could not be found error CS2001: Source file `Actions\Old\OldDoOperationAction.cs'' could not be found error CS2001: Source file `Actions\DynamicSiteHelpers.cs'' could not be found error CS2001: Source file `Actions\EmptyRuleSet.cs'' could not be found error CS2001: Source file `Actions\MemberTracker.cs'' could not be found error CS2001: Source file `Actions\Old\OldGetMemberAction.cs'' could not be found error CS2001: Source file `Actions\Old\OldInvokeMemberAction.cs'' could not be found error CS2001: Source file `Actions\Old\OldMemberAction.cs'' could not be found error CS2001: Source file `Actions\MemberGroup.cs'' could not be found error CS2001: Source file `Actions\RuleSet.cs'' could not be found error CS2001: Source file `Actions\RuleTree.cs'' could not be found error CS2001: Source file `Actions\Old\OldSetMemberAction.cs'' could not be found error CS2001: Source file `Actions\SmallRuleSet.cs'' could not be found error CS2001: Source file `Actions\RuleBuilder.cs'' could not be found error CS2001: Source file `Actions\TemplatedValue.cs'' could not be found error CS2001: Source file `Actions\TopNamespaceTracker.cs'' could not be found error CS2001: Source file `Actions\TrackerTypes.cs'' could not be found error CS2001: Source file `Actions\TypeGroup.cs'' could not be found error CS2001: Source file `Actions\TypeTracker.cs'' could not be found error CS2001: Source file `Actions\UpdateDelegates.cs'' could not be found error CS2001: Source file `Ast\Annotations.cs'' could not be found error CS2001: Source file `Actions\Matchmaker.Generated.cs'' could not be found error CS2001: Source file `Compiler\Closure.cs'' could not be found error CS2001: Source file `Ast\AutoRuleTemplate.cs'' could not be found error CS2001: Source file `Compiler\HoistedLocals.cs'' could not be found error CS2001: Source file `Compiler\CompilerScope.cs'' could not be found error CS2001: Source file `Compiler\GeneratorInfo.cs'' could not be found error CS2001: Source file `Generation\IExpressionSerializable.cs'' could not be found error CS2001: Source file `Ast\InvocationExpression.cs'' could not be found error CS2001: Source file `Ast\LabelTarget.cs'' could not be found error CS2001: Source file `Ast\OpAssignmentExpression.cs'' could not be found error CS2001: Source file `Ast\ParameterExpression.cs'' could not be found error CS2001: Source file `Compiler\StackSpiller.Temps.cs'' could not be found error CS2001: Source file `Generation\ToDiskRewriter.cs'' could not be found error CS2001: Source file `Actions\Stitcher.cs'' could not be found error CS2001: Source file `Ast\TreeComparer.cs'' could not be found error CS2001: Source file `Compiler\ExpressionTreeVisitor.cs'' could not be found error CS2001: Source file `Compiler\ExpressionTreeVisitor.Generated.cs'' could not be found error CS2001: Source file `Runtime\OptimizedScriptCode.cs'' could not be found error CS2001: Source file `Generation\GlobalLookupRewriter.cs'' could not be found error CS2001: Source file `Hosting\EngineOptions.cs'' could not be found error CS2001: Source file `Runtime\LanguageBoundTextContentProvider.cs'' could not be found error CS2001: Source file `Runtime\AssemblyTypeNames.cs'' could not be found error CS2001: Source file `Compiler\StackSpiller.Generated.cs'' could not be found error CS2001: Source file `Compiler\ExpressionWriter.cs'' could not be found error CS2001: Source file `Ast\BinaryExpression.cs'' could not be found error CS2001: Source file `Ast\CatchBlock.cs'' could not be found error CS2001: Source file `Compiler\CatchRecord.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Address.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Lambda.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Expressions.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Logical.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Statements.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.cs'' could not be found error CS2001: Source file `Compiler\ConstantCheck.cs'' could not be found error CS2001: Source file `Compiler\StackSpiller.cs'' could not be found error CS2001: Source file `Ast\LocalScopeExpression.cs'' could not be found error CS2001: Source file `Compiler\TryStatementInfo.cs'' could not be found error CS2001: Source file `Compiler\VariableBinder.cs'' could not be found error CS2001: Source file `Ast\DoStatementBuilder.cs'' could not be found error CS2001: Source file `Ast\IfStatementBuilder.cs'' could not be found error CS2001: Source file `Ast\ExpressionType.cs'' could not be found error CS2001: Source file `Ast\TypeUtils.cs'' could not be found error CS2001: Source file `Runtime\DlrCachedCodeAttribute.cs'' could not be found error CS2001: Source file `Runtime\DocumentationAttribute.cs'' could not be found error CS2001: Source file `Generation\ConversionResult.cs'' could not be found error CS2001: Source file `Generation\DebugILGen.cs'' could not be found error CS2001: Source file `Generation\DynamicILGen.cs'' could not be found error CS2001: Source file `Generation\ILGen.cs'' could not be found error CS2001: Source file `Compiler\TryFlowAnalyzer.cs'' could not be found error CS2001: Source file `Ast\TryStatementBuilder.cs'' could not be found error CS2001: Source file `Ast\TypeBinaryExpression.cs'' could not be found error CS2001: Source file `Ast\UnaryExpression.cs'' could not be found error CS2001: Source file `Ast\LambdaExpression.cs'' could not be found error CS2001: Source file `Ast\DeleteExpression.cs'' could not be found error CS2001: Source file `Ast\ActionExpression.cs'' could not be found error CS2001: Source file `Actions\ArgumentKind.cs'' could not be found error CS2001: Source file `Ast\Block.cs'' could not be found error CS2001: Source file `Ast\AssignmentExpression.cs'' could not be found error CS2001: Source file `Ast\BreakStatement.cs'' could not be found error CS2001: Source file `Actions\CallSite.cs'' could not be found error CS2001: Source file `Actions\DynamicSiteTargets.Generated.cs'' could not be found error CS2001: Source file `Ast\ConditionalExpression.cs'' could not be found error CS2001: Source file `Ast\ConstantExpression.cs'' could not be found error CS2001: Source file `Ast\ContinueStatement.cs'' could not be found error CS2001: Source file `Ast\MemberBinding.cs'' could not be found error CS2001: Source file `Ast\NewExpression.cs'' could not be found error CS2001: Source file `Ast\DoStatement.cs'' could not be found error CS2001: Source file `Ast\EmptyStatement.cs'' could not be found error CS2001: Source file `Ast\IfStatementTest.cs'' could not be found error CS2001: Source file `Ast\LabeledStatement.cs'' could not be found error CS2001: Source file `Ast\MemberExpression.cs'' could not be found error CS2001: Source file `Ast\NewArrayExpression.cs'' could not be found error CS2001: Source file `Ast\DebugStatement.cs'' could not be found error CS2001: Source file `Ast\Expression.cs'' could not be found error CS2001: Source file `Ast\MethodCallExpression.cs'' could not be found error CS2001: Source file `Ast\ReturnStatement.cs'' could not be found error CS2001: Source file `Ast\ScopeExpression.cs'' could not be found error CS2001: Source file `Ast\SwitchCase.cs'' could not be found error CS2001: Source file `Ast\SwitchStatement.cs'' could not be found error CS2001: Source file `Ast\ThrowStatement.cs'' could not be found error CS2001: Source file `Ast\TryStatement.cs'' could not be found error CS2001: Source file `Ast\VariableExpression.cs'' could not be found error CS2001: Source file `Ast\LoopStatement.cs'' could not be found error CS2001: Source file `Compiler\YieldLabelBuilder.cs'' could not be found error CS2001: Source file `Ast\YieldStatement.cs'' could not be found error CS2001: Source file `Compiler\YieldTarget.cs'' could not be found error CS2001: Source file `Runtime\BinderType.cs'' could not be found error CS2001: Source file `Runtime\DynamicRuntimeHostingProvider.cs'' could not be found error CS2001: Source file `Runtime\CallTargets.cs'' could not be found error CS2001: Source file `Generation\GlobalStaticFieldRewriter.cs'' could not be found error CS2001: Source file `Generation\GlobalArrayRewriter.cs'' could not be found error CS2001: Source file `Runtime\LocalVariableAccess.cs'' could not be found error CS2001: Source file `Runtime\MultiRuntimeAwareAttribute.cs'' could not be found error CS2001: Source file `Runtime\NullTextContentProvider.cs'' could not be found error CS2001: Source file `Runtime\ScopeExtension.cs'' could not be found error CS2001: Source file `Generation\NarrowingLevel.cs'' could not be found error CS2001: Source file `Runtime\ScriptCode.cs'' could not be found error CS2001: Source file `Runtime\DlrConfiguration.cs'' could not be found error CS2001: Source file `Runtime\SourceStringContentProvider.cs'' could not be found error CS2001: Source file `Ast\SourceFileInformation.cs'' could not be found error CS2001: Source file `Ast\SourceLocation.cs'' could not be found error CS2001: Source file `Ast\SourceSpan.cs'' could not be found error CS2001: Source file `Runtime\OperationFailed.cs'' could not be found error CS2001: Source file `Runtime\OperatorSlotAttribute.cs'' could not be found error CS2001: Source file `Runtime\CustomSymbolDictionary.cs'' could not be found error CS2001: Source file `Runtime\ExplicitConversionMethodAttribute.cs'' could not be found error CS2001: Source file `Runtime\Extensible.cs'' could not be found error CS2001: Source file `Runtime\ExtensionTypeAttribute.cs'' could not be found error CS2001: Source file `Runtime\ExtraKeyEnumerator.cs'' could not be found error CS2001: Source file `Runtime\ExceptionHelpers.cs'' could not be found error CS2001: Source file `Generation\ParameterInfoWrapper.cs'' could not be found error CS2001: Source file `Runtime\ImplicitConversionMethodAttribute.cs'' could not be found error CS2001: Source file `Runtime\LanguageContext.cs'' could not be found error CS2001: Source file `Runtime\ReflectionCache.cs'' could not be found error CS2001: Source file `Runtime\ScopeMemberAttributes.cs'' could not be found error CS2001: Source file `Runtime\ModuleChangeEventArgs.cs'' could not be found error CS2001: Source file `Runtime\ModuleChangeEventType.cs'' could not be found error CS2001: Source file `Runtime\ModuleGlobalCache.cs'' could not be found error CS2001: Source file `Runtime\GlobalsDictionary.cs'' could not be found error CS2001: Source file `Runtime\ModuleGlobalWrapper.cs'' could not be found error CS2001: Source file `Runtime\Scope.cs'' could not be found error CS2001: Source file `Runtime\NotNullAttribute.cs'' could not be found error CS2001: Source file `Runtime\ScriptDomainManager.cs'' could not be found error CS2001: Source file `Runtime\DynamicStackFrame.cs'' could not be found error CS2001: Source file `Runtime\SharedIO.cs'' could not be found error CS2001: Source file `Runtime\StaticExtensionMethodAttribute.cs'' could not be found error CS2001: Source file `Runtime\SymbolDictionary.cs'' could not be found error CS2001: Source file `Runtime\BaseSymbolDictionary.cs'' could not be found error CS2001: Source file `Runtime\TransformDictEnumerator.cs'' could not be found error CS2001: Source file `Runtime\UnboundNameException.cs'' could not be found error CS2001: Source file `Runtime\Generator.cs'' could not be found error CS2001: Source file `Generation\Snippets.cs'' could not be found error CS2001: Source file `Runtime\RuntimeHelpers.cs'' could not be found error CS2001: Source file `Generation\AssemblyGen.cs'' could not be found error CS2001: Source file `Generation\CompilerHelpers.cs'' could not be found error CS2001: Source file `Generation\Targets.cs'' could not be found error CS2001: Source file `Generation\TypeGen.cs'' could not be found error CS2001: Source file `Runtime\IMembersList.cs'' could not be found error CS2001: Source file `Runtime\IDynamicObject.cs'' could not be found error CS2001: Source file `Runtime\ContextId.cs'' could not be found error CS2001: Source file `Runtime\PropertyMethodAttribute.cs'' could not be found error CS2001: Source file `Runtime\CodeContext.cs'' could not be found error CS2001: Source file `Actions\UpdateDelegates.Generated.cs'' could not be found error CS2001: Source file `Utils\Action.cs'' could not be found error CS2001: Source file `Utils\ArrayUtils.cs'' could not be found error CS2001: Source file `Utils\AssemblyQualifiedTypeName.cs'' could not be found error CS2001: Source file `Utils\Assert.cs'' could not be found error CS2001: Source file `Utils\CheckedDictionaryEnumerator.cs'' could not be found error CS2001: Source file `Utils\CollectionUtils.cs'' could not be found error CS2001: Source file `Utils\ConsoleStreamType.cs'' could not be found error CS2001: Source file `Utils\ContractUtils.cs'' could not be found error CS2001: Source file `Utils\DictionaryUnionEnumerator.cs'' could not be found error CS2001: Source file `Utils\ExceptionFactory.Generated.cs'' could not be found error CS2001: Source file `Utils\ExceptionUtils.cs'' could not be found error CS2001: Source file `Utils\Extension.cs'' could not be found error CS2001: Source file `Utils\ReadOnlyDictionary.cs'' could not be found error CS2001: Source file `Utils\ReferenceEqualityComparer.cs'' could not be found error CS2001: Source file `Utils\Function.cs'' could not be found error CS2001: Source file `Utils\IOUtils.cs'' could not be found error CS2001: Source file `Utils\ListStack.cs'' could not be found error CS2001: Source file `Utils\ReflectionUtils.cs'' could not be found error CS2001: Source file `Utils\StringUtils.cs'' could not be found error CS2001: Source file `Utils\StrongBox.cs'' could not be found error CS2001: Source file `Utils\SynchronizedDictionary.cs'' could not be found error CS2001: Source file `Runtime\Operators.cs'' could not be found error CS2001: Source file `Properties\AssemblyInfo.cs'' could not be found error CS2001: Source file `Runtime\Uninitialized.cs'' could not be found error CS2001: Source file `Utils\TextStream.cs'' could not be found I know I did a successful checkout, could something be wrong with the Rakefile? I''m on r127 btw, not r126. Thanks again! Joe On Tue, Aug 5, 2008 at 8:46 PM, Charles Oliver Nutter <charles.nutter at sun.com<mailto:charles.nutter at sun.com>> wrote: Sanghyeon Seo wrote: 2008/8/6 Jim Deville <jdeville at microsoft.com<mailto:jdeville at microsoft.com>>: Come to think of it. Is there a reason to call ruby.exe on Windows? Windows has the PATHEXT variable, and it will find ruby.exe if you call ruby in the right location. Am I missing something? Or should we make the runners call ruby instead of ruby.exe? This is true. Just executing "ruby" will do the right thing both on Windows and UNIX. I thought the idea was to warn users if they don''t have Ruby installed, or if there are more than one Ruby installations. So I did the minimally intrusive change to keep that. Bah, just use whatever PATH finds. - Charlie _______________________________________________ Ironruby-core mailing list Ironruby-core at rubyforge.org<mailto:Ironruby-core at rubyforge.org> http://rubyforge.org/mailman/listinfo/ironruby-core -- joe fiorini http://www.faithfulgeek.org // freelancing & knowledge sharing -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20080806/9c6b1359/attachment-0001.html>
Mac 10.5.4 On Wed, Aug 6, 2008 at 8:25 PM, Jim Deville <jdeville at microsoft.com> wrote:> Looks like case sensitivity. Are you on Mac or *nix? > > -----Original Message----- > From: "Joe Fiorini" <joe at faithfulgeek.org> > To: "ironruby-core at rubyforge.org" <ironruby-core at rubyforge.org> > Sent: 8/6/08 5:09 PM > Subject: Re: [Ironruby-core] Can''t build under Mono > > > Thanks for all the suggestions! I''m using a .irconfig.rb in my home > directory, which got me past that error. Now it''s tell me it can''t find a > large number of source files, like so: > error CS2001: Source file `Development/Open'' could not be found > error CS2001: Source file `Source'' could not be found > error CS2001: Source file `Projects/ironrubyRubyTestKey.snk'' could not be > found > error CS2001: Source file `Actions\ActionSelfExpression.cs'' could not be > found > error CS2001: Source file `Actions\ArgumentInfo.cs'' could not be found > error CS2001: Source file `Actions\CallAction.cs'' could not be found > error CS2001: Source file `Actions\CallSiteBinder.cs'' could not be found > error CS2001: Source file `Actions\CallSignature.cs'' could not be found > error CS2001: Source file `Actions\ConvertAction.cs'' could not be found > error CS2001: Source file `Actions\CustomTracker.cs'' could not be found > error CS2001: Source file `Actions\DeferMetaObject.cs'' could not be found > error CS2001: Source file `Actions\DeleteMemberAction.cs'' could not be > found > error CS2001: Source file `Actions\ErrorMetaObject.cs'' could not be found > error CS2001: Source file `Actions\GetMemberAction.cs'' could not be found > error CS2001: Source file `Actions\IDynamicObject.cs'' could not be found > error CS2001: Source file `Actions\InvokeAction.cs'' could not be found > error CS2001: Source file `Actions\MatchCaller.cs'' could not be found > error CS2001: Source file `Actions\MetaAction.cs'' could not be found > error CS2001: Source file `Actions\MetaObject.cs'' could not be found > error CS2001: Source file `Actions\Old\OldCreateInstanceAction.cs'' could > not be found > error CS2001: Source file `Actions\OperationAction.cs'' could not be found > error CS2001: Source file `Actions\ParameterMetaObject.cs'' could not be > found > error CS2001: Source file `Actions\RestrictedMetaObject.cs'' could not be > found > error CS2001: Source file `Actions\Restrictions.cs'' could not be found > error CS2001: Source file `Actions\SetMemberAction.cs'' could not be found > error CS2001: Source file `Actions\SplatCallSite.cs'' could not be found > error CS2001: Source file `Actions\SplatCallSite.Generated.cs'' could not be > found > error CS2001: Source file `Actions\StandardAction.cs'' could not be found > error CS2001: Source file `Actions\StandardActionKind.cs'' could not be > found > error CS2001: Source file `Ast\Argument.cs'' could not be found > error CS2001: Source file `Ast\CodeContextExpression.cs'' could not be found > error CS2001: Source file `Ast\Extensions.cs'' could not be found > error CS2001: Source file `Ast\IndexedPropertyExpression.cs'' could not be > found > error CS2001: Source file `Compiler\Set.cs'' could not be found > error CS2001: Source file `Compiler\ExpressionQuoter.cs'' could not be found > error CS2001: Source file `Ast\ElementInit.cs'' could not be found > error CS2001: Source file `Ast\ListInitExpression.cs'' could not be found > error CS2001: Source file `Ast\MemberAssignment.cs'' could not be found > error CS2001: Source file `Ast\MemberInitExpression.cs'' could not be found > error CS2001: Source file `Ast\MemberListBinding.cs'' could not be found > error CS2001: Source file `Ast\MemberMemberBinding.cs'' could not be found > error CS2001: Source file `Compiler\KeyedQueue.cs'' could not be found > error CS2001: Source file `Compiler\LambdaCompiler.Binary.cs'' could not be > found > error CS2001: Source file `Compiler\LambdaCompiler.ControlFlow.cs'' could > not be found > error CS2001: Source file `Compiler\LambdaCompiler.Generated.cs'' could not > be found > error CS2001: Source file `Compiler\DynamicNodeRewriter.cs'' could not be > found > error CS2001: Source file `Ast\ILocalVariables.cs'' could not be found > error CS2001: Source file `Compiler\CompilerScope.Storage.cs'' could not be > found > error CS2001: Source file `Compiler\LambdaCompiler.Unary.cs'' could not be > found > error CS2001: Source file `Compiler\StackSpiller.Bindings.cs'' could not be > found > error CS2001: Source file `Com\ArgBuilder.cs'' could not be found > error CS2001: Source file `Com\BoundDispEvent.cs'' could not be found > error CS2001: Source file `Com\ComClassMetaObject.cs'' could not be found > error CS2001: Source file `Com\ComInvokeAction.cs'' could not be found > error CS2001: Source file `Com\ComDispIds.cs'' could not be found > error CS2001: Source file `Com\ComEventDesc.cs'' could not be found > error CS2001: Source file `Com\ComEventSink.cs'' could not be found > error CS2001: Source file `Com\ComEventSinkProxy.cs'' could not be found > error CS2001: Source file `Com\ComEventSinksContainer.cs'' could not be > found > error CS2001: Source file `Com\ComHresults.cs'' could not be found > error CS2001: Source file `Com\ComInterop.cs'' could not be found > error CS2001: Source file `Com\ComMetaObject.cs'' could not be found > error CS2001: Source file `Com\ComMethodDesc.cs'' could not be found > error CS2001: Source file `Com\ComObject.cs'' could not be found > error CS2001: Source file `Com\ComObjectWithTypeInfo.cs'' could not be found > error CS2001: Source file `Com\ComParamDesc.cs'' could not be found > error CS2001: Source file `Com\ComReferenceArgBuilder.cs'' could not be > found > error CS2001: Source file `Com\ComRuntimeHelpers.cs'' could not be found > error CS2001: Source file `Com\ComType.cs'' could not be found > error CS2001: Source file `Com\ComTypeClassDesc.cs'' could not be found > error CS2001: Source file `Com\ComTypeDesc.cs'' could not be found > error CS2001: Source file `Com\ComTypeEnumDesc.cs'' could not be found > error CS2001: Source file `Com\ComTypeLibDesc.cs'' could not be found > error CS2001: Source file `Com\ComTypeLibInfo.cs'' could not be found > error CS2001: Source file `Com\ComTypeLibMemberDesc.cs'' could not be found > error CS2001: Source file `Com\DispCallable.cs'' could not be found > error CS2001: Source file `Com\DispCallableMetaObject.cs'' could not be > found > error CS2001: Source file `Com\DispMethod.cs'' could not be found > error CS2001: Source file `Com\DispPropertyGet.cs'' could not be found > error CS2001: Source file `Com\DispPropertyPut.cs'' could not be found > error CS2001: Source file `Com\ExcepInfo.cs'' could not be found > error CS2001: Source file `Com\GenericComMetaObject.cs'' could not be found > error CS2001: Source file `Com\GenericComObject.cs'' could not be found > error CS2001: Source file `Com\IDispatchComObject.cs'' could not be found > error CS2001: Source file `Com\IDispatchMetaObject.cs'' could not be found > error CS2001: Source file `Com\IDispatchObject.cs'' could not be found > error CS2001: Source file `Com\InvokeBinder.cs'' could not be found > error CS2001: Source file `Com\MetaUnwrappedComObject.cs'' could not be > found > error CS2001: Source file `Com\NullArgBuilder.cs'' could not be found > error CS2001: Source file `Com\ReferenceArgBuilder.cs'' could not be found > error CS2001: Source file `Com\ReturnBuilder.cs'' could not be found > error CS2001: Source file `Com\SimpleArgBuilder.cs'' could not be found > error CS2001: Source file `Com\TypeEnumMetaObject.cs'' could not be found > error CS2001: Source file `Com\TypeInfoMetaObject.cs'' could not be found > error CS2001: Source file `Com\TypeLibInfoMetaObject.cs'' could not be found > error CS2001: Source file `Com\TypeLibMetaObject.cs'' could not be found > error CS2001: Source file `Com\VarEnumSelector.cs'' could not be found > error CS2001: Source file `Com\Variant.cs'' could not be found > error CS2001: Source file `Com\VariantArray.cs'' could not be found > error CS2001: Source file `Com\VariantBuilder.cs'' could not be found > error CS2001: Source file `Generation\GlobalRewriter.cs'' could not be found > error CS2001: Source file `Ast\GlobalVariableExpression.cs'' could not be > found > error CS2001: Source file `Generation\GlobalOptimizedRewriter.cs'' could not > be found > error CS2001: Source file `Actions\ExtensionMethodTracker.cs'' could not be > found > error CS2001: Source file `Actions\Old\OldDynamicAction.cs'' could not be > found > error CS2001: Source file `Actions\ActionBinder.cs'' could not be found > error CS2001: Source file `Actions\BoundMemberTracker.cs'' could not be > found > error CS2001: Source file `Actions\ConstructorTracker.cs'' could not be > found > error CS2001: Source file `Actions\ErrorInfo.cs'' could not be found > error CS2001: Source file `Actions\EventTracker.cs'' could not be found > error CS2001: Source file `Actions\ExtensionPropertyTracker.cs'' could not > be found > error CS2001: Source file `Actions\FieldTracker.cs'' could not be found > error CS2001: Source file `Actions\Matchmaker.cs'' could not be found > error CS2001: Source file `Actions\MethodGroup.cs'' could not be found > error CS2001: Source file `Actions\MethodTracker.cs'' could not be found > error CS2001: Source file `Actions\RuleValidator.cs'' could not be found > error CS2001: Source file `Actions\NamespaceTracker.cs'' could not be found > error CS2001: Source file `Actions\NestedTypeTracker.cs'' could not be found > error CS2001: Source file `Actions\PropertyTracker.cs'' could not be found > error CS2001: Source file `Actions\ReflectedPropertyTracker.cs'' could not > be found > error CS2001: Source file `Actions\Rule.cs'' could not be found > error CS2001: Source file `Actions\RuleCache.cs'' could not be found > error CS2001: Source file `Actions\Old\OldCallAction.cs'' could not be found > error CS2001: Source file `Actions\Old\OldConvertToAction.cs'' could not be > found > error CS2001: Source file `Actions\CreateAction.cs'' could not be found > error CS2001: Source file `Actions\Old\OldDeleteMemberAction.cs'' could not > be found > error CS2001: Source file `Actions\DynamicSiteHelpers.Generated.cs'' could > not be found > error CS2001: Source file `Actions\Old\OldDoOperationAction.cs'' could not > be found > error CS2001: Source file `Actions\DynamicSiteHelpers.cs'' could not be > found > error CS2001: Source file `Actions\EmptyRuleSet.cs'' could not be found > error CS2001: Source file `Actions\MemberTracker.cs'' could not be found > error CS2001: Source file `Actions\Old\OldGetMemberAction.cs'' could not be > found > error CS2001: Source file `Actions\Old\OldInvokeMemberAction.cs'' could not > be found > error CS2001: Source file `Actions\Old\OldMemberAction.cs'' could not be > found > error CS2001: Source file `Actions\MemberGroup.cs'' could not be found > error CS2001: Source file `Actions\RuleSet.cs'' could not be found > error CS2001: Source file `Actions\RuleTree.cs'' could not be found > error CS2001: Source file `Actions\Old\OldSetMemberAction.cs'' could not be > found > error CS2001: Source file `Actions\SmallRuleSet.cs'' could not be found > error CS2001: Source file `Actions\RuleBuilder.cs'' could not be found > error CS2001: Source file `Actions\TemplatedValue.cs'' could not be found > error CS2001: Source file `Actions\TopNamespaceTracker.cs'' could not be > found > error CS2001: Source file `Actions\TrackerTypes.cs'' could not be found > error CS2001: Source file `Actions\TypeGroup.cs'' could not be found > error CS2001: Source file `Actions\TypeTracker.cs'' could not be found > error CS2001: Source file `Actions\UpdateDelegates.cs'' could not be found > error CS2001: Source file `Ast\Annotations.cs'' could not be found > error CS2001: Source file `Actions\Matchmaker.Generated.cs'' could not be > found > error CS2001: Source file `Compiler\Closure.cs'' could not be found > error CS2001: Source file `Ast\AutoRuleTemplate.cs'' could not be found > error CS2001: Source file `Compiler\HoistedLocals.cs'' could not be found > error CS2001: Source file `Compiler\CompilerScope.cs'' could not be found > error CS2001: Source file `Compiler\GeneratorInfo.cs'' could not be found > error CS2001: Source file `Generation\IExpressionSerializable.cs'' could not > be found > error CS2001: Source file `Ast\InvocationExpression.cs'' could not be found > error CS2001: Source file `Ast\LabelTarget.cs'' could not be found > error CS2001: Source file `Ast\OpAssignmentExpression.cs'' could not be > found > error CS2001: Source file `Ast\ParameterExpression.cs'' could not be found > error CS2001: Source file `Compiler\StackSpiller.Temps.cs'' could not be > found > error CS2001: Source file `Generation\ToDiskRewriter.cs'' could not be found > error CS2001: Source file `Actions\Stitcher.cs'' could not be found > error CS2001: Source file `Ast\TreeComparer.cs'' could not be found > error CS2001: Source file `Compiler\ExpressionTreeVisitor.cs'' could not be > found > error CS2001: Source file `Compiler\ExpressionTreeVisitor.Generated.cs'' > could not be found > error CS2001: Source file `Runtime\OptimizedScriptCode.cs'' could not be > found > error CS2001: Source file `Generation\GlobalLookupRewriter.cs'' could not be > found > error CS2001: Source file `Hosting\EngineOptions.cs'' could not be found > error CS2001: Source file `Runtime\LanguageBoundTextContentProvider.cs'' > could not be found > error CS2001: Source file `Runtime\AssemblyTypeNames.cs'' could not be found > error CS2001: Source file `Compiler\StackSpiller.Generated.cs'' could not be > found > error CS2001: Source file `Compiler\ExpressionWriter.cs'' could not be found > error CS2001: Source file `Ast\BinaryExpression.cs'' could not be found > error CS2001: Source file `Ast\CatchBlock.cs'' could not be found > error CS2001: Source file `Compiler\CatchRecord.cs'' could not be found > error CS2001: Source file `Compiler\LambdaCompiler.Address.cs'' could not be > found > error CS2001: Source file `Compiler\LambdaCompiler.Lambda.cs'' could not be > found > error CS2001: Source file `Compiler\LambdaCompiler.Expressions.cs'' could > not be found > error CS2001: Source file `Compiler\LambdaCompiler.Logical.cs'' could not be > found > error CS2001: Source file `Compiler\LambdaCompiler.Statements.cs'' could not > be found > error CS2001: Source file `Compiler\LambdaCompiler.cs'' could not be found > error CS2001: Source file `Compiler\ConstantCheck.cs'' could not be found > error CS2001: Source file `Compiler\StackSpiller.cs'' could not be found > error CS2001: Source file `Ast\LocalScopeExpression.cs'' could not be found > error CS2001: Source file `Compiler\TryStatementInfo.cs'' could not be found > error CS2001: Source file `Compiler\VariableBinder.cs'' could not be found > error CS2001: Source file `Ast\DoStatementBuilder.cs'' could not be found > error CS2001: Source file `Ast\IfStatementBuilder.cs'' could not be found > error CS2001: Source file `Ast\ExpressionType.cs'' could not be found > error CS2001: Source file `Ast\TypeUtils.cs'' could not be found > error CS2001: Source file `Runtime\DlrCachedCodeAttribute.cs'' could not be > found > error CS2001: Source file `Runtime\DocumentationAttribute.cs'' could not be > found > error CS2001: Source file `Generation\ConversionResult.cs'' could not be > found > error CS2001: Source file `Generation\DebugILGen.cs'' could not be found > error CS2001: Source file `Generation\DynamicILGen.cs'' could not be found > error CS2001: Source file `Generation\ILGen.cs'' could not be found > error CS2001: Source file `Compiler\TryFlowAnalyzer.cs'' could not be found > error CS2001: Source file `Ast\TryStatementBuilder.cs'' could not be found > error CS2001: Source file `Ast\TypeBinaryExpression.cs'' could not be found > error CS2001: Source file `Ast\UnaryExpression.cs'' could not be found > error CS2001: Source file `Ast\LambdaExpression.cs'' could not be found > error CS2001: Source file `Ast\DeleteExpression.cs'' could not be found > error CS2001: Source file `Ast\ActionExpression.cs'' could not be found > error CS2001: Source file `Actions\ArgumentKind.cs'' could not be found > error CS2001: Source file `Ast\Block.cs'' could not be found > error CS2001: Source file `Ast\AssignmentExpression.cs'' could not be found > error CS2001: Source file `Ast\BreakStatement.cs'' could not be found > error CS2001: Source file `Actions\CallSite.cs'' could not be found > error CS2001: Source file `Actions\DynamicSiteTargets.Generated.cs'' could > not be found > error CS2001: Source file `Ast\ConditionalExpression.cs'' could not be found > error CS2001: Source file `Ast\ConstantExpression.cs'' could not be found > error CS2001: Source file `Ast\ContinueStatement.cs'' could not be found > error CS2001: Source file `Ast\MemberBinding.cs'' could not be found > error CS2001: Source file `Ast\NewExpression.cs'' could not be found > error CS2001: Source file `Ast\DoStatement.cs'' could not be found > error CS2001: Source file `Ast\EmptyStatement.cs'' could not be found > error CS2001: Source file `Ast\IfStatementTest.cs'' could not be found > error CS2001: Source file `Ast\LabeledStatement.cs'' could not be found > error CS2001: Source file `Ast\MemberExpression.cs'' could not be found > error CS2001: Source file `Ast\NewArrayExpression.cs'' could not be found > error CS2001: Source file `Ast\DebugStatement.cs'' could not be found > error CS2001: Source file `Ast\Expression.cs'' could not be found > error CS2001: Source file `Ast\MethodCallExpression.cs'' could not be found > error CS2001: Source file `Ast\ReturnStatement.cs'' could not be found > error CS2001: Source file `Ast\ScopeExpression.cs'' could not be found > error CS2001: Source file `Ast\SwitchCase.cs'' could not be found > error CS2001: Source file `Ast\SwitchStatement.cs'' could not be found > error CS2001: Source file `Ast\ThrowStatement.cs'' could not be found > error CS2001: Source file `Ast\TryStatement.cs'' could not be found > error CS2001: Source file `Ast\VariableExpression.cs'' could not be found > error CS2001: Source file `Ast\LoopStatement.cs'' could not be found > error CS2001: Source file `Compiler\YieldLabelBuilder.cs'' could not be > found > error CS2001: Source file `Ast\YieldStatement.cs'' could not be found > error CS2001: Source file `Compiler\YieldTarget.cs'' could not be found > error CS2001: Source file `Runtime\BinderType.cs'' could not be found > error CS2001: Source file `Runtime\DynamicRuntimeHostingProvider.cs'' could > not be found > error CS2001: Source file `Runtime\CallTargets.cs'' could not be found > error CS2001: Source file `Generation\GlobalStaticFieldRewriter.cs'' could > not be found > error CS2001: Source file `Generation\GlobalArrayRewriter.cs'' could not be > found > error CS2001: Source file `Runtime\LocalVariableAccess.cs'' could not be > found > error CS2001: Source file `Runtime\MultiRuntimeAwareAttribute.cs'' could not > be found > error CS2001: Source file `Runtime\NullTextContentProvider.cs'' could not be > found > error CS2001: Source file `Runtime\ScopeExtension.cs'' could not be found > error CS2001: Source file `Generation\NarrowingLevel.cs'' could not be found > error CS2001: Source file `Runtime\ScriptCode.cs'' could not be found > error CS2001: Source file `Runtime\DlrConfiguration.cs'' could not be found > error CS2001: Source file `Runtime\SourceStringContentProvider.cs'' could > not be found > error CS2001: Source file `Ast\SourceFileInformation.cs'' could not be found > error CS2001: Source file `Ast\SourceLocation.cs'' could not be found > error CS2001: Source file `Ast\SourceSpan.cs'' could not be found > error CS2001: Source file `Runtime\OperationFailed.cs'' could not be found > error CS2001: Source file `Runtime\OperatorSlotAttribute.cs'' could not be > found > error CS2001: Source file `Runtime\CustomSymbolDictionary.cs'' could not be > found > error CS2001: Source file `Runtime\ExplicitConversionMethodAttribute.cs'' > could not be found > error CS2001: Source file `Runtime\Extensible.cs'' could not be found > error CS2001: Source file `Runtime\ExtensionTypeAttribute.cs'' could not be > found > error CS2001: Source file `Runtime\ExtraKeyEnumerator.cs'' could not be > found > error CS2001: Source file `Runtime\ExceptionHelpers.cs'' could not be found > error CS2001: Source file `Generation\ParameterInfoWrapper.cs'' could not be > found > error CS2001: Source file `Runtime\ImplicitConversionMethodAttribute.cs'' > could not be found > error CS2001: Source file `Runtime\LanguageContext.cs'' could not be found > error CS2001: Source file `Runtime\ReflectionCache.cs'' could not be found > error CS2001: Source file `Runtime\ScopeMemberAttributes.cs'' could not be > found > error CS2001: Source file `Runtime\ModuleChangeEventArgs.cs'' could not be > found > error CS2001: Source file `Runtime\ModuleChangeEventType.cs'' could not be > found > error CS2001: Source file `Runtime\ModuleGlobalCache.cs'' could not be found > error CS2001: Source file `Runtime\GlobalsDictionary.cs'' could not be found > error CS2001: Source file `Runtime\ModuleGlobalWrapper.cs'' could not be > found > error CS2001: Source file `Runtime\Scope.cs'' could not be found > error CS2001: Source file `Runtime\NotNullAttribute.cs'' could not be found > error CS2001: Source file `Runtime\ScriptDomainManager.cs'' could not be > found > error CS2001: Source file `Runtime\DynamicStackFrame.cs'' could not be found > error CS2001: Source file `Runtime\SharedIO.cs'' could not be found > error CS2001: Source file `Runtime\StaticExtensionMethodAttribute.cs'' could > not be found > error CS2001: Source file `Runtime\SymbolDictionary.cs'' could not be found > error CS2001: Source file `Runtime\BaseSymbolDictionary.cs'' could not be > found > error CS2001: Source file `Runtime\TransformDictEnumerator.cs'' could not be > found > error CS2001: Source file `Runtime\UnboundNameException.cs'' could not be > found > error CS2001: Source file `Runtime\Generator.cs'' could not be found > error CS2001: Source file `Generation\Snippets.cs'' could not be found > error CS2001: Source file `Runtime\RuntimeHelpers.cs'' could not be found > error CS2001: Source file `Generation\AssemblyGen.cs'' could not be found > error CS2001: Source file `Generation\CompilerHelpers.cs'' could not be > found > error CS2001: Source file `Generation\Targets.cs'' could not be found > error CS2001: Source file `Generation\TypeGen.cs'' could not be found > error CS2001: Source file `Runtime\IMembersList.cs'' could not be found > error CS2001: Source file `Runtime\IDynamicObject.cs'' could not be found > error CS2001: Source file `Runtime\ContextId.cs'' could not be found > error CS2001: Source file `Runtime\PropertyMethodAttribute.cs'' could not be > found > error CS2001: Source file `Runtime\CodeContext.cs'' could not be found > error CS2001: Source file `Actions\UpdateDelegates.Generated.cs'' could not > be found > error CS2001: Source file `Utils\Action.cs'' could not be found > error CS2001: Source file `Utils\ArrayUtils.cs'' could not be found > error CS2001: Source file `Utils\AssemblyQualifiedTypeName.cs'' could not be > found > error CS2001: Source file `Utils\Assert.cs'' could not be found > error CS2001: Source file `Utils\CheckedDictionaryEnumerator.cs'' could not > be found > error CS2001: Source file `Utils\CollectionUtils.cs'' could not be found > error CS2001: Source file `Utils\ConsoleStreamType.cs'' could not be found > error CS2001: Source file `Utils\ContractUtils.cs'' could not be found > error CS2001: Source file `Utils\DictionaryUnionEnumerator.cs'' could not be > found > error CS2001: Source file `Utils\ExceptionFactory.Generated.cs'' could not > be found > error CS2001: Source file `Utils\ExceptionUtils.cs'' could not be found > error CS2001: Source file `Utils\Extension.cs'' could not be found > error CS2001: Source file `Utils\ReadOnlyDictionary.cs'' could not be found > error CS2001: Source file `Utils\ReferenceEqualityComparer.cs'' could not be > found > error CS2001: Source file `Utils\Function.cs'' could not be found > error CS2001: Source file `Utils\IOUtils.cs'' could not be found > error CS2001: Source file `Utils\ListStack.cs'' could not be found > error CS2001: Source file `Utils\ReflectionUtils.cs'' could not be found > error CS2001: Source file `Utils\StringUtils.cs'' could not be found > error CS2001: Source file `Utils\StrongBox.cs'' could not be found > error CS2001: Source file `Utils\SynchronizedDictionary.cs'' could not be > found > error CS2001: Source file `Runtime\Operators.cs'' could not be found > error CS2001: Source file `Properties\AssemblyInfo.cs'' could not be found > error CS2001: Source file `Runtime\Uninitialized.cs'' could not be found > error CS2001: Source file `Utils\TextStream.cs'' could not be found > > I know I did a successful checkout, could something be wrong with the > Rakefile? I''m on r127 btw, not r126. > > Thanks again! > Joe > > On Tue, Aug 5, 2008 at 8:46 PM, Charles Oliver Nutter < > charles.nutter at sun.com> wrote: > >> Sanghyeon Seo wrote: >> >>> 2008/8/6 Jim Deville <jdeville at microsoft.com>: >>> >>>> Come to think of it. Is there a reason to call ruby.exe on Windows? >>>> Windows has the PATHEXT variable, and it will find ruby.exe if you call ruby >>>> in the right location. Am I missing something? Or should we make the runners >>>> call ruby instead of ruby.exe? >>>> >>> >>> This is true. Just executing "ruby" will do the right thing both on >>> Windows and UNIX. I thought the idea was to warn users if they don''t >>> have Ruby installed, or if there are more than one Ruby installations. >>> So I did the minimally intrusive change to keep that. >>> >> >> Bah, just use whatever PATH finds. >> >> - Charlie >> >> _______________________________________________ >> Ironruby-core mailing list >> Ironruby-core at rubyforge.org >> http://rubyforge.org/mailman/listinfo/ironruby-core >> > > > > -- > joe fiorini > http://www.faithfulgeek.org > // freelancing & knowledge sharing > > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-core > >-- joe fiorini http://www.faithfulgeek.org // freelancing & knowledge sharing -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20080806/174ccbda/attachment-0001.html>
Yep, case sensitivity. I''ve ran into it too, but haven''t fixed it. Anyone have a patch for this? -----Original Message----- From: "Joe Fiorini" <joe at faithfulgeek.org> To: "ironruby-core at rubyforge.org" <ironruby-core at rubyforge.org> Sent: 8/6/08 5:26 PM Subject: Re: [Ironruby-core] Can''t build under Mono Mac 10.5.4 On Wed, Aug 6, 2008 at 8:25 PM, Jim Deville <jdeville at microsoft.com<mailto:jdeville at microsoft.com>> wrote: Looks like case sensitivity. Are you on Mac or *nix? -----Original Message----- From: "Joe Fiorini" <joe at faithfulgeek.org<mailto:joe at faithfulgeek.org>> To: "ironruby-core at rubyforge.org<mailto:ironruby-core at rubyforge.org>" <ironruby-core at rubyforge.org<mailto:ironruby-core at rubyforge.org>> Sent: 8/6/08 5:09 PM Subject: Re: [Ironruby-core] Can''t build under Mono Thanks for all the suggestions! I''m using a .irconfig.rb in my home directory, which got me past that error. Now it''s tell me it can''t find a large number of source files, like so: error CS2001: Source file `Development/Open'' could not be found error CS2001: Source file `Source'' could not be found error CS2001: Source file `Projects/ironrubyRubyTestKey.snk'' could not be found error CS2001: Source file `Actions\ActionSelfExpression.cs'' could not be found error CS2001: Source file `Actions\ArgumentInfo.cs'' could not be found error CS2001: Source file `Actions\CallAction.cs'' could not be found error CS2001: Source file `Actions\CallSiteBinder.cs'' could not be found error CS2001: Source file `Actions\CallSignature.cs'' could not be found error CS2001: Source file `Actions\ConvertAction.cs'' could not be found error CS2001: Source file `Actions\CustomTracker.cs'' could not be found error CS2001: Source file `Actions\DeferMetaObject.cs'' could not be found error CS2001: Source file `Actions\DeleteMemberAction.cs'' could not be found error CS2001: Source file `Actions\ErrorMetaObject.cs'' could not be found error CS2001: Source file `Actions\GetMemberAction.cs'' could not be found error CS2001: Source file `Actions\IDynamicObject.cs'' could not be found error CS2001: Source file `Actions\InvokeAction.cs'' could not be found error CS2001: Source file `Actions\MatchCaller.cs'' could not be found error CS2001: Source file `Actions\MetaAction.cs'' could not be found error CS2001: Source file `Actions\MetaObject.cs'' could not be found error CS2001: Source file `Actions\Old\OldCreateInstanceAction.cs'' could not be found error CS2001: Source file `Actions\OperationAction.cs'' could not be found error CS2001: Source file `Actions\ParameterMetaObject.cs'' could not be found error CS2001: Source file `Actions\RestrictedMetaObject.cs'' could not be found error CS2001: Source file `Actions\Restrictions.cs'' could not be found error CS2001: Source file `Actions\SetMemberAction.cs'' could not be found error CS2001: Source file `Actions\SplatCallSite.cs'' could not be found error CS2001: Source file `Actions\SplatCallSite.Generated.cs'' could not be found error CS2001: Source file `Actions\StandardAction.cs'' could not be found error CS2001: Source file `Actions\StandardActionKind.cs'' could not be found error CS2001: Source file `Ast\Argument.cs'' could not be found error CS2001: Source file `Ast\CodeContextExpression.cs'' could not be found error CS2001: Source file `Ast\Extensions.cs'' could not be found error CS2001: Source file `Ast\IndexedPropertyExpression.cs'' could not be found error CS2001: Source file `Compiler\Set.cs'' could not be found error CS2001: Source file `Compiler\ExpressionQuoter.cs'' could not be found error CS2001: Source file `Ast\ElementInit.cs'' could not be found error CS2001: Source file `Ast\ListInitExpression.cs'' could not be found error CS2001: Source file `Ast\MemberAssignment.cs'' could not be found error CS2001: Source file `Ast\MemberInitExpression.cs'' could not be found error CS2001: Source file `Ast\MemberListBinding.cs'' could not be found error CS2001: Source file `Ast\MemberMemberBinding.cs'' could not be found error CS2001: Source file `Compiler\KeyedQueue.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Binary.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.ControlFlow.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Generated.cs'' could not be found error CS2001: Source file `Compiler\DynamicNodeRewriter.cs'' could not be found error CS2001: Source file `Ast\ILocalVariables.cs'' could not be found error CS2001: Source file `Compiler\CompilerScope.Storage.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Unary.cs'' could not be found error CS2001: Source file `Compiler\StackSpiller.Bindings.cs'' could not be found error CS2001: Source file `Com\ArgBuilder.cs'' could not be found error CS2001: Source file `Com\BoundDispEvent.cs'' could not be found error CS2001: Source file `Com\ComClassMetaObject.cs'' could not be found error CS2001: Source file `Com\ComInvokeAction.cs'' could not be found error CS2001: Source file `Com\ComDispIds.cs'' could not be found error CS2001: Source file `Com\ComEventDesc.cs'' could not be found error CS2001: Source file `Com\ComEventSink.cs'' could not be found error CS2001: Source file `Com\ComEventSinkProxy.cs'' could not be found error CS2001: Source file `Com\ComEventSinksContainer.cs'' could not be found error CS2001: Source file `Com\ComHresults.cs'' could not be found error CS2001: Source file `Com\ComInterop.cs'' could not be found error CS2001: Source file `Com\ComMetaObject.cs'' could not be found error CS2001: Source file `Com\ComMethodDesc.cs'' could not be found error CS2001: Source file `Com\ComObject.cs'' could not be found error CS2001: Source file `Com\ComObjectWithTypeInfo.cs'' could not be found error CS2001: Source file `Com\ComParamDesc.cs'' could not be found error CS2001: Source file `Com\ComReferenceArgBuilder.cs'' could not be found error CS2001: Source file `Com\ComRuntimeHelpers.cs'' could not be found error CS2001: Source file `Com\ComType.cs'' could not be found error CS2001: Source file `Com\ComTypeClassDesc.cs'' could not be found error CS2001: Source file `Com\ComTypeDesc.cs'' could not be found error CS2001: Source file `Com\ComTypeEnumDesc.cs'' could not be found error CS2001: Source file `Com\ComTypeLibDesc.cs'' could not be found error CS2001: Source file `Com\ComTypeLibInfo.cs'' could not be found error CS2001: Source file `Com\ComTypeLibMemberDesc.cs'' could not be found error CS2001: Source file `Com\DispCallable.cs'' could not be found error CS2001: Source file `Com\DispCallableMetaObject.cs'' could not be found error CS2001: Source file `Com\DispMethod.cs'' could not be found error CS2001: Source file `Com\DispPropertyGet.cs'' could not be found error CS2001: Source file `Com\DispPropertyPut.cs'' could not be found error CS2001: Source file `Com\ExcepInfo.cs'' could not be found error CS2001: Source file `Com\GenericComMetaObject.cs'' could not be found error CS2001: Source file `Com\GenericComObject.cs'' could not be found error CS2001: Source file `Com\IDispatchComObject.cs'' could not be found error CS2001: Source file `Com\IDispatchMetaObject.cs'' could not be found error CS2001: Source file `Com\IDispatchObject.cs'' could not be found error CS2001: Source file `Com\InvokeBinder.cs'' could not be found error CS2001: Source file `Com\MetaUnwrappedComObject.cs'' could not be found error CS2001: Source file `Com\NullArgBuilder.cs'' could not be found error CS2001: Source file `Com\ReferenceArgBuilder.cs'' could not be found error CS2001: Source file `Com\ReturnBuilder.cs'' could not be found error CS2001: Source file `Com\SimpleArgBuilder.cs'' could not be found error CS2001: Source file `Com\TypeEnumMetaObject.cs'' could not be found error CS2001: Source file `Com\TypeInfoMetaObject.cs'' could not be found error CS2001: Source file `Com\TypeLibInfoMetaObject.cs'' could not be found error CS2001: Source file `Com\TypeLibMetaObject.cs'' could not be found error CS2001: Source file `Com\VarEnumSelector.cs'' could not be found error CS2001: Source file `Com\Variant.cs'' could not be found error CS2001: Source file `Com\VariantArray.cs'' could not be found error CS2001: Source file `Com\VariantBuilder.cs'' could not be found error CS2001: Source file `Generation\GlobalRewriter.cs'' could not be found error CS2001: Source file `Ast\GlobalVariableExpression.cs'' could not be found error CS2001: Source file `Generation\GlobalOptimizedRewriter.cs'' could not be found error CS2001: Source file `Actions\ExtensionMethodTracker.cs'' could not be found error CS2001: Source file `Actions\Old\OldDynamicAction.cs'' could not be found error CS2001: Source file `Actions\ActionBinder.cs'' could not be found error CS2001: Source file `Actions\BoundMemberTracker.cs'' could not be found error CS2001: Source file `Actions\ConstructorTracker.cs'' could not be found error CS2001: Source file `Actions\ErrorInfo.cs'' could not be found error CS2001: Source file `Actions\EventTracker.cs'' could not be found error CS2001: Source file `Actions\ExtensionPropertyTracker.cs'' could not be found error CS2001: Source file `Actions\FieldTracker.cs'' could not be found error CS2001: Source file `Actions\Matchmaker.cs'' could not be found error CS2001: Source file `Actions\MethodGroup.cs'' could not be found error CS2001: Source file `Actions\MethodTracker.cs'' could not be found error CS2001: Source file `Actions\RuleValidator.cs'' could not be found error CS2001: Source file `Actions\NamespaceTracker.cs'' could not be found error CS2001: Source file `Actions\NestedTypeTracker.cs'' could not be found error CS2001: Source file `Actions\PropertyTracker.cs'' could not be found error CS2001: Source file `Actions\ReflectedPropertyTracker.cs'' could not be found error CS2001: Source file `Actions\Rule.cs'' could not be found error CS2001: Source file `Actions\RuleCache.cs'' could not be found error CS2001: Source file `Actions\Old\OldCallAction.cs'' could not be found error CS2001: Source file `Actions\Old\OldConvertToAction.cs'' could not be found error CS2001: Source file `Actions\CreateAction.cs'' could not be found error CS2001: Source file `Actions\Old\OldDeleteMemberAction.cs'' could not be found error CS2001: Source file `Actions\DynamicSiteHelpers.Generated.cs'' could not be found error CS2001: Source file `Actions\Old\OldDoOperationAction.cs'' could not be found error CS2001: Source file `Actions\DynamicSiteHelpers.cs'' could not be found error CS2001: Source file `Actions\EmptyRuleSet.cs'' could not be found error CS2001: Source file `Actions\MemberTracker.cs'' could not be found error CS2001: Source file `Actions\Old\OldGetMemberAction.cs'' could not be found error CS2001: Source file `Actions\Old\OldInvokeMemberAction.cs'' could not be found error CS2001: Source file `Actions\Old\OldMemberAction.cs'' could not be found error CS2001: Source file `Actions\MemberGroup.cs'' could not be found error CS2001: Source file `Actions\RuleSet.cs'' could not be found error CS2001: Source file `Actions\RuleTree.cs'' could not be found error CS2001: Source file `Actions\Old\OldSetMemberAction.cs'' could not be found error CS2001: Source file `Actions\SmallRuleSet.cs'' could not be found error CS2001: Source file `Actions\RuleBuilder.cs'' could not be found error CS2001: Source file `Actions\TemplatedValue.cs'' could not be found error CS2001: Source file `Actions\TopNamespaceTracker.cs'' could not be found error CS2001: Source file `Actions\TrackerTypes.cs'' could not be found error CS2001: Source file `Actions\TypeGroup.cs'' could not be found error CS2001: Source file `Actions\TypeTracker.cs'' could not be found error CS2001: Source file `Actions\UpdateDelegates.cs'' could not be found error CS2001: Source file `Ast\Annotations.cs'' could not be found error CS2001: Source file `Actions\Matchmaker.Generated.cs'' could not be found error CS2001: Source file `Compiler\Closure.cs'' could not be found error CS2001: Source file `Ast\AutoRuleTemplate.cs'' could not be found error CS2001: Source file `Compiler\HoistedLocals.cs'' could not be found error CS2001: Source file `Compiler\CompilerScope.cs'' could not be found error CS2001: Source file `Compiler\GeneratorInfo.cs'' could not be found error CS2001: Source file `Generation\IExpressionSerializable.cs'' could not be found error CS2001: Source file `Ast\InvocationExpression.cs'' could not be found error CS2001: Source file `Ast\LabelTarget.cs'' could not be found error CS2001: Source file `Ast\OpAssignmentExpression.cs'' could not be found error CS2001: Source file `Ast\ParameterExpression.cs'' could not be found error CS2001: Source file `Compiler\StackSpiller.Temps.cs'' could not be found error CS2001: Source file `Generation\ToDiskRewriter.cs'' could not be found error CS2001: Source file `Actions\Stitcher.cs'' could not be found error CS2001: Source file `Ast\TreeComparer.cs'' could not be found error CS2001: Source file `Compiler\ExpressionTreeVisitor.cs'' could not be found error CS2001: Source file `Compiler\ExpressionTreeVisitor.Generated.cs'' could not be found error CS2001: Source file `Runtime\OptimizedScriptCode.cs'' could not be found error CS2001: Source file `Generation\GlobalLookupRewriter.cs'' could not be found error CS2001: Source file `Hosting\EngineOptions.cs'' could not be found error CS2001: Source file `Runtime\LanguageBoundTextContentProvider.cs'' could not be found error CS2001: Source file `Runtime\AssemblyTypeNames.cs'' could not be found error CS2001: Source file `Compiler\StackSpiller.Generated.cs'' could not be found error CS2001: Source file `Compiler\ExpressionWriter.cs'' could not be found error CS2001: Source file `Ast\BinaryExpression.cs'' could not be found error CS2001: Source file `Ast\CatchBlock.cs'' could not be found error CS2001: Source file `Compiler\CatchRecord.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Address.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Lambda.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Expressions.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Logical.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.Statements.cs'' could not be found error CS2001: Source file `Compiler\LambdaCompiler.cs'' could not be found error CS2001: Source file `Compiler\ConstantCheck.cs'' could not be found error CS2001: Source file `Compiler\StackSpiller.cs'' could not be found error CS2001: Source file `Ast\LocalScopeExpression.cs'' could not be found error CS2001: Source file `Compiler\TryStatementInfo.cs'' could not be found error CS2001: Source file `Compiler\VariableBinder.cs'' could not be found error CS2001: Source file `Ast\DoStatementBuilder.cs'' could not be found error CS2001: Source file `Ast\IfStatementBuilder.cs'' could not be found error CS2001: Source file `Ast\ExpressionType.cs'' could not be found error CS2001: Source file `Ast\TypeUtils.cs'' could not be found error CS2001: Source file `Runtime\DlrCachedCodeAttribute.cs'' could not be found error CS2001: Source file `Runtime\DocumentationAttribute.cs'' could not be found error CS2001: Source file `Generation\ConversionResult.cs'' could not be found error CS2001: Source file `Generation\DebugILGen.cs'' could not be found error CS2001: Source file `Generation\DynamicILGen.cs'' could not be found error CS2001: Source file `Generation\ILGen.cs'' could not be found error CS2001: Source file `Compiler\TryFlowAnalyzer.cs'' could not be found error CS2001: Source file `Ast\TryStatementBuilder.cs'' could not be found error CS2001: Source file `Ast\TypeBinaryExpression.cs'' could not be found error CS2001: Source file `Ast\UnaryExpression.cs'' could not be found error CS2001: Source file `Ast\LambdaExpression.cs'' could not be found error CS2001: Source file `Ast\DeleteExpression.cs'' could not be found error CS2001: Source file `Ast\ActionExpression.cs'' could not be found error CS2001: Source file `Actions\ArgumentKind.cs'' could not be found error CS2001: Source file `Ast\Block.cs'' could not be found error CS2001: Source file `Ast\AssignmentExpression.cs'' could not be found error CS2001: Source file `Ast\BreakStatement.cs'' could not be found error CS2001: Source file `Actions\CallSite.cs'' could not be found error CS2001: Source file `Actions\DynamicSiteTargets.Generated.cs'' could not be found error CS2001: Source file `Ast\ConditionalExpression.cs'' could not be found error CS2001: Source file `Ast\ConstantExpression.cs'' could not be found error CS2001: Source file `Ast\ContinueStatement.cs'' could not be found error CS2001: Source file `Ast\MemberBinding.cs'' could not be found error CS2001: Source file `Ast\NewExpression.cs'' could not be found error CS2001: Source file `Ast\DoStatement.cs'' could not be found error CS2001: Source file `Ast\EmptyStatement.cs'' could not be found error CS2001: Source file `Ast\IfStatementTest.cs'' could not be found error CS2001: Source file `Ast\LabeledStatement.cs'' could not be found error CS2001: Source file `Ast\MemberExpression.cs'' could not be found error CS2001: Source file `Ast\NewArrayExpression.cs'' could not be found error CS2001: Source file `Ast\DebugStatement.cs'' could not be found error CS2001: Source file `Ast\Expression.cs'' could not be found error CS2001: Source file `Ast\MethodCallExpression.cs'' could not be found error CS2001: Source file `Ast\ReturnStatement.cs'' could not be found error CS2001: Source file `Ast\ScopeExpression.cs'' could not be found error CS2001: Source file `Ast\SwitchCase.cs'' could not be found error CS2001: Source file `Ast\SwitchStatement.cs'' could not be found error CS2001: Source file `Ast\ThrowStatement.cs'' could not be found error CS2001: Source file `Ast\TryStatement.cs'' could not be found error CS2001: Source file `Ast\VariableExpression.cs'' could not be found error CS2001: Source file `Ast\LoopStatement.cs'' could not be found error CS2001: Source file `Compiler\YieldLabelBuilder.cs'' could not be found error CS2001: Source file `Ast\YieldStatement.cs'' could not be found error CS2001: Source file `Compiler\YieldTarget.cs'' could not be found error CS2001: Source file `Runtime\BinderType.cs'' could not be found error CS2001: Source file `Runtime\DynamicRuntimeHostingProvider.cs'' could not be found error CS2001: Source file `Runtime\CallTargets.cs'' could not be found error CS2001: Source file `Generation\GlobalStaticFieldRewriter.cs'' could not be found error CS2001: Source file `Generation\GlobalArrayRewriter.cs'' could not be found error CS2001: Source file `Runtime\LocalVariableAccess.cs'' could not be found error CS2001: Source file `Runtime\MultiRuntimeAwareAttribute.cs'' could not be found error CS2001: Source file `Runtime\NullTextContentProvider.cs'' could not be found error CS2001: Source file `Runtime\ScopeExtension.cs'' could not be found error CS2001: Source file `Generation\NarrowingLevel.cs'' could not be found error CS2001: Source file `Runtime\ScriptCode.cs'' could not be found error CS2001: Source file `Runtime\DlrConfiguration.cs'' could not be found error CS2001: Source file `Runtime\SourceStringContentProvider.cs'' could not be found error CS2001: Source file `Ast\SourceFileInformation.cs'' could not be found error CS2001: Source file `Ast\SourceLocation.cs'' could not be found error CS2001: Source file `Ast\SourceSpan.cs'' could not be found error CS2001: Source file `Runtime\OperationFailed.cs'' could not be found error CS2001: Source file `Runtime\OperatorSlotAttribute.cs'' could not be found error CS2001: Source file `Runtime\CustomSymbolDictionary.cs'' could not be found error CS2001: Source file `Runtime\ExplicitConversionMethodAttribute.cs'' could not be found error CS2001: Source file `Runtime\Extensible.cs'' could not be found error CS2001: Source file `Runtime\ExtensionTypeAttribute.cs'' could not be found error CS2001: Source file `Runtime\ExtraKeyEnumerator.cs'' could not be found error CS2001: Source file `Runtime\ExceptionHelpers.cs'' could not be found error CS2001: Source file `Generation\ParameterInfoWrapper.cs'' could not be found error CS2001: Source file `Runtime\ImplicitConversionMethodAttribute.cs'' could not be found error CS2001: Source file `Runtime\LanguageContext.cs'' could not be found error CS2001: Source file `Runtime\ReflectionCache.cs'' could not be found error CS2001: Source file `Runtime\ScopeMemberAttributes.cs'' could not be found error CS2001: Source file `Runtime\ModuleChangeEventArgs.cs'' could not be found error CS2001: Source file `Runtime\ModuleChangeEventType.cs'' could not be found error CS2001: Source file `Runtime\ModuleGlobalCache.cs'' could not be found error CS2001: Source file `Runtime\GlobalsDictionary.cs'' could not be found error CS2001: Source file `Runtime\ModuleGlobalWrapper.cs'' could not be found error CS2001: Source file `Runtime\Scope.cs'' could not be found error CS2001: Source file `Runtime\NotNullAttribute.cs'' could not be found error CS2001: Source file `Runtime\ScriptDomainManager.cs'' could not be found error CS2001: Source file `Runtime\DynamicStackFrame.cs'' could not be found error CS2001: Source file `Runtime\SharedIO.cs'' could not be found error CS2001: Source file `Runtime\StaticExtensionMethodAttribute.cs'' could not be found error CS2001: Source file `Runtime\SymbolDictionary.cs'' could not be found error CS2001: Source file `Runtime\BaseSymbolDictionary.cs'' could not be found error CS2001: Source file `Runtime\TransformDictEnumerator.cs'' could not be found error CS2001: Source file `Runtime\UnboundNameException.cs'' could not be found error CS2001: Source file `Runtime\Generator.cs'' could not be found error CS2001: Source file `Generation\Snippets.cs'' could not be found error CS2001: Source file `Runtime\RuntimeHelpers.cs'' could not be found error CS2001: Source file `Generation\AssemblyGen.cs'' could not be found error CS2001: Source file `Generation\CompilerHelpers.cs'' could not be found error CS2001: Source file `Generation\Targets.cs'' could not be found error CS2001: Source file `Generation\TypeGen.cs'' could not be found error CS2001: Source file `Runtime\IMembersList.cs'' could not be found error CS2001: Source file `Runtime\IDynamicObject.cs'' could not be found error CS2001: Source file `Runtime\ContextId.cs'' could not be found error CS2001: Source file `Runtime\PropertyMethodAttribute.cs'' could not be found error CS2001: Source file `Runtime\CodeContext.cs'' could not be found error CS2001: Source file `Actions\UpdateDelegates.Generated.cs'' could not be found error CS2001: Source file `Utils\Action.cs'' could not be found error CS2001: Source file `Utils\ArrayUtils.cs'' could not be found error CS2001: Source file `Utils\AssemblyQualifiedTypeName.cs'' could not be found error CS2001: Source file `Utils\Assert.cs'' could not be found error CS2001: Source file `Utils\CheckedDictionaryEnumerator.cs'' could not be found error CS2001: Source file `Utils\CollectionUtils.cs'' could not be found error CS2001: Source file `Utils\ConsoleStreamType.cs'' could not be found error CS2001: Source file `Utils\ContractUtils.cs'' could not be found error CS2001: Source file `Utils\DictionaryUnionEnumerator.cs'' could not be found error CS2001: Source file `Utils\ExceptionFactory.Generated.cs'' could not be found error CS2001: Source file `Utils\ExceptionUtils.cs'' could not be found error CS2001: Source file `Utils\Extension.cs'' could not be found error CS2001: Source file `Utils\ReadOnlyDictionary.cs'' could not be found error CS2001: Source file `Utils\ReferenceEqualityComparer.cs'' could not be found error CS2001: Source file `Utils\Function.cs'' could not be found error CS2001: Source file `Utils\IOUtils.cs'' could not be found error CS2001: Source file `Utils\ListStack.cs'' could not be found error CS2001: Source file `Utils\ReflectionUtils.cs'' could not be found error CS2001: Source file `Utils\StringUtils.cs'' could not be found error CS2001: Source file `Utils\StrongBox.cs'' could not be found error CS2001: Source file `Utils\SynchronizedDictionary.cs'' could not be found error CS2001: Source file `Runtime\Operators.cs'' could not be found error CS2001: Source file `Properties\AssemblyInfo.cs'' could not be found error CS2001: Source file `Runtime\Uninitialized.cs'' could not be found error CS2001: Source file `Utils\TextStream.cs'' could not be found I know I did a successful checkout, could something be wrong with the Rakefile? I''m on r127 btw, not r126. Thanks again! Joe On Tue, Aug 5, 2008 at 8:46 PM, Charles Oliver Nutter <charles.nutter at sun.com<mailto:charles.nutter at sun.com>> wrote: Sanghyeon Seo wrote: 2008/8/6 Jim Deville <jdeville at microsoft.com<mailto:jdeville at microsoft.com>>: Come to think of it. Is there a reason to call ruby.exe on Windows? Windows has the PATHEXT variable, and it will find ruby.exe if you call ruby in the right location. Am I missing something? Or should we make the runners call ruby instead of ruby.exe? This is true. Just executing "ruby" will do the right thing both on Windows and UNIX. I thought the idea was to warn users if they don''t have Ruby installed, or if there are more than one Ruby installations. So I did the minimally intrusive change to keep that. Bah, just use whatever PATH finds. - Charlie _______________________________________________ Ironruby-core mailing list Ironruby-core at rubyforge.org<mailto:Ironruby-core at rubyforge.org> http://rubyforge.org/mailman/listinfo/ironruby-core -- joe fiorini http://www.faithfulgeek.org // freelancing & knowledge sharing _______________________________________________ Ironruby-core mailing list Ironruby-core at rubyforge.org<mailto:Ironruby-core at rubyforge.org> http://rubyforge.org/mailman/listinfo/ironruby-core -- joe fiorini http://www.faithfulgeek.org // freelancing & knowledge sharing -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20080806/fb39d786/attachment-0001.html>
Not just case sensitivity, but also path separators :( I started on a rewrite of paths a while back, but gave up because there was so many (and I think I ran into some additional problems). The code base has unfortunately drifted to become Windows-only. # Tobias 2008/8/7 Jim Deville <jdeville at microsoft.com>:> Yep, case sensitivity. I''ve ran into it too, but haven''t fixed it. Anyone > have a patch for this? > > -----Original Message----- > From: "Joe Fiorini" <joe at faithfulgeek.org> > To: "ironruby-core at rubyforge.org" <ironruby-core at rubyforge.org> > Sent: 8/6/08 5:26 PM > Subject: Re: [Ironruby-core] Can''t build under Mono > > Mac 10.5.4 > On Wed, Aug 6, 2008 at 8:25 PM, Jim Deville <jdeville at microsoft.com> wrote: >> >> Looks like case sensitivity. Are you on Mac or *nix? >> >> -----Original Message----- >> From: "Joe Fiorini" <joe at faithfulgeek.org> >> To: "ironruby-core at rubyforge.org" <ironruby-core at rubyforge.org> >> Sent: 8/6/08 5:09 PM >> Subject: Re: [Ironruby-core] Can''t build under Mono >> >> Thanks for all the suggestions! I''m using a .irconfig.rb in my home >> directory, which got me past that error. Now it''s tell me it can''t find a >> large number of source files, like so: >> error CS2001: Source file `Development/Open'' could not be found >> error CS2001: Source file `Source'' could not be found >> error CS2001: Source file `Projects/ironrubyRubyTestKey.snk'' could not be >> found >> error CS2001: Source file `Actions\ActionSelfExpression.cs'' could not be >> found >> error CS2001: Source file `Actions\ArgumentInfo.cs'' could not be found >> error CS2001: Source file `Actions\CallAction.cs'' could not be found >> error CS2001: Source file `Actions\CallSiteBinder.cs'' could not be found >> error CS2001: Source file `Actions\CallSignature.cs'' could not be found >> error CS2001: Source file `Actions\ConvertAction.cs'' could not be found >> error CS2001: Source file `Actions\CustomTracker.cs'' could not be found >> error CS2001: Source file `Actions\DeferMetaObject.cs'' could not be found >> error CS2001: Source file `Actions\DeleteMemberAction.cs'' could not be >> found >> error CS2001: Source file `Actions\ErrorMetaObject.cs'' could not be found >> error CS2001: Source file `Actions\GetMemberAction.cs'' could not be found >> error CS2001: Source file `Actions\IDynamicObject.cs'' could not be found >> error CS2001: Source file `Actions\InvokeAction.cs'' could not be found >> error CS2001: Source file `Actions\MatchCaller.cs'' could not be found >> error CS2001: Source file `Actions\MetaAction.cs'' could not be found >> error CS2001: Source file `Actions\MetaObject.cs'' could not be found >> error CS2001: Source file `Actions\Old\OldCreateInstanceAction.cs'' could >> not be found >> error CS2001: Source file `Actions\OperationAction.cs'' could not be found >> error CS2001: Source file `Actions\ParameterMetaObject.cs'' could not be >> found >> error CS2001: Source file `Actions\RestrictedMetaObject.cs'' could not be >> found >> error CS2001: Source file `Actions\Restrictions.cs'' could not be found >> error CS2001: Source file `Actions\SetMemberAction.cs'' could not be found >> error CS2001: Source file `Actions\SplatCallSite.cs'' could not be found >> error CS2001: Source file `Actions\SplatCallSite.Generated.cs'' could not >> be found >> error CS2001: Source file `Actions\StandardAction.cs'' could not be found >> error CS2001: Source file `Actions\StandardActionKind.cs'' could not be >> found >> error CS2001: Source file `Ast\Argument.cs'' could not be found >> error CS2001: Source file `Ast\CodeContextExpression.cs'' could not be >> found >> error CS2001: Source file `Ast\Extensions.cs'' could not be found >> error CS2001: Source file `Ast\IndexedPropertyExpression.cs'' could not be >> found >> error CS2001: Source file `Compiler\Set.cs'' could not be found >> error CS2001: Source file `Compiler\ExpressionQuoter.cs'' could not be >> found >> error CS2001: Source file `Ast\ElementInit.cs'' could not be found >> error CS2001: Source file `Ast\ListInitExpression.cs'' could not be found >> error CS2001: Source file `Ast\MemberAssignment.cs'' could not be found >> error CS2001: Source file `Ast\MemberInitExpression.cs'' could not be found >> error CS2001: Source file `Ast\MemberListBinding.cs'' could not be found >> error CS2001: Source file `Ast\MemberMemberBinding.cs'' could not be found >> error CS2001: Source file `Compiler\KeyedQueue.cs'' could not be found >> error CS2001: Source file `Compiler\LambdaCompiler.Binary.cs'' could not be >> found >> error CS2001: Source file `Compiler\LambdaCompiler.ControlFlow.cs'' could >> not be found >> error CS2001: Source file `Compiler\LambdaCompiler.Generated.cs'' could not >> be found >> error CS2001: Source file `Compiler\DynamicNodeRewriter.cs'' could not be >> found >> error CS2001: Source file `Ast\ILocalVariables.cs'' could not be found >> error CS2001: Source file `Compiler\CompilerScope.Storage.cs'' could not be >> found >> error CS2001: Source file `Compiler\LambdaCompiler.Unary.cs'' could not be >> found >> error CS2001: Source file `Compiler\StackSpiller.Bindings.cs'' could not be >> found >> error CS2001: Source file `Com\ArgBuilder.cs'' could not be found >> error CS2001: Source file `Com\BoundDispEvent.cs'' could not be found >> error CS2001: Source file `Com\ComClassMetaObject.cs'' could not be found >> error CS2001: Source file `Com\ComInvokeAction.cs'' could not be found >> error CS2001: Source file `Com\ComDispIds.cs'' could not be found >> error CS2001: Source file `Com\ComEventDesc.cs'' could not be found >> error CS2001: Source file `Com\ComEventSink.cs'' could not be found >> error CS2001: Source file `Com\ComEventSinkProxy.cs'' could not be found >> error CS2001: Source file `Com\ComEventSinksContainer.cs'' could not be >> found >> error CS2001: Source file `Com\ComHresults.cs'' could not be found >> error CS2001: Source file `Com\ComInterop.cs'' could not be found >> error CS2001: Source file `Com\ComMetaObject.cs'' could not be found >> error CS2001: Source file `Com\ComMethodDesc.cs'' could not be found >> error CS2001: Source file `Com\ComObject.cs'' could not be found >> error CS2001: Source file `Com\ComObjectWithTypeInfo.cs'' could not be >> found >> error CS2001: Source file `Com\ComParamDesc.cs'' could not be found >> error CS2001: Source file `Com\ComReferenceArgBuilder.cs'' could not be >> found >> error CS2001: Source file `Com\ComRuntimeHelpers.cs'' could not be found >> error CS2001: Source file `Com\ComType.cs'' could not be found >> error CS2001: Source file `Com\ComTypeClassDesc.cs'' could not be found >> error CS2001: Source file `Com\ComTypeDesc.cs'' could not be found >> error CS2001: Source file `Com\ComTypeEnumDesc.cs'' could not be found >> error CS2001: Source file `Com\ComTypeLibDesc.cs'' could not be found >> error CS2001: Source file `Com\ComTypeLibInfo.cs'' could not be found >> error CS2001: Source file `Com\ComTypeLibMemberDesc.cs'' could not be found >> error CS2001: Source file `Com\DispCallable.cs'' could not be found >> error CS2001: Source file `Com\DispCallableMetaObject.cs'' could not be >> found >> error CS2001: Source file `Com\DispMethod.cs'' could not be found >> error CS2001: Source file `Com\DispPropertyGet.cs'' could not be found >> error CS2001: Source file `Com\DispPropertyPut.cs'' could not be found >> error CS2001: Source file `Com\ExcepInfo.cs'' could not be found >> error CS2001: Source file `Com\GenericComMetaObject.cs'' could not be found >> error CS2001: Source file `Com\GenericComObject.cs'' could not be found >> error CS2001: Source file `Com\IDispatchComObject.cs'' could not be found >> error CS2001: Source file `Com\IDispatchMetaObject.cs'' could not be found >> error CS2001: Source file `Com\IDispatchObject.cs'' could not be found >> error CS2001: Source file `Com\InvokeBinder.cs'' could not be found >> error CS2001: Source file `Com\MetaUnwrappedComObject.cs'' could not be >> found >> error CS2001: Source file `Com\NullArgBuilder.cs'' could not be found >> error CS2001: Source file `Com\ReferenceArgBuilder.cs'' could not be found >> error CS2001: Source file `Com\ReturnBuilder.cs'' could not be found >> error CS2001: Source file `Com\SimpleArgBuilder.cs'' could not be found >> error CS2001: Source file `Com\TypeEnumMetaObject.cs'' could not be found >> error CS2001: Source file `Com\TypeInfoMetaObject.cs'' could not be found >> error CS2001: Source file `Com\TypeLibInfoMetaObject.cs'' could not be >> found >> error CS2001: Source file `Com\TypeLibMetaObject.cs'' could not be found >> error CS2001: Source file `Com\VarEnumSelector.cs'' could not be found >> error CS2001: Source file `Com\Variant.cs'' could not be found >> error CS2001: Source file `Com\VariantArray.cs'' could not be found >> error CS2001: Source file `Com\VariantBuilder.cs'' could not be found >> error CS2001: Source file `Generation\GlobalRewriter.cs'' could not be >> found >> error CS2001: Source file `Ast\GlobalVariableExpression.cs'' could not be >> found >> error CS2001: Source file `Generation\GlobalOptimizedRewriter.cs'' could >> not be found >> error CS2001: Source file `Actions\ExtensionMethodTracker.cs'' could not be >> found >> error CS2001: Source file `Actions\Old\OldDynamicAction.cs'' could not be >> found >> error CS2001: Source file `Actions\ActionBinder.cs'' could not be found >> error CS2001: Source file `Actions\BoundMemberTracker.cs'' could not be >> found >> error CS2001: Source file `Actions\ConstructorTracker.cs'' could not be >> found >> error CS2001: Source file `Actions\ErrorInfo.cs'' could not be found >> error CS2001: Source file `Actions\EventTracker.cs'' could not be found >> error CS2001: Source file `Actions\ExtensionPropertyTracker.cs'' could not >> be found >> error CS2001: Source file `Actions\FieldTracker.cs'' could not be found >> error CS2001: Source file `Actions\Matchmaker.cs'' could not be found >> error CS2001: Source file `Actions\MethodGroup.cs'' could not be found >> error CS2001: Source file `Actions\MethodTracker.cs'' could not be found >> error CS2001: Source file `Actions\RuleValidator.cs'' could not be found >> error CS2001: Source file `Actions\NamespaceTracker.cs'' could not be found >> error CS2001: Source file `Actions\NestedTypeTracker.cs'' could not be >> found >> error CS2001: Source file `Actions\PropertyTracker.cs'' could not be found >> error CS2001: Source file `Actions\ReflectedPropertyTracker.cs'' could not >> be found >> error CS2001: Source file `Actions\Rule.cs'' could not be found >> error CS2001: Source file `Actions\RuleCache.cs'' could not be found >> error CS2001: Source file `Actions\Old\OldCallAction.cs'' could not be >> found >> error CS2001: Source file `Actions\Old\OldConvertToAction.cs'' could not be >> found >> error CS2001: Source file `Actions\CreateAction.cs'' could not be found >> error CS2001: Source file `Actions\Old\OldDeleteMemberAction.cs'' could not >> be found >> error CS2001: Source file `Actions\DynamicSiteHelpers.Generated.cs'' could >> not be found >> error CS2001: Source file `Actions\Old\OldDoOperationAction.cs'' could not >> be found >> error CS2001: Source file `Actions\DynamicSiteHelpers.cs'' could not be >> found >> error CS2001: Source file `Actions\EmptyRuleSet.cs'' could not be found >> error CS2001: Source file `Actions\MemberTracker.cs'' could not be found >> error CS2001: Source file `Actions\Old\OldGetMemberAction.cs'' could not be >> found >> error CS2001: Source file `Actions\Old\OldInvokeMemberAction.cs'' could not >> be found >> error CS2001: Source file `Actions\Old\OldMemberAction.cs'' could not be >> found >> error CS2001: Source file `Actions\MemberGroup.cs'' could not be found >> error CS2001: Source file `Actions\RuleSet.cs'' could not be found >> error CS2001: Source file `Actions\RuleTree.cs'' could not be found >> error CS2001: Source file `Actions\Old\OldSetMemberAction.cs'' could not be >> found >> error CS2001: Source file `Actions\SmallRuleSet.cs'' could not be found >> error CS2001: Source file `Actions\RuleBuilder.cs'' could not be found >> error CS2001: Source file `Actions\TemplatedValue.cs'' could not be found >> error CS2001: Source file `Actions\TopNamespaceTracker.cs'' could not be >> found >> error CS2001: Source file `Actions\TrackerTypes.cs'' could not be found >> error CS2001: Source file `Actions\TypeGroup.cs'' could not be found >> error CS2001: Source file `Actions\TypeTracker.cs'' could not be found >> error CS2001: Source file `Actions\UpdateDelegates.cs'' could not be found >> error CS2001: Source file `Ast\Annotations.cs'' could not be found >> error CS2001: Source file `Actions\Matchmaker.Generated.cs'' could not be >> found >> error CS2001: Source file `Compiler\Closure.cs'' could not be found >> error CS2001: Source file `Ast\AutoRuleTemplate.cs'' could not be found >> error CS2001: Source file `Compiler\HoistedLocals.cs'' could not be found >> error CS2001: Source file `Compiler\CompilerScope.cs'' could not be found >> error CS2001: Source file `Compiler\GeneratorInfo.cs'' could not be found >> error CS2001: Source file `Generation\IExpressionSerializable.cs'' could >> not be found >> error CS2001: Source file `Ast\InvocationExpression.cs'' could not be found >> error CS2001: Source file `Ast\LabelTarget.cs'' could not be found >> error CS2001: Source file `Ast\OpAssignmentExpression.cs'' could not be >> found >> error CS2001: Source file `Ast\ParameterExpression.cs'' could not be found >> error CS2001: Source file `Compiler\StackSpiller.Temps.cs'' could not be >> found >> error CS2001: Source file `Generation\ToDiskRewriter.cs'' could not be >> found >> error CS2001: Source file `Actions\Stitcher.cs'' could not be found >> error CS2001: Source file `Ast\TreeComparer.cs'' could not be found >> error CS2001: Source file `Compiler\ExpressionTreeVisitor.cs'' could not be >> found >> error CS2001: Source file `Compiler\ExpressionTreeVisitor.Generated.cs'' >> could not be found >> error CS2001: Source file `Runtime\OptimizedScriptCode.cs'' could not be >> found >> error CS2001: Source file `Generation\GlobalLookupRewriter.cs'' could not >> be found >> error CS2001: Source file `Hosting\EngineOptions.cs'' could not be found >> error CS2001: Source file `Runtime\LanguageBoundTextContentProvider.cs'' >> could not be found >> error CS2001: Source file `Runtime\AssemblyTypeNames.cs'' could not be >> found >> error CS2001: Source file `Compiler\StackSpiller.Generated.cs'' could not >> be found >> error CS2001: Source file `Compiler\ExpressionWriter.cs'' could not be >> found >> error CS2001: Source file `Ast\BinaryExpression.cs'' could not be found >> error CS2001: Source file `Ast\CatchBlock.cs'' could not be found >> error CS2001: Source file `Compiler\CatchRecord.cs'' could not be found >> error CS2001: Source file `Compiler\LambdaCompiler.Address.cs'' could not >> be found >> error CS2001: Source file `Compiler\LambdaCompiler.Lambda.cs'' could not be >> found >> error CS2001: Source file `Compiler\LambdaCompiler.Expressions.cs'' could >> not be found >> error CS2001: Source file `Compiler\LambdaCompiler.Logical.cs'' could not >> be found >> error CS2001: Source file `Compiler\LambdaCompiler.Statements.cs'' could >> not be found >> error CS2001: Source file `Compiler\LambdaCompiler.cs'' could not be found >> error CS2001: Source file `Compiler\ConstantCheck.cs'' could not be found >> error CS2001: Source file `Compiler\StackSpiller.cs'' could not be found >> error CS2001: Source file `Ast\LocalScopeExpression.cs'' could not be found >> error CS2001: Source file `Compiler\TryStatementInfo.cs'' could not be >> found >> error CS2001: Source file `Compiler\VariableBinder.cs'' could not be found >> error CS2001: Source file `Ast\DoStatementBuilder.cs'' could not be found >> error CS2001: Source file `Ast\IfStatementBuilder.cs'' could not be found >> error CS2001: Source file `Ast\ExpressionType.cs'' could not be found >> error CS2001: Source file `Ast\TypeUtils.cs'' could not be found >> error CS2001: Source file `Runtime\DlrCachedCodeAttribute.cs'' could not be >> found >> error CS2001: Source file `Runtime\DocumentationAttribute.cs'' could not be >> found >> error CS2001: Source file `Generation\ConversionResult.cs'' could not be >> found >> error CS2001: Source file `Generation\DebugILGen.cs'' could not be found >> error CS2001: Source file `Generation\DynamicILGen.cs'' could not be found >> error CS2001: Source file `Generation\ILGen.cs'' could not be found >> error CS2001: Source file `Compiler\TryFlowAnalyzer.cs'' could not be found >> error CS2001: Source file `Ast\TryStatementBuilder.cs'' could not be found >> error CS2001: Source file `Ast\TypeBinaryExpression.cs'' could not be found >> error CS2001: Source file `Ast\UnaryExpression.cs'' could not be found >> error CS2001: Source file `Ast\LambdaExpression.cs'' could not be found >> error CS2001: Source file `Ast\DeleteExpression.cs'' could not be found >> error CS2001: Source file `Ast\ActionExpression.cs'' could not be found >> error CS2001: Source file `Actions\ArgumentKind.cs'' could not be found >> error CS2001: Source file `Ast\Block.cs'' could not be found >> error CS2001: Source file `Ast\AssignmentExpression.cs'' could not be found >> error CS2001: Source file `Ast\BreakStatement.cs'' could not be found >> error CS2001: Source file `Actions\CallSite.cs'' could not be found >> error CS2001: Source file `Actions\DynamicSiteTargets.Generated.cs'' could >> not be found >> error CS2001: Source file `Ast\ConditionalExpression.cs'' could not be >> found >> error CS2001: Source file `Ast\ConstantExpression.cs'' could not be found >> error CS2001: Source file `Ast\ContinueStatement.cs'' could not be found >> error CS2001: Source file `Ast\MemberBinding.cs'' could not be found >> error CS2001: Source file `Ast\NewExpression.cs'' could not be found >> error CS2001: Source file `Ast\DoStatement.cs'' could not be found >> error CS2001: Source file `Ast\EmptyStatement.cs'' could not be found >> error CS2001: Source file `Ast\IfStatementTest.cs'' could not be found >> error CS2001: Source file `Ast\LabeledStatement.cs'' could not be found >> error CS2001: Source file `Ast\MemberExpression.cs'' could not be found >> error CS2001: Source file `Ast\NewArrayExpression.cs'' could not be found >> error CS2001: Source file `Ast\DebugStatement.cs'' could not be found >> error CS2001: Source file `Ast\Expression.cs'' could not be found >> error CS2001: Source file `Ast\MethodCallExpression.cs'' could not be found >> error CS2001: Source file `Ast\ReturnStatement.cs'' could not be found >> error CS2001: Source file `Ast\ScopeExpression.cs'' could not be found >> error CS2001: Source file `Ast\SwitchCase.cs'' could not be found >> error CS2001: Source file `Ast\SwitchStatement.cs'' could not be found >> error CS2001: Source file `Ast\ThrowStatement.cs'' could not be found >> error CS2001: Source file `Ast\TryStatement.cs'' could not be found >> error CS2001: Source file `Ast\VariableExpression.cs'' could not be found >> error CS2001: Source file `Ast\LoopStatement.cs'' could not be found >> error CS2001: Source file `Compiler\YieldLabelBuilder.cs'' could not be >> found >> error CS2001: Source file `Ast\YieldStatement.cs'' could not be found >> error CS2001: Source file `Compiler\YieldTarget.cs'' could not be found >> error CS2001: Source file `Runtime\BinderType.cs'' could not be found >> error CS2001: Source file `Runtime\DynamicRuntimeHostingProvider.cs'' could >> not be found >> error CS2001: Source file `Runtime\CallTargets.cs'' could not be found >> error CS2001: Source file `Generation\GlobalStaticFieldRewriter.cs'' could >> not be found >> error CS2001: Source file `Generation\GlobalArrayRewriter.cs'' could not be >> found >> error CS2001: Source file `Runtime\LocalVariableAccess.cs'' could not be >> found >> error CS2001: Source file `Runtime\MultiRuntimeAwareAttribute.cs'' could >> not be found >> error CS2001: Source file `Runtime\NullTextContentProvider.cs'' could not >> be found >> error CS2001: Source file `Runtime\ScopeExtension.cs'' could not be found >> error CS2001: Source file `Generation\NarrowingLevel.cs'' could not be >> found >> error CS2001: Source file `Runtime\ScriptCode.cs'' could not be found >> error CS2001: Source file `Runtime\DlrConfiguration.cs'' could not be found >> error CS2001: Source file `Runtime\SourceStringContentProvider.cs'' could >> not be found >> error CS2001: Source file `Ast\SourceFileInformation.cs'' could not be >> found >> error CS2001: Source file `Ast\SourceLocation.cs'' could not be found >> error CS2001: Source file `Ast\SourceSpan.cs'' could not be found >> error CS2001: Source file `Runtime\OperationFailed.cs'' could not be found >> error CS2001: Source file `Runtime\OperatorSlotAttribute.cs'' could not be >> found >> error CS2001: Source file `Runtime\CustomSymbolDictionary.cs'' could not be >> found >> error CS2001: Source file `Runtime\ExplicitConversionMethodAttribute.cs'' >> could not be found >> error CS2001: Source file `Runtime\Extensible.cs'' could not be found >> error CS2001: Source file `Runtime\ExtensionTypeAttribute.cs'' could not be >> found >> error CS2001: Source file `Runtime\ExtraKeyEnumerator.cs'' could not be >> found >> error CS2001: Source file `Runtime\ExceptionHelpers.cs'' could not be found >> error CS2001: Source file `Generation\ParameterInfoWrapper.cs'' could not >> be found >> error CS2001: Source file `Runtime\ImplicitConversionMethodAttribute.cs'' >> could not be found >> error CS2001: Source file `Runtime\LanguageContext.cs'' could not be found >> error CS2001: Source file `Runtime\ReflectionCache.cs'' could not be found >> error CS2001: Source file `Runtime\ScopeMemberAttributes.cs'' could not be >> found >> error CS2001: Source file `Runtime\ModuleChangeEventArgs.cs'' could not be >> found >> error CS2001: Source file `Runtime\ModuleChangeEventType.cs'' could not be >> found >> error CS2001: Source file `Runtime\ModuleGlobalCache.cs'' could not be >> found >> error CS2001: Source file `Runtime\GlobalsDictionary.cs'' could not be >> found >> error CS2001: Source file `Runtime\ModuleGlobalWrapper.cs'' could not be >> found >> error CS2001: Source file `Runtime\Scope.cs'' could not be found >> error CS2001: Source file `Runtime\NotNullAttribute.cs'' could not be found >> error CS2001: Source file `Runtime\ScriptDomainManager.cs'' could not be >> found >> error CS2001: Source file `Runtime\DynamicStackFrame.cs'' could not be >> found >> error CS2001: Source file `Runtime\SharedIO.cs'' could not be found >> error CS2001: Source file `Runtime\StaticExtensionMethodAttribute.cs'' >> could not be found >> error CS2001: Source file `Runtime\SymbolDictionary.cs'' could not be found >> error CS2001: Source file `Runtime\BaseSymbolDictionary.cs'' could not be >> found >> error CS2001: Source file `Runtime\TransformDictEnumerator.cs'' could not >> be found >> error CS2001: Source file `Runtime\UnboundNameException.cs'' could not be >> found >> error CS2001: Source file `Runtime\Generator.cs'' could not be found >> error CS2001: Source file `Generation\Snippets.cs'' could not be found >> error CS2001: Source file `Runtime\RuntimeHelpers.cs'' could not be found >> error CS2001: Source file `Generation\AssemblyGen.cs'' could not be found >> error CS2001: Source file `Generation\CompilerHelpers.cs'' could not be >> found >> error CS2001: Source file `Generation\Targets.cs'' could not be found >> error CS2001: Source file `Generation\TypeGen.cs'' could not be found >> error CS2001: Source file `Runtime\IMembersList.cs'' could not be found >> error CS2001: Source file `Runtime\IDynamicObject.cs'' could not be found >> error CS2001: Source file `Runtime\ContextId.cs'' could not be found >> error CS2001: Source file `Runtime\PropertyMethodAttribute.cs'' could not >> be found >> error CS2001: Source file `Runtime\CodeContext.cs'' could not be found >> error CS2001: Source file `Actions\UpdateDelegates.Generated.cs'' could not >> be found >> error CS2001: Source file `Utils\Action.cs'' could not be found >> error CS2001: Source file `Utils\ArrayUtils.cs'' could not be found >> error CS2001: Source file `Utils\AssemblyQualifiedTypeName.cs'' could not >> be found >> error CS2001: Source file `Utils\Assert.cs'' could not be found >> error CS2001: Source file `Utils\CheckedDictionaryEnumerator.cs'' could not >> be found >> error CS2001: Source file `Utils\CollectionUtils.cs'' could not be found >> error CS2001: Source file `Utils\ConsoleStreamType.cs'' could not be found >> error CS2001: Source file `Utils\ContractUtils.cs'' could not be found >> error CS2001: Source file `Utils\DictionaryUnionEnumerator.cs'' could not >> be found >> error CS2001: Source file `Utils\ExceptionFactory.Generated.cs'' could not >> be found >> error CS2001: Source file `Utils\ExceptionUtils.cs'' could not be found >> error CS2001: Source file `Utils\Extension.cs'' could not be found >> error CS2001: Source file `Utils\ReadOnlyDictionary.cs'' could not be found >> error CS2001: Source file `Utils\ReferenceEqualityComparer.cs'' could not >> be found >> error CS2001: Source file `Utils\Function.cs'' could not be found >> error CS2001: Source file `Utils\IOUtils.cs'' could not be found >> error CS2001: Source file `Utils\ListStack.cs'' could not be found >> error CS2001: Source file `Utils\ReflectionUtils.cs'' could not be found >> error CS2001: Source file `Utils\StringUtils.cs'' could not be found >> error CS2001: Source file `Utils\StrongBox.cs'' could not be found >> error CS2001: Source file `Utils\SynchronizedDictionary.cs'' could not be >> found >> error CS2001: Source file `Runtime\Operators.cs'' could not be found >> error CS2001: Source file `Properties\AssemblyInfo.cs'' could not be found >> error CS2001: Source file `Runtime\Uninitialized.cs'' could not be found >> error CS2001: Source file `Utils\TextStream.cs'' could not be found >> I know I did a successful checkout, could something be wrong with the >> Rakefile? I''m on r127 btw, not r126. >> Thanks again! >> Joe >> On Tue, Aug 5, 2008 at 8:46 PM, Charles Oliver Nutter >> <charles.nutter at sun.com> wrote: >>> >>> Sanghyeon Seo wrote: >>>> >>>> 2008/8/6 Jim Deville <jdeville at microsoft.com>: >>>>> >>>>> Come to think of it. Is there a reason to call ruby.exe on Windows? >>>>> Windows has the PATHEXT variable, and it will find ruby.exe if you call ruby >>>>> in the right location. Am I missing something? Or should we make the runners >>>>> call ruby instead of ruby.exe? >>>> >>>> This is true. Just executing "ruby" will do the right thing both on >>>> Windows and UNIX. I thought the idea was to warn users if they don''t >>>> have Ruby installed, or if there are more than one Ruby installations. >>>> So I did the minimally intrusive change to keep that. >>> >>> Bah, just use whatever PATH finds. >>> >>> - Charlie >>> _______________________________________________ >>> Ironruby-core mailing list >>> Ironruby-core at rubyforge.org >>> http://rubyforge.org/mailman/listinfo/ironruby-core >> >> >> >> -- >> joe fiorini >> http://www.faithfulgeek.org >> // freelancing & knowledge sharing >> >> _______________________________________________ >> Ironruby-core mailing list >> Ironruby-core at rubyforge.org >> http://rubyforge.org/mailman/listinfo/ironruby-core >> > > > > -- > joe fiorini > http://www.faithfulgeek.org > // freelancing & knowledge sharing > > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-core > >
Is it going to stay that way? I was very excited to start running some ASP.NET MVC demos using IronRuby on my Mac :). Is it part of the goal to stay Mono-compatible? On Thu, Aug 7, 2008 at 2:09 AM, Tobias H. Michaelsen < tobias.michaelsen at gmail.com> wrote:> Not just case sensitivity, but also path separators :( > I started on a rewrite of paths a while back, but gave up because > there was so many (and I think I ran into some additional problems). > The code base has unfortunately drifted to become Windows-only. > > > # Tobias > > 2008/8/7 Jim Deville <jdeville at microsoft.com>: > > Yep, case sensitivity. I''ve ran into it too, but haven''t fixed it. Anyone > > have a patch for this? > > > > -----Original Message----- > > From: "Joe Fiorini" <joe at faithfulgeek.org> > > To: "ironruby-core at rubyforge.org" <ironruby-core at rubyforge.org> > > Sent: 8/6/08 5:26 PM > > Subject: Re: [Ironruby-core] Can''t build under Mono > > > > Mac 10.5.4 > > On Wed, Aug 6, 2008 at 8:25 PM, Jim Deville <jdeville at microsoft.com> > wrote: > >> > >> Looks like case sensitivity. Are you on Mac or *nix? > >> > >> -----Original Message----- > >> From: "Joe Fiorini" <joe at faithfulgeek.org> > >> To: "ironruby-core at rubyforge.org" <ironruby-core at rubyforge.org> > >> Sent: 8/6/08 5:09 PM > >> Subject: Re: [Ironruby-core] Can''t build under Mono > >> > >> Thanks for all the suggestions! I''m using a .irconfig.rb in my home > >> directory, which got me past that error. Now it''s tell me it can''t find > a > >> large number of source files, like so: > >> error CS2001: Source file `Development/Open'' could not be found > >> error CS2001: Source file `Source'' could not be found > >> error CS2001: Source file `Projects/ironrubyRubyTestKey.snk'' could not > be > >> found > >> error CS2001: Source file `Actions\ActionSelfExpression.cs'' could not be > >> found > >> error CS2001: Source file `Actions\ArgumentInfo.cs'' could not be found > >> error CS2001: Source file `Actions\CallAction.cs'' could not be found > >> error CS2001: Source file `Actions\CallSiteBinder.cs'' could not be found > >> error CS2001: Source file `Actions\CallSignature.cs'' could not be found > >> error CS2001: Source file `Actions\ConvertAction.cs'' could not be found > >> error CS2001: Source file `Actions\CustomTracker.cs'' could not be found > >> error CS2001: Source file `Actions\DeferMetaObject.cs'' could not be > found > >> error CS2001: Source file `Actions\DeleteMemberAction.cs'' could not be > >> found > >> error CS2001: Source file `Actions\ErrorMetaObject.cs'' could not be > found > >> error CS2001: Source file `Actions\GetMemberAction.cs'' could not be > found > >> error CS2001: Source file `Actions\IDynamicObject.cs'' could not be found > >> error CS2001: Source file `Actions\InvokeAction.cs'' could not be found > >> error CS2001: Source file `Actions\MatchCaller.cs'' could not be found > >> error CS2001: Source file `Actions\MetaAction.cs'' could not be found > >> error CS2001: Source file `Actions\MetaObject.cs'' could not be found > >> error CS2001: Source file `Actions\Old\OldCreateInstanceAction.cs'' could > >> not be found > >> error CS2001: Source file `Actions\OperationAction.cs'' could not be > found > >> error CS2001: Source file `Actions\ParameterMetaObject.cs'' could not be > >> found > >> error CS2001: Source file `Actions\RestrictedMetaObject.cs'' could not be > >> found > >> error CS2001: Source file `Actions\Restrictions.cs'' could not be found > >> error CS2001: Source file `Actions\SetMemberAction.cs'' could not be > found > >> error CS2001: Source file `Actions\SplatCallSite.cs'' could not be found > >> error CS2001: Source file `Actions\SplatCallSite.Generated.cs'' could not > >> be found > >> error CS2001: Source file `Actions\StandardAction.cs'' could not be found > >> error CS2001: Source file `Actions\StandardActionKind.cs'' could not be > >> found > >> error CS2001: Source file `Ast\Argument.cs'' could not be found > >> error CS2001: Source file `Ast\CodeContextExpression.cs'' could not be > >> found > >> error CS2001: Source file `Ast\Extensions.cs'' could not be found > >> error CS2001: Source file `Ast\IndexedPropertyExpression.cs'' could not > be > >> found > >> error CS2001: Source file `Compiler\Set.cs'' could not be found > >> error CS2001: Source file `Compiler\ExpressionQuoter.cs'' could not be > >> found > >> error CS2001: Source file `Ast\ElementInit.cs'' could not be found > >> error CS2001: Source file `Ast\ListInitExpression.cs'' could not be found > >> error CS2001: Source file `Ast\MemberAssignment.cs'' could not be found > >> error CS2001: Source file `Ast\MemberInitExpression.cs'' could not be > found > >> error CS2001: Source file `Ast\MemberListBinding.cs'' could not be found > >> error CS2001: Source file `Ast\MemberMemberBinding.cs'' could not be > found > >> error CS2001: Source file `Compiler\KeyedQueue.cs'' could not be found > >> error CS2001: Source file `Compiler\LambdaCompiler.Binary.cs'' could not > be > >> found > >> error CS2001: Source file `Compiler\LambdaCompiler.ControlFlow.cs'' could > >> not be found > >> error CS2001: Source file `Compiler\LambdaCompiler.Generated.cs'' could > not > >> be found > >> error CS2001: Source file `Compiler\DynamicNodeRewriter.cs'' could not be > >> found > >> error CS2001: Source file `Ast\ILocalVariables.cs'' could not be found > >> error CS2001: Source file `Compiler\CompilerScope.Storage.cs'' could not > be > >> found > >> error CS2001: Source file `Compiler\LambdaCompiler.Unary.cs'' could not > be > >> found > >> error CS2001: Source file `Compiler\StackSpiller.Bindings.cs'' could not > be > >> found > >> error CS2001: Source file `Com\ArgBuilder.cs'' could not be found > >> error CS2001: Source file `Com\BoundDispEvent.cs'' could not be found > >> error CS2001: Source file `Com\ComClassMetaObject.cs'' could not be found > >> error CS2001: Source file `Com\ComInvokeAction.cs'' could not be found > >> error CS2001: Source file `Com\ComDispIds.cs'' could not be found > >> error CS2001: Source file `Com\ComEventDesc.cs'' could not be found > >> error CS2001: Source file `Com\ComEventSink.cs'' could not be found > >> error CS2001: Source file `Com\ComEventSinkProxy.cs'' could not be found > >> error CS2001: Source file `Com\ComEventSinksContainer.cs'' could not be > >> found > >> error CS2001: Source file `Com\ComHresults.cs'' could not be found > >> error CS2001: Source file `Com\ComInterop.cs'' could not be found > >> error CS2001: Source file `Com\ComMetaObject.cs'' could not be found > >> error CS2001: Source file `Com\ComMethodDesc.cs'' could not be found > >> error CS2001: Source file `Com\ComObject.cs'' could not be found > >> error CS2001: Source file `Com\ComObjectWithTypeInfo.cs'' could not be > >> found > >> error CS2001: Source file `Com\ComParamDesc.cs'' could not be found > >> error CS2001: Source file `Com\ComReferenceArgBuilder.cs'' could not be > >> found > >> error CS2001: Source file `Com\ComRuntimeHelpers.cs'' could not be found > >> error CS2001: Source file `Com\ComType.cs'' could not be found > >> error CS2001: Source file `Com\ComTypeClassDesc.cs'' could not be found > >> error CS2001: Source file `Com\ComTypeDesc.cs'' could not be found > >> error CS2001: Source file `Com\ComTypeEnumDesc.cs'' could not be found > >> error CS2001: Source file `Com\ComTypeLibDesc.cs'' could not be found > >> error CS2001: Source file `Com\ComTypeLibInfo.cs'' could not be found > >> error CS2001: Source file `Com\ComTypeLibMemberDesc.cs'' could not be > found > >> error CS2001: Source file `Com\DispCallable.cs'' could not be found > >> error CS2001: Source file `Com\DispCallableMetaObject.cs'' could not be > >> found > >> error CS2001: Source file `Com\DispMethod.cs'' could not be found > >> error CS2001: Source file `Com\DispPropertyGet.cs'' could not be found > >> error CS2001: Source file `Com\DispPropertyPut.cs'' could not be found > >> error CS2001: Source file `Com\ExcepInfo.cs'' could not be found > >> error CS2001: Source file `Com\GenericComMetaObject.cs'' could not be > found > >> error CS2001: Source file `Com\GenericComObject.cs'' could not be found > >> error CS2001: Source file `Com\IDispatchComObject.cs'' could not be found > >> error CS2001: Source file `Com\IDispatchMetaObject.cs'' could not be > found > >> error CS2001: Source file `Com\IDispatchObject.cs'' could not be found > >> error CS2001: Source file `Com\InvokeBinder.cs'' could not be found > >> error CS2001: Source file `Com\MetaUnwrappedComObject.cs'' could not be > >> found > >> error CS2001: Source file `Com\NullArgBuilder.cs'' could not be found > >> error CS2001: Source file `Com\ReferenceArgBuilder.cs'' could not be > found > >> error CS2001: Source file `Com\ReturnBuilder.cs'' could not be found > >> error CS2001: Source file `Com\SimpleArgBuilder.cs'' could not be found > >> error CS2001: Source file `Com\TypeEnumMetaObject.cs'' could not be found > >> error CS2001: Source file `Com\TypeInfoMetaObject.cs'' could not be found > >> error CS2001: Source file `Com\TypeLibInfoMetaObject.cs'' could not be > >> found > >> error CS2001: Source file `Com\TypeLibMetaObject.cs'' could not be found > >> error CS2001: Source file `Com\VarEnumSelector.cs'' could not be found > >> error CS2001: Source file `Com\Variant.cs'' could not be found > >> error CS2001: Source file `Com\VariantArray.cs'' could not be found > >> error CS2001: Source file `Com\VariantBuilder.cs'' could not be found > >> error CS2001: Source file `Generation\GlobalRewriter.cs'' could not be > >> found > >> error CS2001: Source file `Ast\GlobalVariableExpression.cs'' could not be > >> found > >> error CS2001: Source file `Generation\GlobalOptimizedRewriter.cs'' could > >> not be found > >> error CS2001: Source file `Actions\ExtensionMethodTracker.cs'' could not > be > >> found > >> error CS2001: Source file `Actions\Old\OldDynamicAction.cs'' could not be > >> found > >> error CS2001: Source file `Actions\ActionBinder.cs'' could not be found > >> error CS2001: Source file `Actions\BoundMemberTracker.cs'' could not be > >> found > >> error CS2001: Source file `Actions\ConstructorTracker.cs'' could not be > >> found > >> error CS2001: Source file `Actions\ErrorInfo.cs'' could not be found > >> error CS2001: Source file `Actions\EventTracker.cs'' could not be found > >> error CS2001: Source file `Actions\ExtensionPropertyTracker.cs'' could > not > >> be found > >> error CS2001: Source file `Actions\FieldTracker.cs'' could not be found > >> error CS2001: Source file `Actions\Matchmaker.cs'' could not be found > >> error CS2001: Source file `Actions\MethodGroup.cs'' could not be found > >> error CS2001: Source file `Actions\MethodTracker.cs'' could not be found > >> error CS2001: Source file `Actions\RuleValidator.cs'' could not be found > >> error CS2001: Source file `Actions\NamespaceTracker.cs'' could not be > found > >> error CS2001: Source file `Actions\NestedTypeTracker.cs'' could not be > >> found > >> error CS2001: Source file `Actions\PropertyTracker.cs'' could not be > found > >> error CS2001: Source file `Actions\ReflectedPropertyTracker.cs'' could > not > >> be found > >> error CS2001: Source file `Actions\Rule.cs'' could not be found > >> error CS2001: Source file `Actions\RuleCache.cs'' could not be found > >> error CS2001: Source file `Actions\Old\OldCallAction.cs'' could not be > >> found > >> error CS2001: Source file `Actions\Old\OldConvertToAction.cs'' could not > be > >> found > >> error CS2001: Source file `Actions\CreateAction.cs'' could not be found > >> error CS2001: Source file `Actions\Old\OldDeleteMemberAction.cs'' could > not > >> be found > >> error CS2001: Source file `Actions\DynamicSiteHelpers.Generated.cs'' > could > >> not be found > >> error CS2001: Source file `Actions\Old\OldDoOperationAction.cs'' could > not > >> be found > >> error CS2001: Source file `Actions\DynamicSiteHelpers.cs'' could not be > >> found > >> error CS2001: Source file `Actions\EmptyRuleSet.cs'' could not be found > >> error CS2001: Source file `Actions\MemberTracker.cs'' could not be found > >> error CS2001: Source file `Actions\Old\OldGetMemberAction.cs'' could not > be > >> found > >> error CS2001: Source file `Actions\Old\OldInvokeMemberAction.cs'' could > not > >> be found > >> error CS2001: Source file `Actions\Old\OldMemberAction.cs'' could not be > >> found > >> error CS2001: Source file `Actions\MemberGroup.cs'' could not be found > >> error CS2001: Source file `Actions\RuleSet.cs'' could not be found > >> error CS2001: Source file `Actions\RuleTree.cs'' could not be found > >> error CS2001: Source file `Actions\Old\OldSetMemberAction.cs'' could not > be > >> found > >> error CS2001: Source file `Actions\SmallRuleSet.cs'' could not be found > >> error CS2001: Source file `Actions\RuleBuilder.cs'' could not be found > >> error CS2001: Source file `Actions\TemplatedValue.cs'' could not be found > >> error CS2001: Source file `Actions\TopNamespaceTracker.cs'' could not be > >> found > >> error CS2001: Source file `Actions\TrackerTypes.cs'' could not be found > >> error CS2001: Source file `Actions\TypeGroup.cs'' could not be found > >> error CS2001: Source file `Actions\TypeTracker.cs'' could not be found > >> error CS2001: Source file `Actions\UpdateDelegates.cs'' could not be > found > >> error CS2001: Source file `Ast\Annotations.cs'' could not be found > >> error CS2001: Source file `Actions\Matchmaker.Generated.cs'' could not be > >> found > >> error CS2001: Source file `Compiler\Closure.cs'' could not be found > >> error CS2001: Source file `Ast\AutoRuleTemplate.cs'' could not be found > >> error CS2001: Source file `Compiler\HoistedLocals.cs'' could not be found > >> error CS2001: Source file `Compiler\CompilerScope.cs'' could not be found > >> error CS2001: Source file `Compiler\GeneratorInfo.cs'' could not be found > >> error CS2001: Source file `Generation\IExpressionSerializable.cs'' could > >> not be found > >> error CS2001: Source file `Ast\InvocationExpression.cs'' could not be > found > >> error CS2001: Source file `Ast\LabelTarget.cs'' could not be found > >> error CS2001: Source file `Ast\OpAssignmentExpression.cs'' could not be > >> found > >> error CS2001: Source file `Ast\ParameterExpression.cs'' could not be > found > >> error CS2001: Source file `Compiler\StackSpiller.Temps.cs'' could not be > >> found > >> error CS2001: Source file `Generation\ToDiskRewriter.cs'' could not be > >> found > >> error CS2001: Source file `Actions\Stitcher.cs'' could not be found > >> error CS2001: Source file `Ast\TreeComparer.cs'' could not be found > >> error CS2001: Source file `Compiler\ExpressionTreeVisitor.cs'' could not > be > >> found > >> error CS2001: Source file `Compiler\ExpressionTreeVisitor.Generated.cs'' > >> could not be found > >> error CS2001: Source file `Runtime\OptimizedScriptCode.cs'' could not be > >> found > >> error CS2001: Source file `Generation\GlobalLookupRewriter.cs'' could not > >> be found > >> error CS2001: Source file `Hosting\EngineOptions.cs'' could not be found > >> error CS2001: Source file `Runtime\LanguageBoundTextContentProvider.cs'' > >> could not be found > >> error CS2001: Source file `Runtime\AssemblyTypeNames.cs'' could not be > >> found > >> error CS2001: Source file `Compiler\StackSpiller.Generated.cs'' could not > >> be found > >> error CS2001: Source file `Compiler\ExpressionWriter.cs'' could not be > >> found > >> error CS2001: Source file `Ast\BinaryExpression.cs'' could not be found > >> error CS2001: Source file `Ast\CatchBlock.cs'' could not be found > >> error CS2001: Source file `Compiler\CatchRecord.cs'' could not be found > >> error CS2001: Source file `Compiler\LambdaCompiler.Address.cs'' could not > >> be found > >> error CS2001: Source file `Compiler\LambdaCompiler.Lambda.cs'' could not > be > >> found > >> error CS2001: Source file `Compiler\LambdaCompiler.Expressions.cs'' could > >> not be found > >> error CS2001: Source file `Compiler\LambdaCompiler.Logical.cs'' could not > >> be found > >> error CS2001: Source file `Compiler\LambdaCompiler.Statements.cs'' could > >> not be found > >> error CS2001: Source file `Compiler\LambdaCompiler.cs'' could not be > found > >> error CS2001: Source file `Compiler\ConstantCheck.cs'' could not be found > >> error CS2001: Source file `Compiler\StackSpiller.cs'' could not be found > >> error CS2001: Source file `Ast\LocalScopeExpression.cs'' could not be > found > >> error CS2001: Source file `Compiler\TryStatementInfo.cs'' could not be > >> found > >> error CS2001: Source file `Compiler\VariableBinder.cs'' could not be > found > >> error CS2001: Source file `Ast\DoStatementBuilder.cs'' could not be found > >> error CS2001: Source file `Ast\IfStatementBuilder.cs'' could not be found > >> error CS2001: Source file `Ast\ExpressionType.cs'' could not be found > >> error CS2001: Source file `Ast\TypeUtils.cs'' could not be found > >> error CS2001: Source file `Runtime\DlrCachedCodeAttribute.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\DocumentationAttribute.cs'' could not > be > >> found > >> error CS2001: Source file `Generation\ConversionResult.cs'' could not be > >> found > >> error CS2001: Source file `Generation\DebugILGen.cs'' could not be found > >> error CS2001: Source file `Generation\DynamicILGen.cs'' could not be > found > >> error CS2001: Source file `Generation\ILGen.cs'' could not be found > >> error CS2001: Source file `Compiler\TryFlowAnalyzer.cs'' could not be > found > >> error CS2001: Source file `Ast\TryStatementBuilder.cs'' could not be > found > >> error CS2001: Source file `Ast\TypeBinaryExpression.cs'' could not be > found > >> error CS2001: Source file `Ast\UnaryExpression.cs'' could not be found > >> error CS2001: Source file `Ast\LambdaExpression.cs'' could not be found > >> error CS2001: Source file `Ast\DeleteExpression.cs'' could not be found > >> error CS2001: Source file `Ast\ActionExpression.cs'' could not be found > >> error CS2001: Source file `Actions\ArgumentKind.cs'' could not be found > >> error CS2001: Source file `Ast\Block.cs'' could not be found > >> error CS2001: Source file `Ast\AssignmentExpression.cs'' could not be > found > >> error CS2001: Source file `Ast\BreakStatement.cs'' could not be found > >> error CS2001: Source file `Actions\CallSite.cs'' could not be found > >> error CS2001: Source file `Actions\DynamicSiteTargets.Generated.cs'' > could > >> not be found > >> error CS2001: Source file `Ast\ConditionalExpression.cs'' could not be > >> found > >> error CS2001: Source file `Ast\ConstantExpression.cs'' could not be found > >> error CS2001: Source file `Ast\ContinueStatement.cs'' could not be found > >> error CS2001: Source file `Ast\MemberBinding.cs'' could not be found > >> error CS2001: Source file `Ast\NewExpression.cs'' could not be found > >> error CS2001: Source file `Ast\DoStatement.cs'' could not be found > >> error CS2001: Source file `Ast\EmptyStatement.cs'' could not be found > >> error CS2001: Source file `Ast\IfStatementTest.cs'' could not be found > >> error CS2001: Source file `Ast\LabeledStatement.cs'' could not be found > >> error CS2001: Source file `Ast\MemberExpression.cs'' could not be found > >> error CS2001: Source file `Ast\NewArrayExpression.cs'' could not be found > >> error CS2001: Source file `Ast\DebugStatement.cs'' could not be found > >> error CS2001: Source file `Ast\Expression.cs'' could not be found > >> error CS2001: Source file `Ast\MethodCallExpression.cs'' could not be > found > >> error CS2001: Source file `Ast\ReturnStatement.cs'' could not be found > >> error CS2001: Source file `Ast\ScopeExpression.cs'' could not be found > >> error CS2001: Source file `Ast\SwitchCase.cs'' could not be found > >> error CS2001: Source file `Ast\SwitchStatement.cs'' could not be found > >> error CS2001: Source file `Ast\ThrowStatement.cs'' could not be found > >> error CS2001: Source file `Ast\TryStatement.cs'' could not be found > >> error CS2001: Source file `Ast\VariableExpression.cs'' could not be found > >> error CS2001: Source file `Ast\LoopStatement.cs'' could not be found > >> error CS2001: Source file `Compiler\YieldLabelBuilder.cs'' could not be > >> found > >> error CS2001: Source file `Ast\YieldStatement.cs'' could not be found > >> error CS2001: Source file `Compiler\YieldTarget.cs'' could not be found > >> error CS2001: Source file `Runtime\BinderType.cs'' could not be found > >> error CS2001: Source file `Runtime\DynamicRuntimeHostingProvider.cs'' > could > >> not be found > >> error CS2001: Source file `Runtime\CallTargets.cs'' could not be found > >> error CS2001: Source file `Generation\GlobalStaticFieldRewriter.cs'' > could > >> not be found > >> error CS2001: Source file `Generation\GlobalArrayRewriter.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\LocalVariableAccess.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\MultiRuntimeAwareAttribute.cs'' could > >> not be found > >> error CS2001: Source file `Runtime\NullTextContentProvider.cs'' could not > >> be found > >> error CS2001: Source file `Runtime\ScopeExtension.cs'' could not be found > >> error CS2001: Source file `Generation\NarrowingLevel.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\ScriptCode.cs'' could not be found > >> error CS2001: Source file `Runtime\DlrConfiguration.cs'' could not be > found > >> error CS2001: Source file `Runtime\SourceStringContentProvider.cs'' could > >> not be found > >> error CS2001: Source file `Ast\SourceFileInformation.cs'' could not be > >> found > >> error CS2001: Source file `Ast\SourceLocation.cs'' could not be found > >> error CS2001: Source file `Ast\SourceSpan.cs'' could not be found > >> error CS2001: Source file `Runtime\OperationFailed.cs'' could not be > found > >> error CS2001: Source file `Runtime\OperatorSlotAttribute.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\CustomSymbolDictionary.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\ExplicitConversionMethodAttribute.cs'' > >> could not be found > >> error CS2001: Source file `Runtime\Extensible.cs'' could not be found > >> error CS2001: Source file `Runtime\ExtensionTypeAttribute.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\ExtraKeyEnumerator.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\ExceptionHelpers.cs'' could not be > found > >> error CS2001: Source file `Generation\ParameterInfoWrapper.cs'' could not > >> be found > >> error CS2001: Source file `Runtime\ImplicitConversionMethodAttribute.cs'' > >> could not be found > >> error CS2001: Source file `Runtime\LanguageContext.cs'' could not be > found > >> error CS2001: Source file `Runtime\ReflectionCache.cs'' could not be > found > >> error CS2001: Source file `Runtime\ScopeMemberAttributes.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\ModuleChangeEventArgs.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\ModuleChangeEventType.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\ModuleGlobalCache.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\GlobalsDictionary.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\ModuleGlobalWrapper.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\Scope.cs'' could not be found > >> error CS2001: Source file `Runtime\NotNullAttribute.cs'' could not be > found > >> error CS2001: Source file `Runtime\ScriptDomainManager.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\DynamicStackFrame.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\SharedIO.cs'' could not be found > >> error CS2001: Source file `Runtime\StaticExtensionMethodAttribute.cs'' > >> could not be found > >> error CS2001: Source file `Runtime\SymbolDictionary.cs'' could not be > found > >> error CS2001: Source file `Runtime\BaseSymbolDictionary.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\TransformDictEnumerator.cs'' could not > >> be found > >> error CS2001: Source file `Runtime\UnboundNameException.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\Generator.cs'' could not be found > >> error CS2001: Source file `Generation\Snippets.cs'' could not be found > >> error CS2001: Source file `Runtime\RuntimeHelpers.cs'' could not be found > >> error CS2001: Source file `Generation\AssemblyGen.cs'' could not be found > >> error CS2001: Source file `Generation\CompilerHelpers.cs'' could not be > >> found > >> error CS2001: Source file `Generation\Targets.cs'' could not be found > >> error CS2001: Source file `Generation\TypeGen.cs'' could not be found > >> error CS2001: Source file `Runtime\IMembersList.cs'' could not be found > >> error CS2001: Source file `Runtime\IDynamicObject.cs'' could not be found > >> error CS2001: Source file `Runtime\ContextId.cs'' could not be found > >> error CS2001: Source file `Runtime\PropertyMethodAttribute.cs'' could not > >> be found > >> error CS2001: Source file `Runtime\CodeContext.cs'' could not be found > >> error CS2001: Source file `Actions\UpdateDelegates.Generated.cs'' could > not > >> be found > >> error CS2001: Source file `Utils\Action.cs'' could not be found > >> error CS2001: Source file `Utils\ArrayUtils.cs'' could not be found > >> error CS2001: Source file `Utils\AssemblyQualifiedTypeName.cs'' could not > >> be found > >> error CS2001: Source file `Utils\Assert.cs'' could not be found > >> error CS2001: Source file `Utils\CheckedDictionaryEnumerator.cs'' could > not > >> be found > >> error CS2001: Source file `Utils\CollectionUtils.cs'' could not be found > >> error CS2001: Source file `Utils\ConsoleStreamType.cs'' could not be > found > >> error CS2001: Source file `Utils\ContractUtils.cs'' could not be found > >> error CS2001: Source file `Utils\DictionaryUnionEnumerator.cs'' could not > >> be found > >> error CS2001: Source file `Utils\ExceptionFactory.Generated.cs'' could > not > >> be found > >> error CS2001: Source file `Utils\ExceptionUtils.cs'' could not be found > >> error CS2001: Source file `Utils\Extension.cs'' could not be found > >> error CS2001: Source file `Utils\ReadOnlyDictionary.cs'' could not be > found > >> error CS2001: Source file `Utils\ReferenceEqualityComparer.cs'' could not > >> be found > >> error CS2001: Source file `Utils\Function.cs'' could not be found > >> error CS2001: Source file `Utils\IOUtils.cs'' could not be found > >> error CS2001: Source file `Utils\ListStack.cs'' could not be found > >> error CS2001: Source file `Utils\ReflectionUtils.cs'' could not be found > >> error CS2001: Source file `Utils\StringUtils.cs'' could not be found > >> error CS2001: Source file `Utils\StrongBox.cs'' could not be found > >> error CS2001: Source file `Utils\SynchronizedDictionary.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\Operators.cs'' could not be found > >> error CS2001: Source file `Properties\AssemblyInfo.cs'' could not be > found > >> error CS2001: Source file `Runtime\Uninitialized.cs'' could not be found > >> error CS2001: Source file `Utils\TextStream.cs'' could not be found > >> I know I did a successful checkout, could something be wrong with the > >> Rakefile? I''m on r127 btw, not r126. > >> Thanks again! > >> Joe > >> On Tue, Aug 5, 2008 at 8:46 PM, Charles Oliver Nutter > >> <charles.nutter at sun.com> wrote: > >>> > >>> Sanghyeon Seo wrote: > >>>> > >>>> 2008/8/6 Jim Deville <jdeville at microsoft.com>: > >>>>> > >>>>> Come to think of it. Is there a reason to call ruby.exe on Windows? > >>>>> Windows has the PATHEXT variable, and it will find ruby.exe if you > call ruby > >>>>> in the right location. Am I missing something? Or should we make the > runners > >>>>> call ruby instead of ruby.exe? > >>>> > >>>> This is true. Just executing "ruby" will do the right thing both on > >>>> Windows and UNIX. I thought the idea was to warn users if they don''t > >>>> have Ruby installed, or if there are more than one Ruby installations. > >>>> So I did the minimally intrusive change to keep that. > >>> > >>> Bah, just use whatever PATH finds. > >>> > >>> - Charlie > >>> _______________________________________________ > >>> Ironruby-core mailing list > >>> Ironruby-core at rubyforge.org > >>> http://rubyforge.org/mailman/listinfo/ironruby-core > >> > >> > >> > >> -- > >> joe fiorini > >> http://www.faithfulgeek.org > >> // freelancing & knowledge sharing > >> > >> _______________________________________________ > >> Ironruby-core mailing list > >> Ironruby-core at rubyforge.org > >> http://rubyforge.org/mailman/listinfo/ironruby-core > >> > > > > > > > > -- > > joe fiorini > > http://www.faithfulgeek.org > > // freelancing & knowledge sharing > > > > _______________________________________________ > > Ironruby-core mailing list > > Ironruby-core at rubyforge.org > > http://rubyforge.org/mailman/listinfo/ironruby-core > > > > > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-core >-- joe fiorini http://www.faithfulgeek.org // freelancing & knowledge sharing -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20080807/7760e5fe/attachment-0001.html>
Yes, that''s definitely part of the goal. From: ironruby-core-bounces at rubyforge.org [mailto:ironruby-core-bounces at rubyforge.org] On Behalf Of Joe Fiorini Sent: Thursday, August 07, 2008 5:46 AM To: ironruby-core at rubyforge.org Subject: Re: [Ironruby-core] Can''t build under Mono Is it going to stay that way? I was very excited to start running some ASP.NET<http://ASP.NET> MVC demos using IronRuby on my Mac :). Is it part of the goal to stay Mono-compatible? On Thu, Aug 7, 2008 at 2:09 AM, Tobias H. Michaelsen <tobias.michaelsen at gmail.com<mailto:tobias.michaelsen at gmail.com>> wrote: Not just case sensitivity, but also path separators :( I started on a rewrite of paths a while back, but gave up because there was so many (and I think I ran into some additional problems). The code base has unfortunately drifted to become Windows-only. # Tobias 2008/8/7 Jim Deville <jdeville at microsoft.com<mailto:jdeville at microsoft.com>>:> Yep, case sensitivity. I''ve ran into it too, but haven''t fixed it. Anyone > have a patch for this? > > -----Original Message----- > From: "Joe Fiorini" <joe at faithfulgeek.org<mailto:joe at faithfulgeek.org>> > To: "ironruby-core at rubyforge.org<mailto:ironruby-core at rubyforge.org>" <ironruby-core at rubyforge.org<mailto:ironruby-core at rubyforge.org>> > Sent: 8/6/08 5:26 PM > Subject: Re: [Ironruby-core] Can''t build under Mono > > Mac 10.5.4 > On Wed, Aug 6, 2008 at 8:25 PM, Jim Deville <jdeville at microsoft.com<mailto:jdeville at microsoft.com>> wrote: >> >> Looks like case sensitivity. Are you on Mac or *nix? >> >> -----Original Message----- >> From: "Joe Fiorini" <joe at faithfulgeek.org<mailto:joe at faithfulgeek.org>> >> To: "ironruby-core at rubyforge.org<mailto:ironruby-core at rubyforge.org>" <ironruby-core at rubyforge.org<mailto:ironruby-core at rubyforge.org>> >> Sent: 8/6/08 5:09 PM >> Subject: Re: [Ironruby-core] Can''t build under Mono >> >> Thanks for all the suggestions! I''m using a .irconfig.rb in my home >> directory, which got me past that error. Now it''s tell me it can''t find a >> large number of source files, like so: >> error CS2001: Source file `Development/Open'' could not be found >> error CS2001: Source file `Source'' could not be found >> error CS2001: Source file `Projects/ironrubyRubyTestKey.snk'' could not be >> found >> error CS2001: Source file `Actions\ActionSelfExpression.cs'' could not be >> found >> error CS2001: Source file `Actions\ArgumentInfo.cs'' could not be found >> error CS2001: Source file `Actions\CallAction.cs'' could not be found >> error CS2001: Source file `Actions\CallSiteBinder.cs'' could not be found >> error CS2001: Source file `Actions\CallSignature.cs'' could not be found >> error CS2001: Source file `Actions\ConvertAction.cs'' could not be found >> error CS2001: Source file `Actions\CustomTracker.cs'' could not be found >> error CS2001: Source file `Actions\DeferMetaObject.cs'' could not be found >> error CS2001: Source file `Actions\DeleteMemberAction.cs'' could not be >> found >> error CS2001: Source file `Actions\ErrorMetaObject.cs'' could not be found >> error CS2001: Source file `Actions\GetMemberAction.cs'' could not be found >> error CS2001: Source file `Actions\IDynamicObject.cs'' could not be found >> error CS2001: Source file `Actions\InvokeAction.cs'' could not be found >> error CS2001: Source file `Actions\MatchCaller.cs'' could not be found >> error CS2001: Source file `Actions\MetaAction.cs'' could not be found >> error CS2001: Source file `Actions\MetaObject.cs'' could not be found >> error CS2001: Source file `Actions\Old\OldCreateInstanceAction.cs'' could >> not be found >> error CS2001: Source file `Actions\OperationAction.cs'' could not be found >> error CS2001: Source file `Actions\ParameterMetaObject.cs'' could not be >> found >> error CS2001: Source file `Actions\RestrictedMetaObject.cs'' could not be >> found >> error CS2001: Source file `Actions\Restrictions.cs'' could not be found >> error CS2001: Source file `Actions\SetMemberAction.cs'' could not be found >> error CS2001: Source file `Actions\SplatCallSite.cs'' could not be found >> error CS2001: Source file `Actions\SplatCallSite.Generated.cs'' could not >> be found >> error CS2001: Source file `Actions\StandardAction.cs'' could not be found >> error CS2001: Source file `Actions\StandardActionKind.cs'' could not be >> found >> error CS2001: Source file `Ast\Argument.cs'' could not be found >> error CS2001: Source file `Ast\CodeContextExpression.cs'' could not be >> found >> error CS2001: Source file `Ast\Extensions.cs'' could not be found >> error CS2001: Source file `Ast\IndexedPropertyExpression.cs'' could not be >> found >> error CS2001: Source file `Compiler\Set.cs'' could not be found >> error CS2001: Source file `Compiler\ExpressionQuoter.cs'' could not be >> found >> error CS2001: Source file `Ast\ElementInit.cs'' could not be found >> error CS2001: Source file `Ast\ListInitExpression.cs'' could not be found >> error CS2001: Source file `Ast\MemberAssignment.cs'' could not be found >> error CS2001: Source file `Ast\MemberInitExpression.cs'' could not be found >> error CS2001: Source file `Ast\MemberListBinding.cs'' could not be found >> error CS2001: Source file `Ast\MemberMemberBinding.cs'' could not be found >> error CS2001: Source file `Compiler\KeyedQueue.cs'' could not be found >> error CS2001: Source file `Compiler\LambdaCompiler.Binary.cs'' could not be >> found >> error CS2001: Source file `Compiler\LambdaCompiler.ControlFlow.cs'' could >> not be found >> error CS2001: Source file `Compiler\LambdaCompiler.Generated.cs'' could not >> be found >> error CS2001: Source file `Compiler\DynamicNodeRewriter.cs'' could not be >> found >> error CS2001: Source file `Ast\ILocalVariables.cs'' could not be found >> error CS2001: Source file `Compiler\CompilerScope.Storage.cs'' could not be >> found >> error CS2001: Source file `Compiler\LambdaCompiler.Unary.cs'' could not be >> found >> error CS2001: Source file `Compiler\StackSpiller.Bindings.cs'' could not be >> found >> error CS2001: Source file `Com\ArgBuilder.cs'' could not be found >> error CS2001: Source file `Com\BoundDispEvent.cs'' could not be found >> error CS2001: Source file `Com\ComClassMetaObject.cs'' could not be found >> error CS2001: Source file `Com\ComInvokeAction.cs'' could not be found >> error CS2001: Source file `Com\ComDispIds.cs'' could not be found >> error CS2001: Source file `Com\ComEventDesc.cs'' could not be found >> error CS2001: Source file `Com\ComEventSink.cs'' could not be found >> error CS2001: Source file `Com\ComEventSinkProxy.cs'' could not be found >> error CS2001: Source file `Com\ComEventSinksContainer.cs'' could not be >> found >> error CS2001: Source file `Com\ComHresults.cs'' could not be found >> error CS2001: Source file `Com\ComInterop.cs'' could not be found >> error CS2001: Source file `Com\ComMetaObject.cs'' could not be found >> error CS2001: Source file `Com\ComMethodDesc.cs'' could not be found >> error CS2001: Source file `Com\ComObject.cs'' could not be found >> error CS2001: Source file `Com\ComObjectWithTypeInfo.cs'' could not be >> found >> error CS2001: Source file `Com\ComParamDesc.cs'' could not be found >> error CS2001: Source file `Com\ComReferenceArgBuilder.cs'' could not be >> found >> error CS2001: Source file `Com\ComRuntimeHelpers.cs'' could not be found >> error CS2001: Source file `Com\ComType.cs'' could not be found >> error CS2001: Source file `Com\ComTypeClassDesc.cs'' could not be found >> error CS2001: Source file `Com\ComTypeDesc.cs'' could not be found >> error CS2001: Source file `Com\ComTypeEnumDesc.cs'' could not be found >> error CS2001: Source file `Com\ComTypeLibDesc.cs'' could not be found >> error CS2001: Source file `Com\ComTypeLibInfo.cs'' could not be found >> error CS2001: Source file `Com\ComTypeLibMemberDesc.cs'' could not be found >> error CS2001: Source file `Com\DispCallable.cs'' could not be found >> error CS2001: Source file `Com\DispCallableMetaObject.cs'' could not be >> found >> error CS2001: Source file `Com\DispMethod.cs'' could not be found >> error CS2001: Source file `Com\DispPropertyGet.cs'' could not be found >> error CS2001: Source file `Com\DispPropertyPut.cs'' could not be found >> error CS2001: Source file `Com\ExcepInfo.cs'' could not be found >> error CS2001: Source file `Com\GenericComMetaObject.cs'' could not be found >> error CS2001: Source file `Com\GenericComObject.cs'' could not be found >> error CS2001: Source file `Com\IDispatchComObject.cs'' could not be found >> error CS2001: Source file `Com\IDispatchMetaObject.cs'' could not be found >> error CS2001: Source file `Com\IDispatchObject.cs'' could not be found >> error CS2001: Source file `Com\InvokeBinder.cs'' could not be found >> error CS2001: Source file `Com\MetaUnwrappedComObject.cs'' could not be >> found >> error CS2001: Source file `Com\NullArgBuilder.cs'' could not be found >> error CS2001: Source file `Com\ReferenceArgBuilder.cs'' could not be found >> error CS2001: Source file `Com\ReturnBuilder.cs'' could not be found >> error CS2001: Source file `Com\SimpleArgBuilder.cs'' could not be found >> error CS2001: Source file `Com\TypeEnumMetaObject.cs'' could not be found >> error CS2001: Source file `Com\TypeInfoMetaObject.cs'' could not be found >> error CS2001: Source file `Com\TypeLibInfoMetaObject.cs'' could not be >> found >> error CS2001: Source file `Com\TypeLibMetaObject.cs'' could not be found >> error CS2001: Source file `Com\VarEnumSelector.cs'' could not be found >> error CS2001: Source file `Com\Variant.cs'' could not be found >> error CS2001: Source file `Com\VariantArray.cs'' could not be found >> error CS2001: Source file `Com\VariantBuilder.cs'' could not be found >> error CS2001: Source file `Generation\GlobalRewriter.cs'' could not be >> found >> error CS2001: Source file `Ast\GlobalVariableExpression.cs'' could not be >> found >> error CS2001: Source file `Generation\GlobalOptimizedRewriter.cs'' could >> not be found >> error CS2001: Source file `Actions\ExtensionMethodTracker.cs'' could not be >> found >> error CS2001: Source file `Actions\Old\OldDynamicAction.cs'' could not be >> found >> error CS2001: Source file `Actions\ActionBinder.cs'' could not be found >> error CS2001: Source file `Actions\BoundMemberTracker.cs'' could not be >> found >> error CS2001: Source file `Actions\ConstructorTracker.cs'' could not be >> found >> error CS2001: Source file `Actions\ErrorInfo.cs'' could not be found >> error CS2001: Source file `Actions\EventTracker.cs'' could not be found >> error CS2001: Source file `Actions\ExtensionPropertyTracker.cs'' could not >> be found >> error CS2001: Source file `Actions\FieldTracker.cs'' could not be found >> error CS2001: Source file `Actions\Matchmaker.cs'' could not be found >> error CS2001: Source file `Actions\MethodGroup.cs'' could not be found >> error CS2001: Source file `Actions\MethodTracker.cs'' could not be found >> error CS2001: Source file `Actions\RuleValidator.cs'' could not be found >> error CS2001: Source file `Actions\NamespaceTracker.cs'' could not be found >> error CS2001: Source file `Actions\NestedTypeTracker.cs'' could not be >> found >> error CS2001: Source file `Actions\PropertyTracker.cs'' could not be found >> error CS2001: Source file `Actions\ReflectedPropertyTracker.cs'' could not >> be found >> error CS2001: Source file `Actions\Rule.cs'' could not be found >> error CS2001: Source file `Actions\RuleCache.cs'' could not be found >> error CS2001: Source file `Actions\Old\OldCallAction.cs'' could not be >> found >> error CS2001: Source file `Actions\Old\OldConvertToAction.cs'' could not be >> found >> error CS2001: Source file `Actions\CreateAction.cs'' could not be found >> error CS2001: Source file `Actions\Old\OldDeleteMemberAction.cs'' could not >> be found >> error CS2001: Source file `Actions\DynamicSiteHelpers.Generated.cs'' could >> not be found >> error CS2001: Source file `Actions\Old\OldDoOperationAction.cs'' could not >> be found >> error CS2001: Source file `Actions\DynamicSiteHelpers.cs'' could not be >> found >> error CS2001: Source file `Actions\EmptyRuleSet.cs'' could not be found >> error CS2001: Source file `Actions\MemberTracker.cs'' could not be found >> error CS2001: Source file `Actions\Old\OldGetMemberAction.cs'' could not be >> found >> error CS2001: Source file `Actions\Old\OldInvokeMemberAction.cs'' could not >> be found >> error CS2001: Source file `Actions\Old\OldMemberAction.cs'' could not be >> found >> error CS2001: Source file `Actions\MemberGroup.cs'' could not be found >> error CS2001: Source file `Actions\RuleSet.cs'' could not be found >> error CS2001: Source file `Actions\RuleTree.cs'' could not be found >> error CS2001: Source file `Actions\Old\OldSetMemberAction.cs'' could not be >> found >> error CS2001: Source file `Actions\SmallRuleSet.cs'' could not be found >> error CS2001: Source file `Actions\RuleBuilder.cs'' could not be found >> error CS2001: Source file `Actions\TemplatedValue.cs'' could not be found >> error CS2001: Source file `Actions\TopNamespaceTracker.cs'' could not be >> found >> error CS2001: Source file `Actions\TrackerTypes.cs'' could not be found >> error CS2001: Source file `Actions\TypeGroup.cs'' could not be found >> error CS2001: Source file `Actions\TypeTracker.cs'' could not be found >> error CS2001: Source file `Actions\UpdateDelegates.cs'' could not be found >> error CS2001: Source file `Ast\Annotations.cs'' could not be found >> error CS2001: Source file `Actions\Matchmaker.Generated.cs'' could not be >> found >> error CS2001: Source file `Compiler\Closure.cs'' could not be found >> error CS2001: Source file `Ast\AutoRuleTemplate.cs'' could not be found >> error CS2001: Source file `Compiler\HoistedLocals.cs'' could not be found >> error CS2001: Source file `Compiler\CompilerScope.cs'' could not be found >> error CS2001: Source file `Compiler\GeneratorInfo.cs'' could not be found >> error CS2001: Source file `Generation\IExpressionSerializable.cs'' could >> not be found >> error CS2001: Source file `Ast\InvocationExpression.cs'' could not be found >> error CS2001: Source file `Ast\LabelTarget.cs'' could not be found >> error CS2001: Source file `Ast\OpAssignmentExpression.cs'' could not be >> found >> error CS2001: Source file `Ast\ParameterExpression.cs'' could not be found >> error CS2001: Source file `Compiler\StackSpiller.Temps.cs'' could not be >> found >> error CS2001: Source file `Generation\ToDiskRewriter.cs'' could not be >> found >> error CS2001: Source file `Actions\Stitcher.cs'' could not be found >> error CS2001: Source file `Ast\TreeComparer.cs'' could not be found >> error CS2001: Source file `Compiler\ExpressionTreeVisitor.cs'' could not be >> found >> error CS2001: Source file `Compiler\ExpressionTreeVisitor.Generated.cs'' >> could not be found >> error CS2001: Source file `Runtime\OptimizedScriptCode.cs'' could not be >> found >> error CS2001: Source file `Generation\GlobalLookupRewriter.cs'' could not >> be found >> error CS2001: Source file `Hosting\EngineOptions.cs'' could not be found >> error CS2001: Source file `Runtime\LanguageBoundTextContentProvider.cs'' >> could not be found >> error CS2001: Source file `Runtime\AssemblyTypeNames.cs'' could not be >> found >> error CS2001: Source file `Compiler\StackSpiller.Generated.cs'' could not >> be found >> error CS2001: Source file `Compiler\ExpressionWriter.cs'' could not be >> found >> error CS2001: Source file `Ast\BinaryExpression.cs'' could not be found >> error CS2001: Source file `Ast\CatchBlock.cs'' could not be found >> error CS2001: Source file `Compiler\CatchRecord.cs'' could not be found >> error CS2001: Source file `Compiler\LambdaCompiler.Address.cs'' could not >> be found >> error CS2001: Source file `Compiler\LambdaCompiler.Lambda.cs'' could not be >> found >> error CS2001: Source file `Compiler\LambdaCompiler.Expressions.cs'' could >> not be found >> error CS2001: Source file `Compiler\LambdaCompiler.Logical.cs'' could not >> be found >> error CS2001: Source file `Compiler\LambdaCompiler.Statements.cs'' could >> not be found >> error CS2001: Source file `Compiler\LambdaCompiler.cs'' could not be found >> error CS2001: Source file `Compiler\ConstantCheck.cs'' could not be found >> error CS2001: Source file `Compiler\StackSpiller.cs'' could not be found >> error CS2001: Source file `Ast\LocalScopeExpression.cs'' could not be found >> error CS2001: Source file `Compiler\TryStatementInfo.cs'' could not be >> found >> error CS2001: Source file `Compiler\VariableBinder.cs'' could not be found >> error CS2001: Source file `Ast\DoStatementBuilder.cs'' could not be found >> error CS2001: Source file `Ast\IfStatementBuilder.cs'' could not be found >> error CS2001: Source file `Ast\ExpressionType.cs'' could not be found >> error CS2001: Source file `Ast\TypeUtils.cs'' could not be found >> error CS2001: Source file `Runtime\DlrCachedCodeAttribute.cs'' could not be >> found >> error CS2001: Source file `Runtime\DocumentationAttribute.cs'' could not be >> found >> error CS2001: Source file `Generation\ConversionResult.cs'' could not be >> found >> error CS2001: Source file `Generation\DebugILGen.cs'' could not be found >> error CS2001: Source file `Generation\DynamicILGen.cs'' could not be found >> error CS2001: Source file `Generation\ILGen.cs'' could not be found >> error CS2001: Source file `Compiler\TryFlowAnalyzer.cs'' could not be found >> error CS2001: Source file `Ast\TryStatementBuilder.cs'' could not be found >> error CS2001: Source file `Ast\TypeBinaryExpression.cs'' could not be found >> error CS2001: Source file `Ast\UnaryExpression.cs'' could not be found >> error CS2001: Source file `Ast\LambdaExpression.cs'' could not be found >> error CS2001: Source file `Ast\DeleteExpression.cs'' could not be found >> error CS2001: Source file `Ast\ActionExpression.cs'' could not be found >> error CS2001: Source file `Actions\ArgumentKind.cs'' could not be found >> error CS2001: Source file `Ast\Block.cs'' could not be found >> error CS2001: Source file `Ast\AssignmentExpression.cs'' could not be found >> error CS2001: Source file `Ast\BreakStatement.cs'' could not be found >> error CS2001: Source file `Actions\CallSite.cs'' could not be found >> error CS2001: Source file `Actions\DynamicSiteTargets.Generated.cs'' could >> not be found >> error CS2001: Source file `Ast\ConditionalExpression.cs'' could not be >> found >> error CS2001: Source file `Ast\ConstantExpression.cs'' could not be found >> error CS2001: Source file `Ast\ContinueStatement.cs'' could not be found >> error CS2001: Source file `Ast\MemberBinding.cs'' could not be found >> error CS2001: Source file `Ast\NewExpression.cs'' could not be found >> error CS2001: Source file `Ast\DoStatement.cs'' could not be found >> error CS2001: Source file `Ast\EmptyStatement.cs'' could not be found >> error CS2001: Source file `Ast\IfStatementTest.cs'' could not be found >> error CS2001: Source file `Ast\LabeledStatement.cs'' could not be found >> error CS2001: Source file `Ast\MemberExpression.cs'' could not be found >> error CS2001: Source file `Ast\NewArrayExpression.cs'' could not be found >> error CS2001: Source file `Ast\DebugStatement.cs'' could not be found >> error CS2001: Source file `Ast\Expression.cs'' could not be found >> error CS2001: Source file `Ast\MethodCallExpression.cs'' could not be found >> error CS2001: Source file `Ast\ReturnStatement.cs'' could not be found >> error CS2001: Source file `Ast\ScopeExpression.cs'' could not be found >> error CS2001: Source file `Ast\SwitchCase.cs'' could not be found >> error CS2001: Source file `Ast\SwitchStatement.cs'' could not be found >> error CS2001: Source file `Ast\ThrowStatement.cs'' could not be found >> error CS2001: Source file `Ast\TryStatement.cs'' could not be found >> error CS2001: Source file `Ast\VariableExpression.cs'' could not be found >> error CS2001: Source file `Ast\LoopStatement.cs'' could not be found >> error CS2001: Source file `Compiler\YieldLabelBuilder.cs'' could not be >> found >> error CS2001: Source file `Ast\YieldStatement.cs'' could not be found >> error CS2001: Source file `Compiler\YieldTarget.cs'' could not be found >> error CS2001: Source file `Runtime\BinderType.cs'' could not be found >> error CS2001: Source file `Runtime\DynamicRuntimeHostingProvider.cs'' could >> not be found >> error CS2001: Source file `Runtime\CallTargets.cs'' could not be found >> error CS2001: Source file `Generation\GlobalStaticFieldRewriter.cs'' could >> not be found >> error CS2001: Source file `Generation\GlobalArrayRewriter.cs'' could not be >> found >> error CS2001: Source file `Runtime\LocalVariableAccess.cs'' could not be >> found >> error CS2001: Source file `Runtime\MultiRuntimeAwareAttribute.cs'' could >> not be found >> error CS2001: Source file `Runtime\NullTextContentProvider.cs'' could not >> be found >> error CS2001: Source file `Runtime\ScopeExtension.cs'' could not be found >> error CS2001: Source file `Generation\NarrowingLevel.cs'' could not be >> found >> error CS2001: Source file `Runtime\ScriptCode.cs'' could not be found >> error CS2001: Source file `Runtime\DlrConfiguration.cs'' could not be found >> error CS2001: Source file `Runtime\SourceStringContentProvider.cs'' could >> not be found >> error CS2001: Source file `Ast\SourceFileInformation.cs'' could not be >> found >> error CS2001: Source file `Ast\SourceLocation.cs'' could not be found >> error CS2001: Source file `Ast\SourceSpan.cs'' could not be found >> error CS2001: Source file `Runtime\OperationFailed.cs'' could not be found >> error CS2001: Source file `Runtime\OperatorSlotAttribute.cs'' could not be >> found >> error CS2001: Source file `Runtime\CustomSymbolDictionary.cs'' could not be >> found >> error CS2001: Source file `Runtime\ExplicitConversionMethodAttribute.cs'' >> could not be found >> error CS2001: Source file `Runtime\Extensible.cs'' could not be found >> error CS2001: Source file `Runtime\ExtensionTypeAttribute.cs'' could not be >> found >> error CS2001: Source file `Runtime\ExtraKeyEnumerator.cs'' could not be >> found >> error CS2001: Source file `Runtime\ExceptionHelpers.cs'' could not be found >> error CS2001: Source file `Generation\ParameterInfoWrapper.cs'' could not >> be found >> error CS2001: Source file `Runtime\ImplicitConversionMethodAttribute.cs'' >> could not be found >> error CS2001: Source file `Runtime\LanguageContext.cs'' could not be found >> error CS2001: Source file `Runtime\ReflectionCache.cs'' could not be found >> error CS2001: Source file `Runtime\ScopeMemberAttributes.cs'' could not be >> found >> error CS2001: Source file `Runtime\ModuleChangeEventArgs.cs'' could not be >> found >> error CS2001: Source file `Runtime\ModuleChangeEventType.cs'' could not be >> found >> error CS2001: Source file `Runtime\ModuleGlobalCache.cs'' could not be >> found >> error CS2001: Source file `Runtime\GlobalsDictionary.cs'' could not be >> found >> error CS2001: Source file `Runtime\ModuleGlobalWrapper.cs'' could not be >> found >> error CS2001: Source file `Runtime\Scope.cs'' could not be found >> error CS2001: Source file `Runtime\NotNullAttribute.cs'' could not be found >> error CS2001: Source file `Runtime\ScriptDomainManager.cs'' could not be >> found >> error CS2001: Source file `Runtime\DynamicStackFrame.cs'' could not be >> found >> error CS2001: Source file `Runtime\SharedIO.cs'' could not be found >> error CS2001: Source file `Runtime\StaticExtensionMethodAttribute.cs'' >> could not be found >> error CS2001: Source file `Runtime\SymbolDictionary.cs'' could not be found >> error CS2001: Source file `Runtime\BaseSymbolDictionary.cs'' could not be >> found >> error CS2001: Source file `Runtime\TransformDictEnumerator.cs'' could not >> be found >> error CS2001: Source file `Runtime\UnboundNameException.cs'' could not be >> found >> error CS2001: Source file `Runtime\Generator.cs'' could not be found >> error CS2001: Source file `Generation\Snippets.cs'' could not be found >> error CS2001: Source file `Runtime\RuntimeHelpers.cs'' could not be found >> error CS2001: Source file `Generation\AssemblyGen.cs'' could not be found >> error CS2001: Source file `Generation\CompilerHelpers.cs'' could not be >> found >> error CS2001: Source file `Generation\Targets.cs'' could not be found >> error CS2001: Source file `Generation\TypeGen.cs'' could not be found >> error CS2001: Source file `Runtime\IMembersList.cs'' could not be found >> error CS2001: Source file `Runtime\IDynamicObject.cs'' could not be found >> error CS2001: Source file `Runtime\ContextId.cs'' could not be found >> error CS2001: Source file `Runtime\PropertyMethodAttribute.cs'' could not >> be found >> error CS2001: Source file `Runtime\CodeContext.cs'' could not be found >> error CS2001: Source file `Actions\UpdateDelegates.Generated.cs'' could not >> be found >> error CS2001: Source file `Utils\Action.cs'' could not be found >> error CS2001: Source file `Utils\ArrayUtils.cs'' could not be found >> error CS2001: Source file `Utils\AssemblyQualifiedTypeName.cs'' could not >> be found >> error CS2001: Source file `Utils\Assert.cs'' could not be found >> error CS2001: Source file `Utils\CheckedDictionaryEnumerator.cs'' could not >> be found >> error CS2001: Source file `Utils\CollectionUtils.cs'' could not be found >> error CS2001: Source file `Utils\ConsoleStreamType.cs'' could not be found >> error CS2001: Source file `Utils\ContractUtils.cs'' could not be found >> error CS2001: Source file `Utils\DictionaryUnionEnumerator.cs'' could not >> be found >> error CS2001: Source file `Utils\ExceptionFactory.Generated.cs'' could not >> be found >> error CS2001: Source file `Utils\ExceptionUtils.cs'' could not be found >> error CS2001: Source file `Utils\Extension.cs'' could not be found >> error CS2001: Source file `Utils\ReadOnlyDictionary.cs'' could not be found >> error CS2001: Source file `Utils\ReferenceEqualityComparer.cs'' could not >> be found >> error CS2001: Source file `Utils\Function.cs'' could not be found >> error CS2001: Source file `Utils\IOUtils.cs'' could not be found >> error CS2001: Source file `Utils\ListStack.cs'' could not be found >> error CS2001: Source file `Utils\ReflectionUtils.cs'' could not be found >> error CS2001: Source file `Utils\StringUtils.cs'' could not be found >> error CS2001: Source file `Utils\StrongBox.cs'' could not be found >> error CS2001: Source file `Utils\SynchronizedDictionary.cs'' could not be >> found >> error CS2001: Source file `Runtime\Operators.cs'' could not be found >> error CS2001: Source file `Properties\AssemblyInfo.cs'' could not be found >> error CS2001: Source file `Runtime\Uninitialized.cs'' could not be found >> error CS2001: Source file `Utils\TextStream.cs'' could not be found >> I know I did a successful checkout, could something be wrong with the >> Rakefile? I''m on r127 btw, not r126. >> Thanks again! >> Joe >> On Tue, Aug 5, 2008 at 8:46 PM, Charles Oliver Nutter >> <charles.nutter at sun.com<mailto:charles.nutter at sun.com>> wrote: >>> >>> Sanghyeon Seo wrote: >>>> >>>> 2008/8/6 Jim Deville <jdeville at microsoft.com<mailto:jdeville at microsoft.com>>: >>>>> >>>>> Come to think of it. Is there a reason to call ruby.exe on Windows? >>>>> Windows has the PATHEXT variable, and it will find ruby.exe if you call ruby >>>>> in the right location. Am I missing something? Or should we make the runners >>>>> call ruby instead of ruby.exe? >>>> >>>> This is true. Just executing "ruby" will do the right thing both on >>>> Windows and UNIX. I thought the idea was to warn users if they don''t >>>> have Ruby installed, or if there are more than one Ruby installations. >>>> So I did the minimally intrusive change to keep that. >>> >>> Bah, just use whatever PATH finds. >>> >>> - Charlie >>> _______________________________________________ >>> Ironruby-core mailing list >>> Ironruby-core at rubyforge.org<mailto:Ironruby-core at rubyforge.org> >>> http://rubyforge.org/mailman/listinfo/ironruby-core >> >> >> >> -- >> joe fiorini >> http://www.faithfulgeek.org >> // freelancing & knowledge sharing >> >> _______________________________________________ >> Ironruby-core mailing list >> Ironruby-core at rubyforge.org<mailto:Ironruby-core at rubyforge.org> >> http://rubyforge.org/mailman/listinfo/ironruby-core >> > > > > -- > joe fiorini > http://www.faithfulgeek.org > // freelancing & knowledge sharing > > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org<mailto:Ironruby-core at rubyforge.org> > http://rubyforge.org/mailman/listinfo/ironruby-core > >_______________________________________________ Ironruby-core mailing list Ironruby-core at rubyforge.org<mailto:Ironruby-core at rubyforge.org> http://rubyforge.org/mailman/listinfo/ironruby-core -- joe fiorini http://www.faithfulgeek.org // freelancing & knowledge sharing -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20080807/0abdf594/attachment-0001.html>
The codebase is still mono compatible (AFAIK), but the build scripts have definitely become windows-centric. On Thu, Aug 7, 2008 at 2:09 AM, Tobias H. Michaelsen < tobias.michaelsen at gmail.com> wrote:> Not just case sensitivity, but also path separators :( > I started on a rewrite of paths a while back, but gave up because > there was so many (and I think I ran into some additional problems). > The code base has unfortunately drifted to become Windows-only. > > > # Tobias > > 2008/8/7 Jim Deville <jdeville at microsoft.com>: > > Yep, case sensitivity. I''ve ran into it too, but haven''t fixed it. Anyone > > have a patch for this? > > > > -----Original Message----- > > From: "Joe Fiorini" <joe at faithfulgeek.org> > > To: "ironruby-core at rubyforge.org" <ironruby-core at rubyforge.org> > > Sent: 8/6/08 5:26 PM > > Subject: Re: [Ironruby-core] Can''t build under Mono > > > > Mac 10.5.4 > > On Wed, Aug 6, 2008 at 8:25 PM, Jim Deville <jdeville at microsoft.com> > wrote: > >> > >> Looks like case sensitivity. Are you on Mac or *nix? > >> > >> -----Original Message----- > >> From: "Joe Fiorini" <joe at faithfulgeek.org> > >> To: "ironruby-core at rubyforge.org" <ironruby-core at rubyforge.org> > >> Sent: 8/6/08 5:09 PM > >> Subject: Re: [Ironruby-core] Can''t build under Mono > >> > >> Thanks for all the suggestions! I''m using a .irconfig.rb in my home > >> directory, which got me past that error. Now it''s tell me it can''t find > a > >> large number of source files, like so: > >> error CS2001: Source file `Development/Open'' could not be found > >> error CS2001: Source file `Source'' could not be found > >> error CS2001: Source file `Projects/ironrubyRubyTestKey.snk'' could not > be > >> found > >> error CS2001: Source file `Actions\ActionSelfExpression.cs'' could not be > >> found > >> error CS2001: Source file `Actions\ArgumentInfo.cs'' could not be found > >> error CS2001: Source file `Actions\CallAction.cs'' could not be found > >> error CS2001: Source file `Actions\CallSiteBinder.cs'' could not be found > >> error CS2001: Source file `Actions\CallSignature.cs'' could not be found > >> error CS2001: Source file `Actions\ConvertAction.cs'' could not be found > >> error CS2001: Source file `Actions\CustomTracker.cs'' could not be found > >> error CS2001: Source file `Actions\DeferMetaObject.cs'' could not be > found > >> error CS2001: Source file `Actions\DeleteMemberAction.cs'' could not be > >> found > >> error CS2001: Source file `Actions\ErrorMetaObject.cs'' could not be > found > >> error CS2001: Source file `Actions\GetMemberAction.cs'' could not be > found > >> error CS2001: Source file `Actions\IDynamicObject.cs'' could not be found > >> error CS2001: Source file `Actions\InvokeAction.cs'' could not be found > >> error CS2001: Source file `Actions\MatchCaller.cs'' could not be found > >> error CS2001: Source file `Actions\MetaAction.cs'' could not be found > >> error CS2001: Source file `Actions\MetaObject.cs'' could not be found > >> error CS2001: Source file `Actions\Old\OldCreateInstanceAction.cs'' could > >> not be found > >> error CS2001: Source file `Actions\OperationAction.cs'' could not be > found > >> error CS2001: Source file `Actions\ParameterMetaObject.cs'' could not be > >> found > >> error CS2001: Source file `Actions\RestrictedMetaObject.cs'' could not be > >> found > >> error CS2001: Source file `Actions\Restrictions.cs'' could not be found > >> error CS2001: Source file `Actions\SetMemberAction.cs'' could not be > found > >> error CS2001: Source file `Actions\SplatCallSite.cs'' could not be found > >> error CS2001: Source file `Actions\SplatCallSite.Generated.cs'' could not > >> be found > >> error CS2001: Source file `Actions\StandardAction.cs'' could not be found > >> error CS2001: Source file `Actions\StandardActionKind.cs'' could not be > >> found > >> error CS2001: Source file `Ast\Argument.cs'' could not be found > >> error CS2001: Source file `Ast\CodeContextExpression.cs'' could not be > >> found > >> error CS2001: Source file `Ast\Extensions.cs'' could not be found > >> error CS2001: Source file `Ast\IndexedPropertyExpression.cs'' could not > be > >> found > >> error CS2001: Source file `Compiler\Set.cs'' could not be found > >> error CS2001: Source file `Compiler\ExpressionQuoter.cs'' could not be > >> found > >> error CS2001: Source file `Ast\ElementInit.cs'' could not be found > >> error CS2001: Source file `Ast\ListInitExpression.cs'' could not be found > >> error CS2001: Source file `Ast\MemberAssignment.cs'' could not be found > >> error CS2001: Source file `Ast\MemberInitExpression.cs'' could not be > found > >> error CS2001: Source file `Ast\MemberListBinding.cs'' could not be found > >> error CS2001: Source file `Ast\MemberMemberBinding.cs'' could not be > found > >> error CS2001: Source file `Compiler\KeyedQueue.cs'' could not be found > >> error CS2001: Source file `Compiler\LambdaCompiler.Binary.cs'' could not > be > >> found > >> error CS2001: Source file `Compiler\LambdaCompiler.ControlFlow.cs'' could > >> not be found > >> error CS2001: Source file `Compiler\LambdaCompiler.Generated.cs'' could > not > >> be found > >> error CS2001: Source file `Compiler\DynamicNodeRewriter.cs'' could not be > >> found > >> error CS2001: Source file `Ast\ILocalVariables.cs'' could not be found > >> error CS2001: Source file `Compiler\CompilerScope.Storage.cs'' could not > be > >> found > >> error CS2001: Source file `Compiler\LambdaCompiler.Unary.cs'' could not > be > >> found > >> error CS2001: Source file `Compiler\StackSpiller.Bindings.cs'' could not > be > >> found > >> error CS2001: Source file `Com\ArgBuilder.cs'' could not be found > >> error CS2001: Source file `Com\BoundDispEvent.cs'' could not be found > >> error CS2001: Source file `Com\ComClassMetaObject.cs'' could not be found > >> error CS2001: Source file `Com\ComInvokeAction.cs'' could not be found > >> error CS2001: Source file `Com\ComDispIds.cs'' could not be found > >> error CS2001: Source file `Com\ComEventDesc.cs'' could not be found > >> error CS2001: Source file `Com\ComEventSink.cs'' could not be found > >> error CS2001: Source file `Com\ComEventSinkProxy.cs'' could not be found > >> error CS2001: Source file `Com\ComEventSinksContainer.cs'' could not be > >> found > >> error CS2001: Source file `Com\ComHresults.cs'' could not be found > >> error CS2001: Source file `Com\ComInterop.cs'' could not be found > >> error CS2001: Source file `Com\ComMetaObject.cs'' could not be found > >> error CS2001: Source file `Com\ComMethodDesc.cs'' could not be found > >> error CS2001: Source file `Com\ComObject.cs'' could not be found > >> error CS2001: Source file `Com\ComObjectWithTypeInfo.cs'' could not be > >> found > >> error CS2001: Source file `Com\ComParamDesc.cs'' could not be found > >> error CS2001: Source file `Com\ComReferenceArgBuilder.cs'' could not be > >> found > >> error CS2001: Source file `Com\ComRuntimeHelpers.cs'' could not be found > >> error CS2001: Source file `Com\ComType.cs'' could not be found > >> error CS2001: Source file `Com\ComTypeClassDesc.cs'' could not be found > >> error CS2001: Source file `Com\ComTypeDesc.cs'' could not be found > >> error CS2001: Source file `Com\ComTypeEnumDesc.cs'' could not be found > >> error CS2001: Source file `Com\ComTypeLibDesc.cs'' could not be found > >> error CS2001: Source file `Com\ComTypeLibInfo.cs'' could not be found > >> error CS2001: Source file `Com\ComTypeLibMemberDesc.cs'' could not be > found > >> error CS2001: Source file `Com\DispCallable.cs'' could not be found > >> error CS2001: Source file `Com\DispCallableMetaObject.cs'' could not be > >> found > >> error CS2001: Source file `Com\DispMethod.cs'' could not be found > >> error CS2001: Source file `Com\DispPropertyGet.cs'' could not be found > >> error CS2001: Source file `Com\DispPropertyPut.cs'' could not be found > >> error CS2001: Source file `Com\ExcepInfo.cs'' could not be found > >> error CS2001: Source file `Com\GenericComMetaObject.cs'' could not be > found > >> error CS2001: Source file `Com\GenericComObject.cs'' could not be found > >> error CS2001: Source file `Com\IDispatchComObject.cs'' could not be found > >> error CS2001: Source file `Com\IDispatchMetaObject.cs'' could not be > found > >> error CS2001: Source file `Com\IDispatchObject.cs'' could not be found > >> error CS2001: Source file `Com\InvokeBinder.cs'' could not be found > >> error CS2001: Source file `Com\MetaUnwrappedComObject.cs'' could not be > >> found > >> error CS2001: Source file `Com\NullArgBuilder.cs'' could not be found > >> error CS2001: Source file `Com\ReferenceArgBuilder.cs'' could not be > found > >> error CS2001: Source file `Com\ReturnBuilder.cs'' could not be found > >> error CS2001: Source file `Com\SimpleArgBuilder.cs'' could not be found > >> error CS2001: Source file `Com\TypeEnumMetaObject.cs'' could not be found > >> error CS2001: Source file `Com\TypeInfoMetaObject.cs'' could not be found > >> error CS2001: Source file `Com\TypeLibInfoMetaObject.cs'' could not be > >> found > >> error CS2001: Source file `Com\TypeLibMetaObject.cs'' could not be found > >> error CS2001: Source file `Com\VarEnumSelector.cs'' could not be found > >> error CS2001: Source file `Com\Variant.cs'' could not be found > >> error CS2001: Source file `Com\VariantArray.cs'' could not be found > >> error CS2001: Source file `Com\VariantBuilder.cs'' could not be found > >> error CS2001: Source file `Generation\GlobalRewriter.cs'' could not be > >> found > >> error CS2001: Source file `Ast\GlobalVariableExpression.cs'' could not be > >> found > >> error CS2001: Source file `Generation\GlobalOptimizedRewriter.cs'' could > >> not be found > >> error CS2001: Source file `Actions\ExtensionMethodTracker.cs'' could not > be > >> found > >> error CS2001: Source file `Actions\Old\OldDynamicAction.cs'' could not be > >> found > >> error CS2001: Source file `Actions\ActionBinder.cs'' could not be found > >> error CS2001: Source file `Actions\BoundMemberTracker.cs'' could not be > >> found > >> error CS2001: Source file `Actions\ConstructorTracker.cs'' could not be > >> found > >> error CS2001: Source file `Actions\ErrorInfo.cs'' could not be found > >> error CS2001: Source file `Actions\EventTracker.cs'' could not be found > >> error CS2001: Source file `Actions\ExtensionPropertyTracker.cs'' could > not > >> be found > >> error CS2001: Source file `Actions\FieldTracker.cs'' could not be found > >> error CS2001: Source file `Actions\Matchmaker.cs'' could not be found > >> error CS2001: Source file `Actions\MethodGroup.cs'' could not be found > >> error CS2001: Source file `Actions\MethodTracker.cs'' could not be found > >> error CS2001: Source file `Actions\RuleValidator.cs'' could not be found > >> error CS2001: Source file `Actions\NamespaceTracker.cs'' could not be > found > >> error CS2001: Source file `Actions\NestedTypeTracker.cs'' could not be > >> found > >> error CS2001: Source file `Actions\PropertyTracker.cs'' could not be > found > >> error CS2001: Source file `Actions\ReflectedPropertyTracker.cs'' could > not > >> be found > >> error CS2001: Source file `Actions\Rule.cs'' could not be found > >> error CS2001: Source file `Actions\RuleCache.cs'' could not be found > >> error CS2001: Source file `Actions\Old\OldCallAction.cs'' could not be > >> found > >> error CS2001: Source file `Actions\Old\OldConvertToAction.cs'' could not > be > >> found > >> error CS2001: Source file `Actions\CreateAction.cs'' could not be found > >> error CS2001: Source file `Actions\Old\OldDeleteMemberAction.cs'' could > not > >> be found > >> error CS2001: Source file `Actions\DynamicSiteHelpers.Generated.cs'' > could > >> not be found > >> error CS2001: Source file `Actions\Old\OldDoOperationAction.cs'' could > not > >> be found > >> error CS2001: Source file `Actions\DynamicSiteHelpers.cs'' could not be > >> found > >> error CS2001: Source file `Actions\EmptyRuleSet.cs'' could not be found > >> error CS2001: Source file `Actions\MemberTracker.cs'' could not be found > >> error CS2001: Source file `Actions\Old\OldGetMemberAction.cs'' could not > be > >> found > >> error CS2001: Source file `Actions\Old\OldInvokeMemberAction.cs'' could > not > >> be found > >> error CS2001: Source file `Actions\Old\OldMemberAction.cs'' could not be > >> found > >> error CS2001: Source file `Actions\MemberGroup.cs'' could not be found > >> error CS2001: Source file `Actions\RuleSet.cs'' could not be found > >> error CS2001: Source file `Actions\RuleTree.cs'' could not be found > >> error CS2001: Source file `Actions\Old\OldSetMemberAction.cs'' could not > be > >> found > >> error CS2001: Source file `Actions\SmallRuleSet.cs'' could not be found > >> error CS2001: Source file `Actions\RuleBuilder.cs'' could not be found > >> error CS2001: Source file `Actions\TemplatedValue.cs'' could not be found > >> error CS2001: Source file `Actions\TopNamespaceTracker.cs'' could not be > >> found > >> error CS2001: Source file `Actions\TrackerTypes.cs'' could not be found > >> error CS2001: Source file `Actions\TypeGroup.cs'' could not be found > >> error CS2001: Source file `Actions\TypeTracker.cs'' could not be found > >> error CS2001: Source file `Actions\UpdateDelegates.cs'' could not be > found > >> error CS2001: Source file `Ast\Annotations.cs'' could not be found > >> error CS2001: Source file `Actions\Matchmaker.Generated.cs'' could not be > >> found > >> error CS2001: Source file `Compiler\Closure.cs'' could not be found > >> error CS2001: Source file `Ast\AutoRuleTemplate.cs'' could not be found > >> error CS2001: Source file `Compiler\HoistedLocals.cs'' could not be found > >> error CS2001: Source file `Compiler\CompilerScope.cs'' could not be found > >> error CS2001: Source file `Compiler\GeneratorInfo.cs'' could not be found > >> error CS2001: Source file `Generation\IExpressionSerializable.cs'' could > >> not be found > >> error CS2001: Source file `Ast\InvocationExpression.cs'' could not be > found > >> error CS2001: Source file `Ast\LabelTarget.cs'' could not be found > >> error CS2001: Source file `Ast\OpAssignmentExpression.cs'' could not be > >> found > >> error CS2001: Source file `Ast\ParameterExpression.cs'' could not be > found > >> error CS2001: Source file `Compiler\StackSpiller.Temps.cs'' could not be > >> found > >> error CS2001: Source file `Generation\ToDiskRewriter.cs'' could not be > >> found > >> error CS2001: Source file `Actions\Stitcher.cs'' could not be found > >> error CS2001: Source file `Ast\TreeComparer.cs'' could not be found > >> error CS2001: Source file `Compiler\ExpressionTreeVisitor.cs'' could not > be > >> found > >> error CS2001: Source file `Compiler\ExpressionTreeVisitor.Generated.cs'' > >> could not be found > >> error CS2001: Source file `Runtime\OptimizedScriptCode.cs'' could not be > >> found > >> error CS2001: Source file `Generation\GlobalLookupRewriter.cs'' could not > >> be found > >> error CS2001: Source file `Hosting\EngineOptions.cs'' could not be found > >> error CS2001: Source file `Runtime\LanguageBoundTextContentProvider.cs'' > >> could not be found > >> error CS2001: Source file `Runtime\AssemblyTypeNames.cs'' could not be > >> found > >> error CS2001: Source file `Compiler\StackSpiller.Generated.cs'' could not > >> be found > >> error CS2001: Source file `Compiler\ExpressionWriter.cs'' could not be > >> found > >> error CS2001: Source file `Ast\BinaryExpression.cs'' could not be found > >> error CS2001: Source file `Ast\CatchBlock.cs'' could not be found > >> error CS2001: Source file `Compiler\CatchRecord.cs'' could not be found > >> error CS2001: Source file `Compiler\LambdaCompiler.Address.cs'' could not > >> be found > >> error CS2001: Source file `Compiler\LambdaCompiler.Lambda.cs'' could not > be > >> found > >> error CS2001: Source file `Compiler\LambdaCompiler.Expressions.cs'' could > >> not be found > >> error CS2001: Source file `Compiler\LambdaCompiler.Logical.cs'' could not > >> be found > >> error CS2001: Source file `Compiler\LambdaCompiler.Statements.cs'' could > >> not be found > >> error CS2001: Source file `Compiler\LambdaCompiler.cs'' could not be > found > >> error CS2001: Source file `Compiler\ConstantCheck.cs'' could not be found > >> error CS2001: Source file `Compiler\StackSpiller.cs'' could not be found > >> error CS2001: Source file `Ast\LocalScopeExpression.cs'' could not be > found > >> error CS2001: Source file `Compiler\TryStatementInfo.cs'' could not be > >> found > >> error CS2001: Source file `Compiler\VariableBinder.cs'' could not be > found > >> error CS2001: Source file `Ast\DoStatementBuilder.cs'' could not be found > >> error CS2001: Source file `Ast\IfStatementBuilder.cs'' could not be found > >> error CS2001: Source file `Ast\ExpressionType.cs'' could not be found > >> error CS2001: Source file `Ast\TypeUtils.cs'' could not be found > >> error CS2001: Source file `Runtime\DlrCachedCodeAttribute.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\DocumentationAttribute.cs'' could not > be > >> found > >> error CS2001: Source file `Generation\ConversionResult.cs'' could not be > >> found > >> error CS2001: Source file `Generation\DebugILGen.cs'' could not be found > >> error CS2001: Source file `Generation\DynamicILGen.cs'' could not be > found > >> error CS2001: Source file `Generation\ILGen.cs'' could not be found > >> error CS2001: Source file `Compiler\TryFlowAnalyzer.cs'' could not be > found > >> error CS2001: Source file `Ast\TryStatementBuilder.cs'' could not be > found > >> error CS2001: Source file `Ast\TypeBinaryExpression.cs'' could not be > found > >> error CS2001: Source file `Ast\UnaryExpression.cs'' could not be found > >> error CS2001: Source file `Ast\LambdaExpression.cs'' could not be found > >> error CS2001: Source file `Ast\DeleteExpression.cs'' could not be found > >> error CS2001: Source file `Ast\ActionExpression.cs'' could not be found > >> error CS2001: Source file `Actions\ArgumentKind.cs'' could not be found > >> error CS2001: Source file `Ast\Block.cs'' could not be found > >> error CS2001: Source file `Ast\AssignmentExpression.cs'' could not be > found > >> error CS2001: Source file `Ast\BreakStatement.cs'' could not be found > >> error CS2001: Source file `Actions\CallSite.cs'' could not be found > >> error CS2001: Source file `Actions\DynamicSiteTargets.Generated.cs'' > could > >> not be found > >> error CS2001: Source file `Ast\ConditionalExpression.cs'' could not be > >> found > >> error CS2001: Source file `Ast\ConstantExpression.cs'' could not be found > >> error CS2001: Source file `Ast\ContinueStatement.cs'' could not be found > >> error CS2001: Source file `Ast\MemberBinding.cs'' could not be found > >> error CS2001: Source file `Ast\NewExpression.cs'' could not be found > >> error CS2001: Source file `Ast\DoStatement.cs'' could not be found > >> error CS2001: Source file `Ast\EmptyStatement.cs'' could not be found > >> error CS2001: Source file `Ast\IfStatementTest.cs'' could not be found > >> error CS2001: Source file `Ast\LabeledStatement.cs'' could not be found > >> error CS2001: Source file `Ast\MemberExpression.cs'' could not be found > >> error CS2001: Source file `Ast\NewArrayExpression.cs'' could not be found > >> error CS2001: Source file `Ast\DebugStatement.cs'' could not be found > >> error CS2001: Source file `Ast\Expression.cs'' could not be found > >> error CS2001: Source file `Ast\MethodCallExpression.cs'' could not be > found > >> error CS2001: Source file `Ast\ReturnStatement.cs'' could not be found > >> error CS2001: Source file `Ast\ScopeExpression.cs'' could not be found > >> error CS2001: Source file `Ast\SwitchCase.cs'' could not be found > >> error CS2001: Source file `Ast\SwitchStatement.cs'' could not be found > >> error CS2001: Source file `Ast\ThrowStatement.cs'' could not be found > >> error CS2001: Source file `Ast\TryStatement.cs'' could not be found > >> error CS2001: Source file `Ast\VariableExpression.cs'' could not be found > >> error CS2001: Source file `Ast\LoopStatement.cs'' could not be found > >> error CS2001: Source file `Compiler\YieldLabelBuilder.cs'' could not be > >> found > >> error CS2001: Source file `Ast\YieldStatement.cs'' could not be found > >> error CS2001: Source file `Compiler\YieldTarget.cs'' could not be found > >> error CS2001: Source file `Runtime\BinderType.cs'' could not be found > >> error CS2001: Source file `Runtime\DynamicRuntimeHostingProvider.cs'' > could > >> not be found > >> error CS2001: Source file `Runtime\CallTargets.cs'' could not be found > >> error CS2001: Source file `Generation\GlobalStaticFieldRewriter.cs'' > could > >> not be found > >> error CS2001: Source file `Generation\GlobalArrayRewriter.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\LocalVariableAccess.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\MultiRuntimeAwareAttribute.cs'' could > >> not be found > >> error CS2001: Source file `Runtime\NullTextContentProvider.cs'' could not > >> be found > >> error CS2001: Source file `Runtime\ScopeExtension.cs'' could not be found > >> error CS2001: Source file `Generation\NarrowingLevel.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\ScriptCode.cs'' could not be found > >> error CS2001: Source file `Runtime\DlrConfiguration.cs'' could not be > found > >> error CS2001: Source file `Runtime\SourceStringContentProvider.cs'' could > >> not be found > >> error CS2001: Source file `Ast\SourceFileInformation.cs'' could not be > >> found > >> error CS2001: Source file `Ast\SourceLocation.cs'' could not be found > >> error CS2001: Source file `Ast\SourceSpan.cs'' could not be found > >> error CS2001: Source file `Runtime\OperationFailed.cs'' could not be > found > >> error CS2001: Source file `Runtime\OperatorSlotAttribute.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\CustomSymbolDictionary.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\ExplicitConversionMethodAttribute.cs'' > >> could not be found > >> error CS2001: Source file `Runtime\Extensible.cs'' could not be found > >> error CS2001: Source file `Runtime\ExtensionTypeAttribute.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\ExtraKeyEnumerator.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\ExceptionHelpers.cs'' could not be > found > >> error CS2001: Source file `Generation\ParameterInfoWrapper.cs'' could not > >> be found > >> error CS2001: Source file `Runtime\ImplicitConversionMethodAttribute.cs'' > >> could not be found > >> error CS2001: Source file `Runtime\LanguageContext.cs'' could not be > found > >> error CS2001: Source file `Runtime\ReflectionCache.cs'' could not be > found > >> error CS2001: Source file `Runtime\ScopeMemberAttributes.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\ModuleChangeEventArgs.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\ModuleChangeEventType.cs'' could not > be > >> found > >> error CS2001: Source file `Runtime\ModuleGlobalCache.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\GlobalsDictionary.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\ModuleGlobalWrapper.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\Scope.cs'' could not be found > >> error CS2001: Source file `Runtime\NotNullAttribute.cs'' could not be > found > >> error CS2001: Source file `Runtime\ScriptDomainManager.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\DynamicStackFrame.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\SharedIO.cs'' could not be found > >> error CS2001: Source file `Runtime\StaticExtensionMethodAttribute.cs'' > >> could not be found > >> error CS2001: Source file `Runtime\SymbolDictionary.cs'' could not be > found > >> error CS2001: Source file `Runtime\BaseSymbolDictionary.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\TransformDictEnumerator.cs'' could not > >> be found > >> error CS2001: Source file `Runtime\UnboundNameException.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\Generator.cs'' could not be found > >> error CS2001: Source file `Generation\Snippets.cs'' could not be found > >> error CS2001: Source file `Runtime\RuntimeHelpers.cs'' could not be found > >> error CS2001: Source file `Generation\AssemblyGen.cs'' could not be found > >> error CS2001: Source file `Generation\CompilerHelpers.cs'' could not be > >> found > >> error CS2001: Source file `Generation\Targets.cs'' could not be found > >> error CS2001: Source file `Generation\TypeGen.cs'' could not be found > >> error CS2001: Source file `Runtime\IMembersList.cs'' could not be found > >> error CS2001: Source file `Runtime\IDynamicObject.cs'' could not be found > >> error CS2001: Source file `Runtime\ContextId.cs'' could not be found > >> error CS2001: Source file `Runtime\PropertyMethodAttribute.cs'' could not > >> be found > >> error CS2001: Source file `Runtime\CodeContext.cs'' could not be found > >> error CS2001: Source file `Actions\UpdateDelegates.Generated.cs'' could > not > >> be found > >> error CS2001: Source file `Utils\Action.cs'' could not be found > >> error CS2001: Source file `Utils\ArrayUtils.cs'' could not be found > >> error CS2001: Source file `Utils\AssemblyQualifiedTypeName.cs'' could not > >> be found > >> error CS2001: Source file `Utils\Assert.cs'' could not be found > >> error CS2001: Source file `Utils\CheckedDictionaryEnumerator.cs'' could > not > >> be found > >> error CS2001: Source file `Utils\CollectionUtils.cs'' could not be found > >> error CS2001: Source file `Utils\ConsoleStreamType.cs'' could not be > found > >> error CS2001: Source file `Utils\ContractUtils.cs'' could not be found > >> error CS2001: Source file `Utils\DictionaryUnionEnumerator.cs'' could not > >> be found > >> error CS2001: Source file `Utils\ExceptionFactory.Generated.cs'' could > not > >> be found > >> error CS2001: Source file `Utils\ExceptionUtils.cs'' could not be found > >> error CS2001: Source file `Utils\Extension.cs'' could not be found > >> error CS2001: Source file `Utils\ReadOnlyDictionary.cs'' could not be > found > >> error CS2001: Source file `Utils\ReferenceEqualityComparer.cs'' could not > >> be found > >> error CS2001: Source file `Utils\Function.cs'' could not be found > >> error CS2001: Source file `Utils\IOUtils.cs'' could not be found > >> error CS2001: Source file `Utils\ListStack.cs'' could not be found > >> error CS2001: Source file `Utils\ReflectionUtils.cs'' could not be found > >> error CS2001: Source file `Utils\StringUtils.cs'' could not be found > >> error CS2001: Source file `Utils\StrongBox.cs'' could not be found > >> error CS2001: Source file `Utils\SynchronizedDictionary.cs'' could not be > >> found > >> error CS2001: Source file `Runtime\Operators.cs'' could not be found > >> error CS2001: Source file `Properties\AssemblyInfo.cs'' could not be > found > >> error CS2001: Source file `Runtime\Uninitialized.cs'' could not be found > >> error CS2001: Source file `Utils\TextStream.cs'' could not be found > >> I know I did a successful checkout, could something be wrong with the > >> Rakefile? I''m on r127 btw, not r126. > >> Thanks again! > >> Joe > >> On Tue, Aug 5, 2008 at 8:46 PM, Charles Oliver Nutter > >> <charles.nutter at sun.com> wrote: > >>> > >>> Sanghyeon Seo wrote: > >>>> > >>>> 2008/8/6 Jim Deville <jdeville at microsoft.com>: > >>>>> > >>>>> Come to think of it. Is there a reason to call ruby.exe on Windows? > >>>>> Windows has the PATHEXT variable, and it will find ruby.exe if you > call ruby > >>>>> in the right location. Am I missing something? Or should we make the > runners > >>>>> call ruby instead of ruby.exe? > >>>> > >>>> This is true. Just executing "ruby" will do the right thing both on > >>>> Windows and UNIX. I thought the idea was to warn users if they don''t > >>>> have Ruby installed, or if there are more than one Ruby installations. > >>>> So I did the minimally intrusive change to keep that. > >>> > >>> Bah, just use whatever PATH finds. > >>> > >>> - Charlie > >>> _______________________________________________ > >>> Ironruby-core mailing list > >>> Ironruby-core at rubyforge.org > >>> http://rubyforge.org/mailman/listinfo/ironruby-core > >> > >> > >> > >> -- > >> joe fiorini > >> http://www.faithfulgeek.org > >> // freelancing & knowledge sharing > >> > >> _______________________________________________ > >> Ironruby-core mailing list > >> Ironruby-core at rubyforge.org > >> http://rubyforge.org/mailman/listinfo/ironruby-core > >> > > > > > > > > -- > > joe fiorini > > http://www.faithfulgeek.org > > // freelancing & knowledge sharing > > > > _______________________________________________ > > Ironruby-core mailing list > > Ironruby-core at rubyforge.org > > http://rubyforge.org/mailman/listinfo/ironruby-core > > > > > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-core >-- Michael Letterle [Polymath Prokrammer] http://blog.prokrams.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20080807/26caff26/attachment-0001.html>