Skip to content

Commit 421db12

Browse files
committed
chapter2 > added links to relevant discussions in issue tracker
1 parent 48d882a commit 421db12

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

chapter2_interfaces/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,8 @@ As usual, since we're looking directly at the intermediate object file generated
590590
Other than that, what we've got here is a 40-byte global object symbol that will be stored in the `.rodata` section of our binary.
591591

592592
Note the `dupok` directive, which tells the linker that it is legal for this symbol to appear multiple times at link-time: the linker will have to arbitrarily choose one of them over the others.
593-
What makes the Go authors think that this symbol might end up duplicated, I'm not sure. Feel free to file an issue if you know more.
593+
What makes the Go authors think that this symbol might end up duplicated, I'm not sure. Feel free to file an issue if you know more.
594+
*[UPDATE: We've discussed about this matter in [issue #7: How you can get duplicated go.itab interface definitions](https://github.com/teh-cmc/go-internals/issues/7).]*
594595

595596
The second piece is a hexdump of the 40 bytes of data associated with the symbol. I.e., it's a serialized representation of an `itab` structure:
596597
```

0 commit comments

Comments
 (0)