From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <0947b1f49de5f342c8b3b5d5d01baf3f@terzarima.net> To: 9fans@9fans.net From: Charles Forsyth Date: Tue, 22 Jul 2008 19:48:47 +0100 In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] Building new kernel. Topicbox-Message-UUID: ed83c434-ead3-11e9-9d60-3106f5b1d025 > it will work perfectly if the -T flag is not > given (since there is a deep assumption > in plan 9 that int == long). but i the not exactly. it will work on most Unix systems and on Plan 9 without -T because nothing checks external types across object module boundaries. the linker/loader in both systems will allocate in BSS the largest size seen for a given symbol, so it doesn't matter whether int == long or not.