てきとう

てきとう

2009-10-01から1ヶ月間の記事一覧

というわけで、gccを無理矢理ビルド(しようとして失敗)

色々弄ってみたが、結局のところgcc-coreのビルド中にldがrelocation overflowを5,000個ほど吐いて死ぬ。 一応同じような環境で成功した例があるんだけど、コンパイラが違うからかなぁ…appleのgccが使えるかを確かめてみるべきか…。 と思って検索かけたらな…

Tagged recordのメンバにUnbounded_Wide_Wide_Stringを含めるとコンパイルできない

Ada

~/ada% cat test.adb with Ada.Strings.Wide_Wide_Unbounded; procedure Test is type Test_Type is tagged record A:Ada.Strings.Wide_Wide_Unbounded.Unbounded_Wide_Wide_String; end record; begin null; end Test; ~/ada% gnatmake test.adb gcc -c tes…