On 12 December 2011 14:33, Rob 'Commander' Pike <r@google.com> wrote: > how did this never ...
13 years, 5 months ago
(2011-12-12 03:35:09 UTC)
#3
On 12 December 2011 14:33, Rob 'Commander' Pike <r@google.com> wrote:
> how did this never come up before?
I added it to the list when I restructured progs/run.
Also missing was server.go.
On 2011/12/12 03:43:31, r2 wrote: > if the problem is just that it doesn't run ...
13 years, 5 months ago
(2011-12-12 03:56:00 UTC)
#6
On 2011/12/12 03:43:31, r2 wrote:
> if the problem is just that it doesn't run on windows, use a config trick. i
> don't want things to not be compiled anywhere.
>
One of the programs using syscall package. Syscall packages are *very* different
for different OSes. This particular code will not compile on windows.
Alex
On Dec 11, 2011, at 7:56 PM, alex.brainman@gmail.com wrote: > On 2011/12/12 03:43:31, r2 wrote: ...
13 years, 5 months ago
(2011-12-12 04:06:27 UTC)
#7
On Dec 11, 2011, at 7:56 PM, alex.brainman@gmail.com wrote:
> On 2011/12/12 03:43:31, r2 wrote:
>> if the problem is just that it doesn't run on windows, use a config
> trick. i
>> don't want things to not be compiled anywhere.
>
>
> One of the programs using syscall package. Syscall packages are *very*
> different for different OSes. This particular code will not compile on
> windows.
i realize that. i meant, use some Makefile magic.
-rob
On 12 December 2011 14:43, Rob 'Commander' Pike <r@google.com> wrote: > if the problem is ...
13 years, 5 months ago
(2011-12-12 04:43:18 UTC)
#8
On 12 December 2011 14:43, Rob 'Commander' Pike <r@google.com> wrote:
> if the problem is just that it doesn't run on windows, use a config trick. i
don't want things to not be compiled anywhere.
I missed this earlier in the file:
if [ "$GOOS" = "windows" ];then
$GC -o file.$O file_windows.go
else
$GC file.go
fi
Not sure what the point of having file_windows.go is if it's not
included in any documentation.
It was introduced in http://golang.org/change/dc01810c2648
In short, this CL as it stands will still build file.go.
Andrew
Issue 5479069: code review 5479069: doc: remove file.go from run (fix windows build)
(Closed)
Created 13 years, 5 months ago by adg
Modified 13 years, 5 months ago
Reviewers:
Base URL:
Comments: 0