runtime: Fix printing of names in stack dumps.
compiler: Fix taking address of field of local variable.
compiler, reflect: Handle package path like gc compiler.
os: Use Entersyscall when reading directories.
os/user: Use Entersyscall.
compiler: Avoid unnecessary interface conversions.
libgo: Make the subdirectory in the CHECK target.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@188633
138bc75d-0d04-0410-961f-
82ee72b054a4
12 files changed:
if (lhs_type_tree == error_mark_node)
return error_mark_node;
if (lhs_type_tree == error_mark_node)
return error_mark_node;
- if (lhs_type != rhs_type && lhs_type->interface_type() != NULL)
+ if (lhs_type->forwarded() != rhs_type->forwarded()
+ && lhs_type->interface_type() != NULL)
{
if (rhs_type->interface_type() == NULL)
return Expression::convert_type_to_interface(context, lhs_type,
{
if (rhs_type->interface_type() == NULL)
return Expression::convert_type_to_interface(context, lhs_type,
rhs_type, rhs_tree,
false, location);
}
rhs_type, rhs_tree,
false, location);
}
- else if (lhs_type != rhs_type && rhs_type->interface_type() != NULL)
+ else if (lhs_type->forwarded() != rhs_type->forwarded()
+ && rhs_type->interface_type() != NULL)
return Expression::convert_interface_to_type(context, lhs_type, rhs_type,
rhs_tree, location);
else if (lhs_type->is_slice_type() && rhs_type->is_nil_type())
return Expression::convert_interface_to_type(context, lhs_type, rhs_type,
rhs_tree, location);
else if (lhs_type->is_slice_type() && rhs_type->is_nil_type())
do_is_addressable() const
{ return this->expr_->is_addressable(); }
do_is_addressable() const
{ return this->expr_->is_addressable(); }
+ void
+ do_address_taken(bool escapes)
+ { this->expr_->address_taken(escapes); }
+
tree
do_get_tree(Translate_context*);
tree
do_get_tree(Translate_context*);
// symbol names.
if (!this->pkgpath_set_)
{
// symbol names.
if (!this->pkgpath_set_)
{
- if (!this->prefix_from_option_)
- this->prefix_ = "go";
- this->pkgpath_ = this->prefix_ + '.' + package_name;
+ if (!this->prefix_from_option_ && package_name == "main")
+ this->pkgpath_ = package_name;
+ else
+ {
+ if (!this->prefix_from_option_)
+ this->prefix_ = "go";
+ this->pkgpath_ = this->prefix_ + '.' + package_name;
+ }
this->pkgpath_set_ = true;
}
this->pkgpath_set_ = true;
}
{
// We handle -fgo-prefix and -fgo-pkgpath differently here for
// compatibility with how the compiler worked before
{
// We handle -fgo-prefix and -fgo-pkgpath differently here for
// compatibility with how the compiler worked before
- // -fgo-pkgpath was introduced.
+ // -fgo-pkgpath was introduced. When -fgo-pkgpath is specified,
+ // we use it to make a unique reflection string, so that the
+ // type canonicalization in the reflect package will work. In
+ // order to be compatible with the gc compiler, we put tabs into
+ // the package path, so that the reflect methods can discard it.
const Package* package = this->named_object_->package();
if (gogo->pkgpath_from_option())
const Package* package = this->named_object_->package();
if (gogo->pkgpath_from_option())
- ret->append(package != NULL ? package->pkgpath() : gogo->pkgpath());
- else
- ret->append(package != NULL
- ? package->package_name()
- : gogo->package_name());
+ {
+ ret->push_back('\t');
+ ret->append(package != NULL
+ ? package->pkgpath_symbol()
+ : gogo->pkgpath_symbol());
+ ret->push_back('\t');
+ }
+ ret->append(package != NULL
+ ? package->package_name()
+ : gogo->package_name());
ret->push_back('.');
}
if (this->in_function_ != NULL)
ret->push_back('.');
}
if (this->in_function_ != NULL)
LD_LIBRARY_PATH="`${PWD_COMMAND}`/.libs:$${libgccdir}:${LD_LIBRARY_PATH}"; \
LD_LIBRARY_PATH=`echo $${LD_LIBRARY_PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; \
export LD_LIBRARY_PATH; \
LD_LIBRARY_PATH="`${PWD_COMMAND}`/.libs:$${libgccdir}:${LD_LIBRARY_PATH}"; \
LD_LIBRARY_PATH=`echo $${LD_LIBRARY_PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; \
export LD_LIBRARY_PATH; \
rm -f $@-testsum $@-testlog; \
if test "$(use_dejagnu)" = "yes"; then \
$(SHELL) $(srcdir)/testsuite/gotest --dejagnu=yes --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$(go_$(subst /,_,$(@D))_files)" --testname="$(@D)" --goarch="$(GOARCH)" $(GOTESTFLAGS); \
rm -f $@-testsum $@-testlog; \
if test "$(use_dejagnu)" = "yes"; then \
$(SHELL) $(srcdir)/testsuite/gotest --dejagnu=yes --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$(go_$(subst /,_,$(@D))_files)" --testname="$(@D)" --goarch="$(GOARCH)" $(GOTESTFLAGS); \
archive/tar.lo: $(go_archive_tar_files)
$(BUILDPACKAGE)
archive/tar/check: $(CHECK_DEPS)
archive/tar.lo: $(go_archive_tar_files)
$(BUILDPACKAGE)
archive/tar/check: $(CHECK_DEPS)
- @$(MKDIR_P) archive/tar
@$(CHECK)
.PHONY: archive/tar/check
@$(CHECK)
.PHONY: archive/tar/check
archive/zip.lo: $(go_archive_zip_files)
$(BUILDPACKAGE)
archive/zip/check: $(CHECK_DEPS)
archive/zip.lo: $(go_archive_zip_files)
$(BUILDPACKAGE)
archive/zip/check: $(CHECK_DEPS)
- @$(MKDIR_P) archive/zip
@$(CHECK)
.PHONY: archive/zip/check
@$(CHECK)
.PHONY: archive/zip/check
compress/bzip2.lo: $(go_compress_bzip2_files)
$(BUILDPACKAGE)
compress/bzip2/check: $(CHECK_DEPS)
compress/bzip2.lo: $(go_compress_bzip2_files)
$(BUILDPACKAGE)
compress/bzip2/check: $(CHECK_DEPS)
- @$(MKDIR_P) compress/bzip2
@$(CHECK)
.PHONY: compress/bzip2/check
@$(CHECK)
.PHONY: compress/bzip2/check
compress/flate.lo: $(go_compress_flate_files)
$(BUILDPACKAGE)
compress/flate/check: $(CHECK_DEPS)
compress/flate.lo: $(go_compress_flate_files)
$(BUILDPACKAGE)
compress/flate/check: $(CHECK_DEPS)
- @$(MKDIR_P) compress/flate
@$(CHECK)
.PHONY: compress/flate/check
@$(CHECK)
.PHONY: compress/flate/check
compress/gzip.lo: $(go_compress_gzip_files)
$(BUILDPACKAGE)
compress/gzip/check: $(CHECK_DEPS)
compress/gzip.lo: $(go_compress_gzip_files)
$(BUILDPACKAGE)
compress/gzip/check: $(CHECK_DEPS)
- @$(MKDIR_P) compress/gzip
@$(CHECK)
.PHONY: compress/gzip/check
@$(CHECK)
.PHONY: compress/gzip/check
compress/lzw.lo: $(go_compress_lzw_files)
$(BUILDPACKAGE)
compress/lzw/check: $(CHECK_DEPS)
compress/lzw.lo: $(go_compress_lzw_files)
$(BUILDPACKAGE)
compress/lzw/check: $(CHECK_DEPS)
- @$(MKDIR_P) compress/lzw
@$(CHECK)
.PHONY: compress/lzw/check
@$(CHECK)
.PHONY: compress/lzw/check
compress/zlib.lo: $(go_compress_zlib_files)
$(BUILDPACKAGE)
compress/zlib/check: $(CHECK_DEPS)
compress/zlib.lo: $(go_compress_zlib_files)
$(BUILDPACKAGE)
compress/zlib/check: $(CHECK_DEPS)
- @$(MKDIR_P) compress/zlib
@$(CHECK)
.PHONY: compress/zlib/check
@$(CHECK)
.PHONY: compress/zlib/check
container/heap.lo: $(go_container_heap_files)
$(BUILDPACKAGE)
container/heap/check: $(CHECK_DEPS)
container/heap.lo: $(go_container_heap_files)
$(BUILDPACKAGE)
container/heap/check: $(CHECK_DEPS)
- @$(MKDIR_P) container/heap
@$(CHECK)
.PHONY: container/heap/check
@$(CHECK)
.PHONY: container/heap/check
container/list.lo: $(go_container_list_files)
$(BUILDPACKAGE)
container/list/check: $(CHECK_DEPS)
container/list.lo: $(go_container_list_files)
$(BUILDPACKAGE)
container/list/check: $(CHECK_DEPS)
- @$(MKDIR_P) container/list
@$(CHECK)
.PHONY: container/list/check
@$(CHECK)
.PHONY: container/list/check
container/ring.lo: $(go_container_ring_files)
$(BUILDPACKAGE)
container/ring/check: $(CHECK_DEPS)
container/ring.lo: $(go_container_ring_files)
$(BUILDPACKAGE)
container/ring/check: $(CHECK_DEPS)
- @$(MKDIR_P) container/ring
@$(CHECK)
.PHONY: container/ring/check
@$(CHECK)
.PHONY: container/ring/check
crypto/aes.lo: $(go_crypto_aes_files)
$(BUILDPACKAGE)
crypto/aes/check: $(CHECK_DEPS)
crypto/aes.lo: $(go_crypto_aes_files)
$(BUILDPACKAGE)
crypto/aes/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: crypto/aes/check
@$(CHECK)
.PHONY: crypto/aes/check
crypto/cipher.lo: $(go_crypto_cipher_files)
$(BUILDPACKAGE)
crypto/cipher/check: $(CHECK_DEPS)
crypto/cipher.lo: $(go_crypto_cipher_files)
$(BUILDPACKAGE)
crypto/cipher/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/cipher
@$(CHECK)
.PHONY: crypto/cipher/check
@$(CHECK)
.PHONY: crypto/cipher/check
crypto/des.lo: $(go_crypto_des_files)
$(BUILDPACKAGE)
crypto/des/check: $(CHECK_DEPS)
crypto/des.lo: $(go_crypto_des_files)
$(BUILDPACKAGE)
crypto/des/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: crypto/des/check
@$(CHECK)
.PHONY: crypto/des/check
crypto/dsa.lo: $(go_crypto_dsa_files)
$(BUILDPACKAGE)
crypto/dsa/check: $(CHECK_DEPS)
crypto/dsa.lo: $(go_crypto_dsa_files)
$(BUILDPACKAGE)
crypto/dsa/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: crypto/dsa/check
@$(CHECK)
.PHONY: crypto/dsa/check
crypto/ecdsa.lo: $(go_crypto_ecdsa_files)
$(BUILDPACKAGE)
crypto/ecdsa/check: $(CHECK_DEPS)
crypto/ecdsa.lo: $(go_crypto_ecdsa_files)
$(BUILDPACKAGE)
crypto/ecdsa/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/ecdsa
@$(CHECK)
.PHONY: crypto/ecdsa/check
@$(CHECK)
.PHONY: crypto/ecdsa/check
crypto/elliptic.lo: $(go_crypto_elliptic_files)
$(BUILDPACKAGE)
crypto/elliptic/check: $(CHECK_DEPS)
crypto/elliptic.lo: $(go_crypto_elliptic_files)
$(BUILDPACKAGE)
crypto/elliptic/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/elliptic
@$(CHECK)
.PHONY: crypto/elliptic/check
@$(CHECK)
.PHONY: crypto/elliptic/check
crypto/hmac.lo: $(go_crypto_hmac_files)
$(BUILDPACKAGE)
crypto/hmac/check: $(CHECK_DEPS)
crypto/hmac.lo: $(go_crypto_hmac_files)
$(BUILDPACKAGE)
crypto/hmac/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/hmac
@$(CHECK)
.PHONY: crypto/hmac/check
@$(CHECK)
.PHONY: crypto/hmac/check
crypto/md5.lo: $(go_crypto_md5_files)
$(BUILDPACKAGE)
crypto/md5/check: $(CHECK_DEPS)
crypto/md5.lo: $(go_crypto_md5_files)
$(BUILDPACKAGE)
crypto/md5/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: crypto/md5/check
@$(CHECK)
.PHONY: crypto/md5/check
crypto/rand.lo: $(go_crypto_rand_files)
$(BUILDPACKAGE)
crypto/rand/check: $(CHECK_DEPS)
crypto/rand.lo: $(go_crypto_rand_files)
$(BUILDPACKAGE)
crypto/rand/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/rand
@$(CHECK)
.PHONY: crypto/rand/check
@$(CHECK)
.PHONY: crypto/rand/check
crypto/rc4.lo: $(go_crypto_rc4_files)
$(BUILDPACKAGE)
crypto/rc4/check: $(CHECK_DEPS)
crypto/rc4.lo: $(go_crypto_rc4_files)
$(BUILDPACKAGE)
crypto/rc4/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: crypto/rc4/check
@$(CHECK)
.PHONY: crypto/rc4/check
crypto/rsa.lo: $(go_crypto_rsa_files)
$(BUILDPACKAGE)
crypto/rsa/check: $(CHECK_DEPS)
crypto/rsa.lo: $(go_crypto_rsa_files)
$(BUILDPACKAGE)
crypto/rsa/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: crypto/rsa/check
@$(CHECK)
.PHONY: crypto/rsa/check
crypto/sha1.lo: $(go_crypto_sha1_files)
$(BUILDPACKAGE)
crypto/sha1/check: $(CHECK_DEPS)
crypto/sha1.lo: $(go_crypto_sha1_files)
$(BUILDPACKAGE)
crypto/sha1/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/sha1
@$(CHECK)
.PHONY: crypto/sha1/check
@$(CHECK)
.PHONY: crypto/sha1/check
crypto/sha256.lo: $(go_crypto_sha256_files)
$(BUILDPACKAGE)
crypto/sha256/check: $(CHECK_DEPS)
crypto/sha256.lo: $(go_crypto_sha256_files)
$(BUILDPACKAGE)
crypto/sha256/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/sha256
@$(CHECK)
.PHONY: crypto/sha256/check
@$(CHECK)
.PHONY: crypto/sha256/check
crypto/sha512.lo: $(go_crypto_sha512_files)
$(BUILDPACKAGE)
crypto/sha512/check: $(CHECK_DEPS)
crypto/sha512.lo: $(go_crypto_sha512_files)
$(BUILDPACKAGE)
crypto/sha512/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/sha512
@$(CHECK)
.PHONY: crypto/sha512/check
@$(CHECK)
.PHONY: crypto/sha512/check
crypto/subtle.lo: $(go_crypto_subtle_files)
$(BUILDPACKAGE)
crypto/subtle/check: $(CHECK_DEPS)
crypto/subtle.lo: $(go_crypto_subtle_files)
$(BUILDPACKAGE)
crypto/subtle/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/subtle
@$(CHECK)
.PHONY: crypto/subtle/check
@$(CHECK)
.PHONY: crypto/subtle/check
crypto/tls.lo: $(go_crypto_tls_files)
$(BUILDPACKAGE)
crypto/tls/check: $(CHECK_DEPS)
crypto/tls.lo: $(go_crypto_tls_files)
$(BUILDPACKAGE)
crypto/tls/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: crypto/tls/check
@$(CHECK)
.PHONY: crypto/tls/check
crypto/x509.lo: $(go_crypto_x509_files)
$(BUILDPACKAGE)
crypto/x509/check: $(CHECK_DEPS)
crypto/x509.lo: $(go_crypto_x509_files)
$(BUILDPACKAGE)
crypto/x509/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/x509
@$(CHECK)
.PHONY: crypto/x509/check
@$(CHECK)
.PHONY: crypto/x509/check
crypto/x509/pkix.lo: $(go_crypto_x509_pkix_files)
$(BUILDPACKAGE)
crypto/x509/pkix/check: $(CHECK_DEPS)
crypto/x509/pkix.lo: $(go_crypto_x509_pkix_files)
$(BUILDPACKAGE)
crypto/x509/pkix/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/x509/pkix
@$(CHECK)
.PHONY: crypto/x509/pkix/check
@$(CHECK)
.PHONY: crypto/x509/pkix/check
database/sql.lo: $(go_database_sql_files)
$(BUILDPACKAGE)
database/sql/check: $(CHECK_DEPS)
database/sql.lo: $(go_database_sql_files)
$(BUILDPACKAGE)
database/sql/check: $(CHECK_DEPS)
- @$(MKDIR_P) database/sql
@$(CHECK)
.PHONY: database/sql/check
@$(CHECK)
.PHONY: database/sql/check
database/sql/driver.lo: $(go_database_sql_driver_files)
$(BUILDPACKAGE)
database/sql/driver/check: $(CHECK_DEPS)
database/sql/driver.lo: $(go_database_sql_driver_files)
$(BUILDPACKAGE)
database/sql/driver/check: $(CHECK_DEPS)
- @$(MKDIR_P) database/sql/driver
@$(CHECK)
.PHONY: database/sql/driver/check
@$(CHECK)
.PHONY: database/sql/driver/check
debug/dwarf.lo: $(go_debug_dwarf_files)
$(BUILDPACKAGE)
debug/dwarf/check: $(CHECK_DEPS)
debug/dwarf.lo: $(go_debug_dwarf_files)
$(BUILDPACKAGE)
debug/dwarf/check: $(CHECK_DEPS)
- @$(MKDIR_P) debug/dwarf
@$(CHECK)
.PHONY: debug/dwarf/check
@$(CHECK)
.PHONY: debug/dwarf/check
debug/elf.lo: $(go_debug_elf_files)
$(BUILDPACKAGE)
debug/elf/check: $(CHECK_DEPS)
debug/elf.lo: $(go_debug_elf_files)
$(BUILDPACKAGE)
debug/elf/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: debug/elf/check
@$(CHECK)
.PHONY: debug/elf/check
debug/gosym.lo: $(go_debug_gosym_files)
$(BUILDPACKAGE)
debug/gosym/check: $(CHECK_DEPS)
debug/gosym.lo: $(go_debug_gosym_files)
$(BUILDPACKAGE)
debug/gosym/check: $(CHECK_DEPS)
- @$(MKDIR_P) debug/gosym
@$(CHECK)
.PHONY: debug/gosym/check
@$(CHECK)
.PHONY: debug/gosym/check
debug/macho.lo: $(go_debug_macho_files)
$(BUILDPACKAGE)
debug/macho/check: $(CHECK_DEPS)
debug/macho.lo: $(go_debug_macho_files)
$(BUILDPACKAGE)
debug/macho/check: $(CHECK_DEPS)
- @$(MKDIR_P) debug/macho
@$(CHECK)
.PHONY: debug/macho/check
@$(CHECK)
.PHONY: debug/macho/check
debug/pe.lo: $(go_debug_pe_files)
$(BUILDPACKAGE)
debug/pe/check: $(CHECK_DEPS)
debug/pe.lo: $(go_debug_pe_files)
$(BUILDPACKAGE)
debug/pe/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: debug/pe/check
@$(CHECK)
.PHONY: debug/pe/check
encoding/asn1.lo: $(go_encoding_asn1_files)
$(BUILDPACKAGE)
encoding/asn1/check: $(CHECK_DEPS)
encoding/asn1.lo: $(go_encoding_asn1_files)
$(BUILDPACKAGE)
encoding/asn1/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/asn1
@$(CHECK)
.PHONY: encoding/asn1/check
@$(CHECK)
.PHONY: encoding/asn1/check
encoding/ascii85.lo: $(go_encoding_ascii85_files)
$(BUILDPACKAGE)
encoding/ascii85/check: $(CHECK_DEPS)
encoding/ascii85.lo: $(go_encoding_ascii85_files)
$(BUILDPACKAGE)
encoding/ascii85/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/ascii85
@$(CHECK)
.PHONY: encoding/ascii85/check
@$(CHECK)
.PHONY: encoding/ascii85/check
encoding/base32.lo: $(go_encoding_base32_files)
$(BUILDPACKAGE)
encoding/base32/check: $(CHECK_DEPS)
encoding/base32.lo: $(go_encoding_base32_files)
$(BUILDPACKAGE)
encoding/base32/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/base32
@$(CHECK)
.PHONY: encoding/base32/check
@$(CHECK)
.PHONY: encoding/base32/check
encoding/base64.lo: $(go_encoding_base64_files)
$(BUILDPACKAGE)
encoding/base64/check: $(CHECK_DEPS)
encoding/base64.lo: $(go_encoding_base64_files)
$(BUILDPACKAGE)
encoding/base64/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/base64
@$(CHECK)
.PHONY: encoding/base64/check
@$(CHECK)
.PHONY: encoding/base64/check
encoding/binary.lo: $(go_encoding_binary_files)
$(BUILDPACKAGE)
encoding/binary/check: $(CHECK_DEPS)
encoding/binary.lo: $(go_encoding_binary_files)
$(BUILDPACKAGE)
encoding/binary/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/binary
@$(CHECK)
.PHONY: encoding/binary/check
@$(CHECK)
.PHONY: encoding/binary/check
encoding/csv.lo: $(go_encoding_csv_files)
$(BUILDPACKAGE)
encoding/csv/check: $(CHECK_DEPS)
encoding/csv.lo: $(go_encoding_csv_files)
$(BUILDPACKAGE)
encoding/csv/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/csv
@$(CHECK)
.PHONY: encoding/csv/check
@$(CHECK)
.PHONY: encoding/csv/check
encoding/gob.lo: $(go_encoding_gob_files)
$(BUILDPACKAGE)
encoding/gob/check: $(CHECK_DEPS)
encoding/gob.lo: $(go_encoding_gob_files)
$(BUILDPACKAGE)
encoding/gob/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/gob
@$(CHECK)
.PHONY: encoding/gob/check
@$(CHECK)
.PHONY: encoding/gob/check
encoding/hex.lo: $(go_encoding_hex_files)
$(BUILDPACKAGE)
encoding/hex/check: $(CHECK_DEPS)
encoding/hex.lo: $(go_encoding_hex_files)
$(BUILDPACKAGE)
encoding/hex/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/hex
@$(CHECK)
.PHONY: encoding/hex/check
@$(CHECK)
.PHONY: encoding/hex/check
encoding/json.lo: $(go_encoding_json_files)
$(BUILDPACKAGE)
encoding/json/check: $(CHECK_DEPS)
encoding/json.lo: $(go_encoding_json_files)
$(BUILDPACKAGE)
encoding/json/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/json
@$(CHECK)
.PHONY: encoding/json/check
@$(CHECK)
.PHONY: encoding/json/check
encoding/pem.lo: $(go_encoding_pem_files)
$(BUILDPACKAGE)
encoding/pem/check: $(CHECK_DEPS)
encoding/pem.lo: $(go_encoding_pem_files)
$(BUILDPACKAGE)
encoding/pem/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/pem
@$(CHECK)
.PHONY: encoding/pem/check
@$(CHECK)
.PHONY: encoding/pem/check
encoding/xml.lo: $(go_encoding_xml_files)
$(BUILDPACKAGE)
encoding/xml/check: $(CHECK_DEPS)
encoding/xml.lo: $(go_encoding_xml_files)
$(BUILDPACKAGE)
encoding/xml/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/xml
@$(CHECK)
.PHONY: encoding/xml/check
@$(CHECK)
.PHONY: encoding/xml/check
exp/ebnf.lo: $(go_exp_ebnf_files)
$(BUILDPACKAGE)
exp/ebnf/check: $(CHECK_DEPS)
exp/ebnf.lo: $(go_exp_ebnf_files)
$(BUILDPACKAGE)
exp/ebnf/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: exp/ebnf/check
@$(CHECK)
.PHONY: exp/ebnf/check
exp/html.lo: $(go_exp_html_files)
$(BUILDPACKAGE)
exp/html/check: $(CHECK_DEPS)
exp/html.lo: $(go_exp_html_files)
$(BUILDPACKAGE)
exp/html/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: exp/html/check
@$(CHECK)
.PHONY: exp/html/check
exp/norm.lo: $(go_exp_norm_files)
$(BUILDPACKAGE)
exp/norm/check: $(CHECK_DEPS)
exp/norm.lo: $(go_exp_norm_files)
$(BUILDPACKAGE)
exp/norm/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: exp/norm/check
@$(CHECK)
.PHONY: exp/norm/check
exp/proxy.lo: $(go_exp_proxy_files)
$(BUILDPACKAGE)
exp/proxy/check: $(CHECK_DEPS)
exp/proxy.lo: $(go_exp_proxy_files)
$(BUILDPACKAGE)
exp/proxy/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: exp/proxy/check
@$(CHECK)
.PHONY: exp/proxy/check
exp/terminal.lo: $(go_exp_terminal_files)
$(BUILDPACKAGE)
exp/terminal/check: $(CHECK_DEPS)
exp/terminal.lo: $(go_exp_terminal_files)
$(BUILDPACKAGE)
exp/terminal/check: $(CHECK_DEPS)
- @$(MKDIR_P) exp/terminal
@$(CHECK)
.PHONY: exp/terminal/check
@$(CHECK)
.PHONY: exp/terminal/check
exp/types.lo: $(go_exp_types_files)
$(BUILDPACKAGE)
exp/types/check: $(CHECK_DEPS)
exp/types.lo: $(go_exp_types_files)
$(BUILDPACKAGE)
exp/types/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: exp/types/check
@$(CHECK)
.PHONY: exp/types/check
exp/utf8string.lo: $(go_exp_utf8string_files)
$(BUILDPACKAGE)
exp/utf8string/check: $(CHECK_DEPS)
exp/utf8string.lo: $(go_exp_utf8string_files)
$(BUILDPACKAGE)
exp/utf8string/check: $(CHECK_DEPS)
- @$(MKDIR_P) exp/utf8string
@$(CHECK)
.PHONY: exp/utf8string/check
@$(CHECK)
.PHONY: exp/utf8string/check
exp/inotify.lo: $(go_exp_inotify_files)
$(BUILDPACKAGE)
exp/inotify/check: $(CHECK_DEPS)
exp/inotify.lo: $(go_exp_inotify_files)
$(BUILDPACKAGE)
exp/inotify/check: $(CHECK_DEPS)
- @$(MKDIR_P) exp/inotify
@$(CHECK)
.PHONY: exp/inotify/check
@$(CHECK)
.PHONY: exp/inotify/check
html/template.lo: $(go_html_template_files)
$(BUILDPACKAGE)
html/template/check: $(CHECK_DEPS)
html/template.lo: $(go_html_template_files)
$(BUILDPACKAGE)
html/template/check: $(CHECK_DEPS)
- @$(MKDIR_P) html/template
@$(CHECK)
.PHONY: html/template/check
@$(CHECK)
.PHONY: html/template/check
go/ast.lo: $(go_go_ast_files)
$(BUILDPACKAGE)
go/ast/check: $(CHECK_DEPS)
go/ast.lo: $(go_go_ast_files)
$(BUILDPACKAGE)
go/ast/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: go/ast/check
@$(CHECK)
.PHONY: go/ast/check
go/build.lo: $(go_go_build_files)
$(BUILDPACKAGE)
go/build/check: $(CHECK_DEPS)
go/build.lo: $(go_go_build_files)
$(BUILDPACKAGE)
go/build/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: go/build/check
@$(CHECK)
.PHONY: go/build/check
go/doc.lo: $(go_go_doc_files)
$(BUILDPACKAGE)
go/doc/check: $(CHECK_DEPS)
go/doc.lo: $(go_go_doc_files)
$(BUILDPACKAGE)
go/doc/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: go/doc/check
@$(CHECK)
.PHONY: go/doc/check
go/parser.lo: $(go_go_parser_files)
$(BUILDPACKAGE)
go/parser/check: $(CHECK_DEPS)
go/parser.lo: $(go_go_parser_files)
$(BUILDPACKAGE)
go/parser/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: go/parser/check
@$(CHECK)
.PHONY: go/parser/check
go/printer.lo: $(go_go_printer_files)
$(BUILDPACKAGE)
go/printer/check: $(CHECK_DEPS)
go/printer.lo: $(go_go_printer_files)
$(BUILDPACKAGE)
go/printer/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: go/printer/check
@$(CHECK)
.PHONY: go/printer/check
go/scanner.lo: $(go_go_scanner_files)
$(BUILDPACKAGE)
go/scanner/check: $(CHECK_DEPS)
go/scanner.lo: $(go_go_scanner_files)
$(BUILDPACKAGE)
go/scanner/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: go/scanner/check
@$(CHECK)
.PHONY: go/scanner/check
go/token.lo: $(go_go_token_files)
$(BUILDPACKAGE)
go/token/check: $(CHECK_DEPS)
go/token.lo: $(go_go_token_files)
$(BUILDPACKAGE)
go/token/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: go/token/check
@$(CHECK)
.PHONY: go/token/check
hash/adler32.lo: $(go_hash_adler32_files)
$(BUILDPACKAGE)
hash/adler32/check: $(CHECK_DEPS)
hash/adler32.lo: $(go_hash_adler32_files)
$(BUILDPACKAGE)
hash/adler32/check: $(CHECK_DEPS)
- @$(MKDIR_P) hash/adler32
@$(CHECK)
.PHONY: hash/adler32/check
@$(CHECK)
.PHONY: hash/adler32/check
hash/crc32.lo: $(go_hash_crc32_files)
$(BUILDPACKAGE)
hash/crc32/check: $(CHECK_DEPS)
hash/crc32.lo: $(go_hash_crc32_files)
$(BUILDPACKAGE)
hash/crc32/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: hash/crc32/check
@$(CHECK)
.PHONY: hash/crc32/check
hash/crc64.lo: $(go_hash_crc64_files)
$(BUILDPACKAGE)
hash/crc64/check: $(CHECK_DEPS)
hash/crc64.lo: $(go_hash_crc64_files)
$(BUILDPACKAGE)
hash/crc64/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: hash/crc64/check
@$(CHECK)
.PHONY: hash/crc64/check
hash/fnv.lo: $(go_hash_fnv_files)
$(BUILDPACKAGE)
hash/fnv/check: $(CHECK_DEPS)
hash/fnv.lo: $(go_hash_fnv_files)
$(BUILDPACKAGE)
hash/fnv/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: hash/fnv/check
@$(CHECK)
.PHONY: hash/fnv/check
image/color.lo: $(go_image_color_files)
$(BUILDPACKAGE)
image/color/check: $(CHECK_DEPS)
image/color.lo: $(go_image_color_files)
$(BUILDPACKAGE)
image/color/check: $(CHECK_DEPS)
- @$(MKDIR_P) image/color
@$(CHECK)
.PHONY: image/color/check
@$(CHECK)
.PHONY: image/color/check
image/draw.lo: $(go_image_draw_files)
$(BUILDPACKAGE)
image/draw/check: $(CHECK_DEPS)
image/draw.lo: $(go_image_draw_files)
$(BUILDPACKAGE)
image/draw/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: image/draw/check
@$(CHECK)
.PHONY: image/draw/check
image/gif.lo: $(go_image_gif_files)
$(BUILDPACKAGE)
image/gif/check: $(CHECK_DEPS)
image/gif.lo: $(go_image_gif_files)
$(BUILDPACKAGE)
image/gif/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: image/gif/check
@$(CHECK)
.PHONY: image/gif/check
image/jpeg.lo: $(go_image_jpeg_files)
$(BUILDPACKAGE)
image/jpeg/check: $(CHECK_DEPS)
image/jpeg.lo: $(go_image_jpeg_files)
$(BUILDPACKAGE)
image/jpeg/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: image/jpeg/check
@$(CHECK)
.PHONY: image/jpeg/check
image/png.lo: $(go_image_png_files)
$(BUILDPACKAGE)
image/png/check: $(CHECK_DEPS)
image/png.lo: $(go_image_png_files)
$(BUILDPACKAGE)
image/png/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: image/png/check
@$(CHECK)
.PHONY: image/png/check
index/suffixarray.lo: $(go_index_suffixarray_files)
$(BUILDPACKAGE)
index/suffixarray/check: $(CHECK_DEPS)
index/suffixarray.lo: $(go_index_suffixarray_files)
$(BUILDPACKAGE)
index/suffixarray/check: $(CHECK_DEPS)
- @$(MKDIR_P) index/suffixarray
@$(CHECK)
.PHONY: index/suffixarray/check
@$(CHECK)
.PHONY: index/suffixarray/check
io/ioutil.lo: $(go_io_ioutil_files)
$(BUILDPACKAGE)
io/ioutil/check: $(CHECK_DEPS)
io/ioutil.lo: $(go_io_ioutil_files)
$(BUILDPACKAGE)
io/ioutil/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: io/ioutil/check
@$(CHECK)
.PHONY: io/ioutil/check
@$(MKDIR_P) log/syslog
$(LTCOMPILE) -c -o $@ $(srcdir)/go/log/syslog/syslog_c.c
log/syslog/check: $(CHECK_DEPS)
@$(MKDIR_P) log/syslog
$(LTCOMPILE) -c -o $@ $(srcdir)/go/log/syslog/syslog_c.c
log/syslog/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: log/syslog/check
@$(CHECK)
.PHONY: log/syslog/check
math/big.lo: $(go_math_big_files)
$(BUILDPACKAGE)
math/big/check: $(CHECK_DEPS)
math/big.lo: $(go_math_big_files)
$(BUILDPACKAGE)
math/big/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: math/big/check
@$(CHECK)
.PHONY: math/big/check
math/cmplx.lo: $(go_math_cmplx_files)
$(BUILDPACKAGE)
math/cmplx/check: $(CHECK_DEPS)
math/cmplx.lo: $(go_math_cmplx_files)
$(BUILDPACKAGE)
math/cmplx/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: math/cmplx/check
@$(CHECK)
.PHONY: math/cmplx/check
math/rand.lo: $(go_math_rand_files)
$(BUILDPACKAGE)
math/rand/check: $(CHECK_DEPS)
math/rand.lo: $(go_math_rand_files)
$(BUILDPACKAGE)
math/rand/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: math/rand/check
@$(CHECK)
.PHONY: math/rand/check
mime/multipart.lo: $(go_mime_multipart_files)
$(BUILDPACKAGE)
mime/multipart/check: $(CHECK_DEPS)
mime/multipart.lo: $(go_mime_multipart_files)
$(BUILDPACKAGE)
mime/multipart/check: $(CHECK_DEPS)
- @$(MKDIR_P) mime/multipart
@$(CHECK)
.PHONY: mime/multipart/check
@$(CHECK)
.PHONY: mime/multipart/check
net/http.lo: $(go_net_http_files)
$(BUILDPACKAGE)
net/http/check: $(CHECK_DEPS)
net/http.lo: $(go_net_http_files)
$(BUILDPACKAGE)
net/http/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: net/http/check
@$(CHECK)
.PHONY: net/http/check
net/mail.lo: $(go_net_mail_files)
$(BUILDPACKAGE)
net/mail/check: $(CHECK_DEPS)
net/mail.lo: $(go_net_mail_files)
$(BUILDPACKAGE)
net/mail/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: net/mail/check
@$(CHECK)
.PHONY: net/mail/check
net/rpc.lo: $(go_net_rpc_files)
$(BUILDPACKAGE)
net/rpc/check: $(CHECK_DEPS)
net/rpc.lo: $(go_net_rpc_files)
$(BUILDPACKAGE)
net/rpc/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: net/rpc/check
@$(CHECK)
.PHONY: net/rpc/check
net/smtp.lo: $(go_net_smtp_files)
$(BUILDPACKAGE)
net/smtp/check: $(CHECK_DEPS)
net/smtp.lo: $(go_net_smtp_files)
$(BUILDPACKAGE)
net/smtp/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: net/smtp/check
@$(CHECK)
.PHONY: net/smtp/check
net/url.lo: $(go_net_url_files)
$(BUILDPACKAGE)
net/url/check: $(CHECK_DEPS)
net/url.lo: $(go_net_url_files)
$(BUILDPACKAGE)
net/url/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: net/url/check
@$(CHECK)
.PHONY: net/url/check
net/textproto.lo: $(go_net_textproto_files)
$(BUILDPACKAGE)
net/textproto/check: $(CHECK_DEPS)
net/textproto.lo: $(go_net_textproto_files)
$(BUILDPACKAGE)
net/textproto/check: $(CHECK_DEPS)
- @$(MKDIR_P) net/textproto
@$(CHECK)
.PHONY: net/textproto/check
@$(CHECK)
.PHONY: net/textproto/check
net/http/cgi.lo: $(go_net_http_cgi_files)
$(BUILDPACKAGE)
net/http/cgi/check: $(CHECK_DEPS)
net/http/cgi.lo: $(go_net_http_cgi_files)
$(BUILDPACKAGE)
net/http/cgi/check: $(CHECK_DEPS)
- @$(MKDIR_P) net/http/cgi
@$(CHECK)
.PHONY: net/http/cgi/check
@$(CHECK)
.PHONY: net/http/cgi/check
net/http/fcgi.lo: $(go_net_http_fcgi_files)
$(BUILDPACKAGE)
net/http/fcgi/check: $(CHECK_DEPS)
net/http/fcgi.lo: $(go_net_http_fcgi_files)
$(BUILDPACKAGE)
net/http/fcgi/check: $(CHECK_DEPS)
- @$(MKDIR_P) net/http/fcgi
@$(CHECK)
.PHONY: net/http/fcgi/check
@$(CHECK)
.PHONY: net/http/fcgi/check
net/http/httptest.lo: $(go_net_http_httptest_files)
$(BUILDPACKAGE)
net/http/httptest/check: $(check_deps)
net/http/httptest.lo: $(go_net_http_httptest_files)
$(BUILDPACKAGE)
net/http/httptest/check: $(check_deps)
- @$(MKDIR_P) net/http/httptest
@$(CHECK)
.PHONY: net/http/httptest/check
@$(CHECK)
.PHONY: net/http/httptest/check
net/http/httputil.lo: $(go_net_http_httputil_files)
$(BUILDPACKAGE)
net/http/httputil/check: $(check_deps)
net/http/httputil.lo: $(go_net_http_httputil_files)
$(BUILDPACKAGE)
net/http/httputil/check: $(check_deps)
- @$(MKDIR_P) net/http/httputil
@$(CHECK)
.PHONY: net/http/httputil/check
@$(CHECK)
.PHONY: net/http/httputil/check
net/http/pprof.lo: $(go_net_http_pprof_files)
$(BUILDPACKAGE)
net/http/pprof/check: $(CHECK_DEPS)
net/http/pprof.lo: $(go_net_http_pprof_files)
$(BUILDPACKAGE)
net/http/pprof/check: $(CHECK_DEPS)
- @$(MKDIR_P) net/http/pprof
@$(CHECK)
.PHONY: net/http/pprof/check
@$(CHECK)
.PHONY: net/http/pprof/check
net/rpc/jsonrpc.lo: $(go_net_rpc_jsonrpc_files)
$(BUILDPACKAGE)
net/rpc/jsonrpc/check: $(CHECK_DEPS)
net/rpc/jsonrpc.lo: $(go_net_rpc_jsonrpc_files)
$(BUILDPACKAGE)
net/rpc/jsonrpc/check: $(CHECK_DEPS)
- @$(MKDIR_P) net/rpc/jsonrpc
@$(CHECK)
.PHONY: net/rpc/jsonrpc/check
@$(CHECK)
.PHONY: net/rpc/jsonrpc/check
old/netchan.lo: $(go_old_netchan_files)
$(BUILDPACKAGE)
old/netchan/check: $(CHECK_DEPS)
old/netchan.lo: $(go_old_netchan_files)
$(BUILDPACKAGE)
old/netchan/check: $(CHECK_DEPS)
- @$(MKDIR_P) old/netchan
@$(CHECK)
.PHONY: old/netchan/check
@$(CHECK)
.PHONY: old/netchan/check
old/regexp.lo: $(go_old_regexp_files)
$(BUILDPACKAGE)
old/regexp/check: $(CHECK_DEPS)
old/regexp.lo: $(go_old_regexp_files)
$(BUILDPACKAGE)
old/regexp/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: old/regexp/check
@$(CHECK)
.PHONY: old/regexp/check
old/template.lo: $(go_old_template_files)
$(BUILDPACKAGE)
old/template/check: $(CHECK_DEPS)
old/template.lo: $(go_old_template_files)
$(BUILDPACKAGE)
old/template/check: $(CHECK_DEPS)
- @$(MKDIR_P) old/template
@$(CHECK)
.PHONY: old/template/check
@$(CHECK)
.PHONY: old/template/check
os/exec.lo: $(go_os_exec_files)
$(BUILDPACKAGE)
os/exec/check: $(CHECK_DEPS)
os/exec.lo: $(go_os_exec_files)
$(BUILDPACKAGE)
os/exec/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: os/exec/check
@$(CHECK)
.PHONY: os/exec/check
os/signal.lo: $(go_os_signal_files)
$(BUILDPACKAGE)
os/signal/check: $(CHECK_DEPS)
os/signal.lo: $(go_os_signal_files)
$(BUILDPACKAGE)
os/signal/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: os/signal/check
@$(CHECK)
.PHONY: os/signal/check
os/user.lo: $(go_os_user_files)
$(BUILDPACKAGE)
os/user/check: $(CHECK_DEPS)
os/user.lo: $(go_os_user_files)
$(BUILDPACKAGE)
os/user/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: os/user/check
@$(CHECK)
.PHONY: os/user/check
path/filepath.lo: $(go_path_filepath_files)
$(BUILDPACKAGE)
path/filepath/check: $(CHECK_DEPS)
path/filepath.lo: $(go_path_filepath_files)
$(BUILDPACKAGE)
path/filepath/check: $(CHECK_DEPS)
- @$(MKDIR_P) path/filepath
@$(CHECK)
.PHONY: path/filepath/check
@$(CHECK)
.PHONY: path/filepath/check
regexp/syntax.lo: $(go_regexp_syntax_files)
$(BUILDPACKAGE)
regexp/syntax/check: $(CHECK_DEPS)
regexp/syntax.lo: $(go_regexp_syntax_files)
$(BUILDPACKAGE)
regexp/syntax/check: $(CHECK_DEPS)
- @$(MKDIR_P) regexp/syntax
@$(CHECK)
.PHONY: regexp/syntax/check
@$(CHECK)
.PHONY: regexp/syntax/check
runtime/debug.lo: $(go_runtime_debug_files)
$(BUILDPACKAGE)
runtime/debug/check: $(CHECK_DEPS)
runtime/debug.lo: $(go_runtime_debug_files)
$(BUILDPACKAGE)
runtime/debug/check: $(CHECK_DEPS)
- @$(MKDIR_P) runtime/debug
@$(CHECK)
.PHONY: runtime/debug/check
@$(CHECK)
.PHONY: runtime/debug/check
runtime/pprof.lo: $(go_runtime_pprof_files)
$(BUILDPACKAGE)
runtime/pprof/check: $(CHECK_DEPS)
runtime/pprof.lo: $(go_runtime_pprof_files)
$(BUILDPACKAGE)
runtime/pprof/check: $(CHECK_DEPS)
- @$(MKDIR_P) runtime/pprof
@$(CHECK)
.PHONY: runtime/pprof/check
@$(CHECK)
.PHONY: runtime/pprof/check
sync/atomic_c.lo: $(go_sync_atomic_c_files) sync/atomic.lo
$(LTCOMPILE) -c -o $@ $(srcdir)/go/sync/atomic/atomic.c
sync/atomic/check: $(CHECK_DEPS)
sync/atomic_c.lo: $(go_sync_atomic_c_files) sync/atomic.lo
$(LTCOMPILE) -c -o $@ $(srcdir)/go/sync/atomic/atomic.c
sync/atomic/check: $(CHECK_DEPS)
- @$(MKDIR_P) sync/atomic
@$(CHECK)
.PHONY: sync/atomic/check
@$(CHECK)
.PHONY: sync/atomic/check
text/scanner.lo: $(go_text_scanner_files)
$(BUILDPACKAGE)
text/scanner/check: $(CHECK_DEPS)
text/scanner.lo: $(go_text_scanner_files)
$(BUILDPACKAGE)
text/scanner/check: $(CHECK_DEPS)
- @$(MKDIR_P) text/scanner
@$(CHECK)
.PHONY: text/scanner/check
@$(CHECK)
.PHONY: text/scanner/check
text/tabwriter.lo: $(go_text_tabwriter_files)
$(BUILDPACKAGE)
text/tabwriter/check: $(CHECK_DEPS)
text/tabwriter.lo: $(go_text_tabwriter_files)
$(BUILDPACKAGE)
text/tabwriter/check: $(CHECK_DEPS)
- @$(MKDIR_P) text/tabwriter
@$(CHECK)
.PHONY: text/tabwriter/check
@$(CHECK)
.PHONY: text/tabwriter/check
text/template/parse.lo: $(go_text_template_parse_files)
$(BUILDPACKAGE)
text/template/parse/check: $(CHECK_DEPS)
text/template/parse.lo: $(go_text_template_parse_files)
$(BUILDPACKAGE)
text/template/parse/check: $(CHECK_DEPS)
- @$(MKDIR_P) text/template/parse
@$(CHECK)
.PHONY: text/template/parse/check
@$(CHECK)
.PHONY: text/template/parse/check
testing/iotest.lo: $(go_testing_iotest_files)
$(BUILDPACKAGE)
testing/iotest/check: $(CHECK_DEPS)
testing/iotest.lo: $(go_testing_iotest_files)
$(BUILDPACKAGE)
testing/iotest/check: $(CHECK_DEPS)
- @$(MKDIR_P) testing/iotest
@$(CHECK)
.PHONY: testing/iotest/check
@$(CHECK)
.PHONY: testing/iotest/check
testing/quick.lo: $(go_testing_quick_files)
$(BUILDPACKAGE)
testing/quick/check: $(CHECK_DEPS)
testing/quick.lo: $(go_testing_quick_files)
$(BUILDPACKAGE)
testing/quick/check: $(CHECK_DEPS)
- @$(MKDIR_P) testing/quick
@$(CHECK)
.PHONY: testing/quick/check
@$(CHECK)
.PHONY: testing/quick/check
unicode/utf16.lo: $(go_unicode_utf16_files)
$(BUILDPACKAGE)
unicode/utf16/check: $(CHECK_DEPS)
unicode/utf16.lo: $(go_unicode_utf16_files)
$(BUILDPACKAGE)
unicode/utf16/check: $(CHECK_DEPS)
- @$(MKDIR_P) unicode/utf16
@$(CHECK)
.PHONY: unicode/utf16/check
@$(CHECK)
.PHONY: unicode/utf16/check
unicode/utf8.lo: $(go_unicode_utf8_files)
$(BUILDPACKAGE)
unicode/utf8/check: $(CHECK_DEPS)
unicode/utf8.lo: $(go_unicode_utf8_files)
$(BUILDPACKAGE)
unicode/utf8/check: $(CHECK_DEPS)
- @$(MKDIR_P) unicode/utf8
@$(CHECK)
.PHONY: unicode/utf8/check
@$(CHECK)
.PHONY: unicode/utf8/check
LD_LIBRARY_PATH="`${PWD_COMMAND}`/.libs:$${libgccdir}:${LD_LIBRARY_PATH}"; \
LD_LIBRARY_PATH=`echo $${LD_LIBRARY_PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; \
export LD_LIBRARY_PATH; \
LD_LIBRARY_PATH="`${PWD_COMMAND}`/.libs:$${libgccdir}:${LD_LIBRARY_PATH}"; \
LD_LIBRARY_PATH=`echo $${LD_LIBRARY_PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; \
export LD_LIBRARY_PATH; \
rm -f $@-testsum $@-testlog; \
if test "$(use_dejagnu)" = "yes"; then \
$(SHELL) $(srcdir)/testsuite/gotest --dejagnu=yes --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$(go_$(subst /,_,$(@D))_files)" --testname="$(@D)" --goarch="$(GOARCH)" $(GOTESTFLAGS); \
rm -f $@-testsum $@-testlog; \
if test "$(use_dejagnu)" = "yes"; then \
$(SHELL) $(srcdir)/testsuite/gotest --dejagnu=yes --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$(go_$(subst /,_,$(@D))_files)" --testname="$(@D)" --goarch="$(GOARCH)" $(GOTESTFLAGS); \
archive/tar.lo: $(go_archive_tar_files)
$(BUILDPACKAGE)
archive/tar/check: $(CHECK_DEPS)
archive/tar.lo: $(go_archive_tar_files)
$(BUILDPACKAGE)
archive/tar/check: $(CHECK_DEPS)
- @$(MKDIR_P) archive/tar
@$(CHECK)
.PHONY: archive/tar/check
@$(CHECK)
.PHONY: archive/tar/check
archive/zip.lo: $(go_archive_zip_files)
$(BUILDPACKAGE)
archive/zip/check: $(CHECK_DEPS)
archive/zip.lo: $(go_archive_zip_files)
$(BUILDPACKAGE)
archive/zip/check: $(CHECK_DEPS)
- @$(MKDIR_P) archive/zip
@$(CHECK)
.PHONY: archive/zip/check
@$(CHECK)
.PHONY: archive/zip/check
compress/bzip2.lo: $(go_compress_bzip2_files)
$(BUILDPACKAGE)
compress/bzip2/check: $(CHECK_DEPS)
compress/bzip2.lo: $(go_compress_bzip2_files)
$(BUILDPACKAGE)
compress/bzip2/check: $(CHECK_DEPS)
- @$(MKDIR_P) compress/bzip2
@$(CHECK)
.PHONY: compress/bzip2/check
@$(CHECK)
.PHONY: compress/bzip2/check
compress/flate.lo: $(go_compress_flate_files)
$(BUILDPACKAGE)
compress/flate/check: $(CHECK_DEPS)
compress/flate.lo: $(go_compress_flate_files)
$(BUILDPACKAGE)
compress/flate/check: $(CHECK_DEPS)
- @$(MKDIR_P) compress/flate
@$(CHECK)
.PHONY: compress/flate/check
@$(CHECK)
.PHONY: compress/flate/check
compress/gzip.lo: $(go_compress_gzip_files)
$(BUILDPACKAGE)
compress/gzip/check: $(CHECK_DEPS)
compress/gzip.lo: $(go_compress_gzip_files)
$(BUILDPACKAGE)
compress/gzip/check: $(CHECK_DEPS)
- @$(MKDIR_P) compress/gzip
@$(CHECK)
.PHONY: compress/gzip/check
@$(CHECK)
.PHONY: compress/gzip/check
compress/lzw.lo: $(go_compress_lzw_files)
$(BUILDPACKAGE)
compress/lzw/check: $(CHECK_DEPS)
compress/lzw.lo: $(go_compress_lzw_files)
$(BUILDPACKAGE)
compress/lzw/check: $(CHECK_DEPS)
- @$(MKDIR_P) compress/lzw
@$(CHECK)
.PHONY: compress/lzw/check
@$(CHECK)
.PHONY: compress/lzw/check
compress/zlib.lo: $(go_compress_zlib_files)
$(BUILDPACKAGE)
compress/zlib/check: $(CHECK_DEPS)
compress/zlib.lo: $(go_compress_zlib_files)
$(BUILDPACKAGE)
compress/zlib/check: $(CHECK_DEPS)
- @$(MKDIR_P) compress/zlib
@$(CHECK)
.PHONY: compress/zlib/check
@$(CHECK)
.PHONY: compress/zlib/check
container/heap.lo: $(go_container_heap_files)
$(BUILDPACKAGE)
container/heap/check: $(CHECK_DEPS)
container/heap.lo: $(go_container_heap_files)
$(BUILDPACKAGE)
container/heap/check: $(CHECK_DEPS)
- @$(MKDIR_P) container/heap
@$(CHECK)
.PHONY: container/heap/check
@$(CHECK)
.PHONY: container/heap/check
container/list.lo: $(go_container_list_files)
$(BUILDPACKAGE)
container/list/check: $(CHECK_DEPS)
container/list.lo: $(go_container_list_files)
$(BUILDPACKAGE)
container/list/check: $(CHECK_DEPS)
- @$(MKDIR_P) container/list
@$(CHECK)
.PHONY: container/list/check
@$(CHECK)
.PHONY: container/list/check
container/ring.lo: $(go_container_ring_files)
$(BUILDPACKAGE)
container/ring/check: $(CHECK_DEPS)
container/ring.lo: $(go_container_ring_files)
$(BUILDPACKAGE)
container/ring/check: $(CHECK_DEPS)
- @$(MKDIR_P) container/ring
@$(CHECK)
.PHONY: container/ring/check
@$(CHECK)
.PHONY: container/ring/check
crypto/aes.lo: $(go_crypto_aes_files)
$(BUILDPACKAGE)
crypto/aes/check: $(CHECK_DEPS)
crypto/aes.lo: $(go_crypto_aes_files)
$(BUILDPACKAGE)
crypto/aes/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: crypto/aes/check
@$(CHECK)
.PHONY: crypto/aes/check
crypto/cipher.lo: $(go_crypto_cipher_files)
$(BUILDPACKAGE)
crypto/cipher/check: $(CHECK_DEPS)
crypto/cipher.lo: $(go_crypto_cipher_files)
$(BUILDPACKAGE)
crypto/cipher/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/cipher
@$(CHECK)
.PHONY: crypto/cipher/check
@$(CHECK)
.PHONY: crypto/cipher/check
crypto/des.lo: $(go_crypto_des_files)
$(BUILDPACKAGE)
crypto/des/check: $(CHECK_DEPS)
crypto/des.lo: $(go_crypto_des_files)
$(BUILDPACKAGE)
crypto/des/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: crypto/des/check
@$(CHECK)
.PHONY: crypto/des/check
crypto/dsa.lo: $(go_crypto_dsa_files)
$(BUILDPACKAGE)
crypto/dsa/check: $(CHECK_DEPS)
crypto/dsa.lo: $(go_crypto_dsa_files)
$(BUILDPACKAGE)
crypto/dsa/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: crypto/dsa/check
@$(CHECK)
.PHONY: crypto/dsa/check
crypto/ecdsa.lo: $(go_crypto_ecdsa_files)
$(BUILDPACKAGE)
crypto/ecdsa/check: $(CHECK_DEPS)
crypto/ecdsa.lo: $(go_crypto_ecdsa_files)
$(BUILDPACKAGE)
crypto/ecdsa/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/ecdsa
@$(CHECK)
.PHONY: crypto/ecdsa/check
@$(CHECK)
.PHONY: crypto/ecdsa/check
crypto/elliptic.lo: $(go_crypto_elliptic_files)
$(BUILDPACKAGE)
crypto/elliptic/check: $(CHECK_DEPS)
crypto/elliptic.lo: $(go_crypto_elliptic_files)
$(BUILDPACKAGE)
crypto/elliptic/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/elliptic
@$(CHECK)
.PHONY: crypto/elliptic/check
@$(CHECK)
.PHONY: crypto/elliptic/check
crypto/hmac.lo: $(go_crypto_hmac_files)
$(BUILDPACKAGE)
crypto/hmac/check: $(CHECK_DEPS)
crypto/hmac.lo: $(go_crypto_hmac_files)
$(BUILDPACKAGE)
crypto/hmac/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/hmac
@$(CHECK)
.PHONY: crypto/hmac/check
@$(CHECK)
.PHONY: crypto/hmac/check
crypto/md5.lo: $(go_crypto_md5_files)
$(BUILDPACKAGE)
crypto/md5/check: $(CHECK_DEPS)
crypto/md5.lo: $(go_crypto_md5_files)
$(BUILDPACKAGE)
crypto/md5/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: crypto/md5/check
@$(CHECK)
.PHONY: crypto/md5/check
crypto/rand.lo: $(go_crypto_rand_files)
$(BUILDPACKAGE)
crypto/rand/check: $(CHECK_DEPS)
crypto/rand.lo: $(go_crypto_rand_files)
$(BUILDPACKAGE)
crypto/rand/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/rand
@$(CHECK)
.PHONY: crypto/rand/check
@$(CHECK)
.PHONY: crypto/rand/check
crypto/rc4.lo: $(go_crypto_rc4_files)
$(BUILDPACKAGE)
crypto/rc4/check: $(CHECK_DEPS)
crypto/rc4.lo: $(go_crypto_rc4_files)
$(BUILDPACKAGE)
crypto/rc4/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: crypto/rc4/check
@$(CHECK)
.PHONY: crypto/rc4/check
crypto/rsa.lo: $(go_crypto_rsa_files)
$(BUILDPACKAGE)
crypto/rsa/check: $(CHECK_DEPS)
crypto/rsa.lo: $(go_crypto_rsa_files)
$(BUILDPACKAGE)
crypto/rsa/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: crypto/rsa/check
@$(CHECK)
.PHONY: crypto/rsa/check
crypto/sha1.lo: $(go_crypto_sha1_files)
$(BUILDPACKAGE)
crypto/sha1/check: $(CHECK_DEPS)
crypto/sha1.lo: $(go_crypto_sha1_files)
$(BUILDPACKAGE)
crypto/sha1/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/sha1
@$(CHECK)
.PHONY: crypto/sha1/check
@$(CHECK)
.PHONY: crypto/sha1/check
crypto/sha256.lo: $(go_crypto_sha256_files)
$(BUILDPACKAGE)
crypto/sha256/check: $(CHECK_DEPS)
crypto/sha256.lo: $(go_crypto_sha256_files)
$(BUILDPACKAGE)
crypto/sha256/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/sha256
@$(CHECK)
.PHONY: crypto/sha256/check
@$(CHECK)
.PHONY: crypto/sha256/check
crypto/sha512.lo: $(go_crypto_sha512_files)
$(BUILDPACKAGE)
crypto/sha512/check: $(CHECK_DEPS)
crypto/sha512.lo: $(go_crypto_sha512_files)
$(BUILDPACKAGE)
crypto/sha512/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/sha512
@$(CHECK)
.PHONY: crypto/sha512/check
@$(CHECK)
.PHONY: crypto/sha512/check
crypto/subtle.lo: $(go_crypto_subtle_files)
$(BUILDPACKAGE)
crypto/subtle/check: $(CHECK_DEPS)
crypto/subtle.lo: $(go_crypto_subtle_files)
$(BUILDPACKAGE)
crypto/subtle/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/subtle
@$(CHECK)
.PHONY: crypto/subtle/check
@$(CHECK)
.PHONY: crypto/subtle/check
crypto/tls.lo: $(go_crypto_tls_files)
$(BUILDPACKAGE)
crypto/tls/check: $(CHECK_DEPS)
crypto/tls.lo: $(go_crypto_tls_files)
$(BUILDPACKAGE)
crypto/tls/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: crypto/tls/check
@$(CHECK)
.PHONY: crypto/tls/check
crypto/x509.lo: $(go_crypto_x509_files)
$(BUILDPACKAGE)
crypto/x509/check: $(CHECK_DEPS)
crypto/x509.lo: $(go_crypto_x509_files)
$(BUILDPACKAGE)
crypto/x509/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/x509
@$(CHECK)
.PHONY: crypto/x509/check
@$(CHECK)
.PHONY: crypto/x509/check
crypto/x509/pkix.lo: $(go_crypto_x509_pkix_files)
$(BUILDPACKAGE)
crypto/x509/pkix/check: $(CHECK_DEPS)
crypto/x509/pkix.lo: $(go_crypto_x509_pkix_files)
$(BUILDPACKAGE)
crypto/x509/pkix/check: $(CHECK_DEPS)
- @$(MKDIR_P) crypto/x509/pkix
@$(CHECK)
.PHONY: crypto/x509/pkix/check
@$(CHECK)
.PHONY: crypto/x509/pkix/check
database/sql.lo: $(go_database_sql_files)
$(BUILDPACKAGE)
database/sql/check: $(CHECK_DEPS)
database/sql.lo: $(go_database_sql_files)
$(BUILDPACKAGE)
database/sql/check: $(CHECK_DEPS)
- @$(MKDIR_P) database/sql
@$(CHECK)
.PHONY: database/sql/check
@$(CHECK)
.PHONY: database/sql/check
database/sql/driver.lo: $(go_database_sql_driver_files)
$(BUILDPACKAGE)
database/sql/driver/check: $(CHECK_DEPS)
database/sql/driver.lo: $(go_database_sql_driver_files)
$(BUILDPACKAGE)
database/sql/driver/check: $(CHECK_DEPS)
- @$(MKDIR_P) database/sql/driver
@$(CHECK)
.PHONY: database/sql/driver/check
@$(CHECK)
.PHONY: database/sql/driver/check
debug/dwarf.lo: $(go_debug_dwarf_files)
$(BUILDPACKAGE)
debug/dwarf/check: $(CHECK_DEPS)
debug/dwarf.lo: $(go_debug_dwarf_files)
$(BUILDPACKAGE)
debug/dwarf/check: $(CHECK_DEPS)
- @$(MKDIR_P) debug/dwarf
@$(CHECK)
.PHONY: debug/dwarf/check
@$(CHECK)
.PHONY: debug/dwarf/check
debug/elf.lo: $(go_debug_elf_files)
$(BUILDPACKAGE)
debug/elf/check: $(CHECK_DEPS)
debug/elf.lo: $(go_debug_elf_files)
$(BUILDPACKAGE)
debug/elf/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: debug/elf/check
@$(CHECK)
.PHONY: debug/elf/check
debug/gosym.lo: $(go_debug_gosym_files)
$(BUILDPACKAGE)
debug/gosym/check: $(CHECK_DEPS)
debug/gosym.lo: $(go_debug_gosym_files)
$(BUILDPACKAGE)
debug/gosym/check: $(CHECK_DEPS)
- @$(MKDIR_P) debug/gosym
@$(CHECK)
.PHONY: debug/gosym/check
@$(CHECK)
.PHONY: debug/gosym/check
debug/macho.lo: $(go_debug_macho_files)
$(BUILDPACKAGE)
debug/macho/check: $(CHECK_DEPS)
debug/macho.lo: $(go_debug_macho_files)
$(BUILDPACKAGE)
debug/macho/check: $(CHECK_DEPS)
- @$(MKDIR_P) debug/macho
@$(CHECK)
.PHONY: debug/macho/check
@$(CHECK)
.PHONY: debug/macho/check
debug/pe.lo: $(go_debug_pe_files)
$(BUILDPACKAGE)
debug/pe/check: $(CHECK_DEPS)
debug/pe.lo: $(go_debug_pe_files)
$(BUILDPACKAGE)
debug/pe/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: debug/pe/check
@$(CHECK)
.PHONY: debug/pe/check
encoding/asn1.lo: $(go_encoding_asn1_files)
$(BUILDPACKAGE)
encoding/asn1/check: $(CHECK_DEPS)
encoding/asn1.lo: $(go_encoding_asn1_files)
$(BUILDPACKAGE)
encoding/asn1/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/asn1
@$(CHECK)
.PHONY: encoding/asn1/check
@$(CHECK)
.PHONY: encoding/asn1/check
encoding/ascii85.lo: $(go_encoding_ascii85_files)
$(BUILDPACKAGE)
encoding/ascii85/check: $(CHECK_DEPS)
encoding/ascii85.lo: $(go_encoding_ascii85_files)
$(BUILDPACKAGE)
encoding/ascii85/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/ascii85
@$(CHECK)
.PHONY: encoding/ascii85/check
@$(CHECK)
.PHONY: encoding/ascii85/check
encoding/base32.lo: $(go_encoding_base32_files)
$(BUILDPACKAGE)
encoding/base32/check: $(CHECK_DEPS)
encoding/base32.lo: $(go_encoding_base32_files)
$(BUILDPACKAGE)
encoding/base32/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/base32
@$(CHECK)
.PHONY: encoding/base32/check
@$(CHECK)
.PHONY: encoding/base32/check
encoding/base64.lo: $(go_encoding_base64_files)
$(BUILDPACKAGE)
encoding/base64/check: $(CHECK_DEPS)
encoding/base64.lo: $(go_encoding_base64_files)
$(BUILDPACKAGE)
encoding/base64/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/base64
@$(CHECK)
.PHONY: encoding/base64/check
@$(CHECK)
.PHONY: encoding/base64/check
encoding/binary.lo: $(go_encoding_binary_files)
$(BUILDPACKAGE)
encoding/binary/check: $(CHECK_DEPS)
encoding/binary.lo: $(go_encoding_binary_files)
$(BUILDPACKAGE)
encoding/binary/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/binary
@$(CHECK)
.PHONY: encoding/binary/check
@$(CHECK)
.PHONY: encoding/binary/check
encoding/csv.lo: $(go_encoding_csv_files)
$(BUILDPACKAGE)
encoding/csv/check: $(CHECK_DEPS)
encoding/csv.lo: $(go_encoding_csv_files)
$(BUILDPACKAGE)
encoding/csv/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/csv
@$(CHECK)
.PHONY: encoding/csv/check
@$(CHECK)
.PHONY: encoding/csv/check
encoding/gob.lo: $(go_encoding_gob_files)
$(BUILDPACKAGE)
encoding/gob/check: $(CHECK_DEPS)
encoding/gob.lo: $(go_encoding_gob_files)
$(BUILDPACKAGE)
encoding/gob/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/gob
@$(CHECK)
.PHONY: encoding/gob/check
@$(CHECK)
.PHONY: encoding/gob/check
encoding/hex.lo: $(go_encoding_hex_files)
$(BUILDPACKAGE)
encoding/hex/check: $(CHECK_DEPS)
encoding/hex.lo: $(go_encoding_hex_files)
$(BUILDPACKAGE)
encoding/hex/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/hex
@$(CHECK)
.PHONY: encoding/hex/check
@$(CHECK)
.PHONY: encoding/hex/check
encoding/json.lo: $(go_encoding_json_files)
$(BUILDPACKAGE)
encoding/json/check: $(CHECK_DEPS)
encoding/json.lo: $(go_encoding_json_files)
$(BUILDPACKAGE)
encoding/json/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/json
@$(CHECK)
.PHONY: encoding/json/check
@$(CHECK)
.PHONY: encoding/json/check
encoding/pem.lo: $(go_encoding_pem_files)
$(BUILDPACKAGE)
encoding/pem/check: $(CHECK_DEPS)
encoding/pem.lo: $(go_encoding_pem_files)
$(BUILDPACKAGE)
encoding/pem/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/pem
@$(CHECK)
.PHONY: encoding/pem/check
@$(CHECK)
.PHONY: encoding/pem/check
encoding/xml.lo: $(go_encoding_xml_files)
$(BUILDPACKAGE)
encoding/xml/check: $(CHECK_DEPS)
encoding/xml.lo: $(go_encoding_xml_files)
$(BUILDPACKAGE)
encoding/xml/check: $(CHECK_DEPS)
- @$(MKDIR_P) encoding/xml
@$(CHECK)
.PHONY: encoding/xml/check
@$(CHECK)
.PHONY: encoding/xml/check
exp/ebnf.lo: $(go_exp_ebnf_files)
$(BUILDPACKAGE)
exp/ebnf/check: $(CHECK_DEPS)
exp/ebnf.lo: $(go_exp_ebnf_files)
$(BUILDPACKAGE)
exp/ebnf/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: exp/ebnf/check
@$(CHECK)
.PHONY: exp/ebnf/check
exp/html.lo: $(go_exp_html_files)
$(BUILDPACKAGE)
exp/html/check: $(CHECK_DEPS)
exp/html.lo: $(go_exp_html_files)
$(BUILDPACKAGE)
exp/html/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: exp/html/check
@$(CHECK)
.PHONY: exp/html/check
exp/norm.lo: $(go_exp_norm_files)
$(BUILDPACKAGE)
exp/norm/check: $(CHECK_DEPS)
exp/norm.lo: $(go_exp_norm_files)
$(BUILDPACKAGE)
exp/norm/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: exp/norm/check
@$(CHECK)
.PHONY: exp/norm/check
exp/proxy.lo: $(go_exp_proxy_files)
$(BUILDPACKAGE)
exp/proxy/check: $(CHECK_DEPS)
exp/proxy.lo: $(go_exp_proxy_files)
$(BUILDPACKAGE)
exp/proxy/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: exp/proxy/check
@$(CHECK)
.PHONY: exp/proxy/check
exp/terminal.lo: $(go_exp_terminal_files)
$(BUILDPACKAGE)
exp/terminal/check: $(CHECK_DEPS)
exp/terminal.lo: $(go_exp_terminal_files)
$(BUILDPACKAGE)
exp/terminal/check: $(CHECK_DEPS)
- @$(MKDIR_P) exp/terminal
@$(CHECK)
.PHONY: exp/terminal/check
@$(CHECK)
.PHONY: exp/terminal/check
exp/types.lo: $(go_exp_types_files)
$(BUILDPACKAGE)
exp/types/check: $(CHECK_DEPS)
exp/types.lo: $(go_exp_types_files)
$(BUILDPACKAGE)
exp/types/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: exp/types/check
@$(CHECK)
.PHONY: exp/types/check
exp/utf8string.lo: $(go_exp_utf8string_files)
$(BUILDPACKAGE)
exp/utf8string/check: $(CHECK_DEPS)
exp/utf8string.lo: $(go_exp_utf8string_files)
$(BUILDPACKAGE)
exp/utf8string/check: $(CHECK_DEPS)
- @$(MKDIR_P) exp/utf8string
@$(CHECK)
.PHONY: exp/utf8string/check
@$(CHECK)
.PHONY: exp/utf8string/check
exp/inotify.lo: $(go_exp_inotify_files)
$(BUILDPACKAGE)
exp/inotify/check: $(CHECK_DEPS)
exp/inotify.lo: $(go_exp_inotify_files)
$(BUILDPACKAGE)
exp/inotify/check: $(CHECK_DEPS)
- @$(MKDIR_P) exp/inotify
@$(CHECK)
.PHONY: exp/inotify/check
@$(CHECK)
.PHONY: exp/inotify/check
html/template.lo: $(go_html_template_files)
$(BUILDPACKAGE)
html/template/check: $(CHECK_DEPS)
html/template.lo: $(go_html_template_files)
$(BUILDPACKAGE)
html/template/check: $(CHECK_DEPS)
- @$(MKDIR_P) html/template
@$(CHECK)
.PHONY: html/template/check
@$(CHECK)
.PHONY: html/template/check
go/ast.lo: $(go_go_ast_files)
$(BUILDPACKAGE)
go/ast/check: $(CHECK_DEPS)
go/ast.lo: $(go_go_ast_files)
$(BUILDPACKAGE)
go/ast/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: go/ast/check
@$(CHECK)
.PHONY: go/ast/check
go/build.lo: $(go_go_build_files)
$(BUILDPACKAGE)
go/build/check: $(CHECK_DEPS)
go/build.lo: $(go_go_build_files)
$(BUILDPACKAGE)
go/build/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: go/build/check
@$(CHECK)
.PHONY: go/build/check
go/doc.lo: $(go_go_doc_files)
$(BUILDPACKAGE)
go/doc/check: $(CHECK_DEPS)
go/doc.lo: $(go_go_doc_files)
$(BUILDPACKAGE)
go/doc/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: go/doc/check
@$(CHECK)
.PHONY: go/doc/check
go/parser.lo: $(go_go_parser_files)
$(BUILDPACKAGE)
go/parser/check: $(CHECK_DEPS)
go/parser.lo: $(go_go_parser_files)
$(BUILDPACKAGE)
go/parser/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: go/parser/check
@$(CHECK)
.PHONY: go/parser/check
go/printer.lo: $(go_go_printer_files)
$(BUILDPACKAGE)
go/printer/check: $(CHECK_DEPS)
go/printer.lo: $(go_go_printer_files)
$(BUILDPACKAGE)
go/printer/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: go/printer/check
@$(CHECK)
.PHONY: go/printer/check
go/scanner.lo: $(go_go_scanner_files)
$(BUILDPACKAGE)
go/scanner/check: $(CHECK_DEPS)
go/scanner.lo: $(go_go_scanner_files)
$(BUILDPACKAGE)
go/scanner/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: go/scanner/check
@$(CHECK)
.PHONY: go/scanner/check
go/token.lo: $(go_go_token_files)
$(BUILDPACKAGE)
go/token/check: $(CHECK_DEPS)
go/token.lo: $(go_go_token_files)
$(BUILDPACKAGE)
go/token/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: go/token/check
@$(CHECK)
.PHONY: go/token/check
hash/adler32.lo: $(go_hash_adler32_files)
$(BUILDPACKAGE)
hash/adler32/check: $(CHECK_DEPS)
hash/adler32.lo: $(go_hash_adler32_files)
$(BUILDPACKAGE)
hash/adler32/check: $(CHECK_DEPS)
- @$(MKDIR_P) hash/adler32
@$(CHECK)
.PHONY: hash/adler32/check
@$(CHECK)
.PHONY: hash/adler32/check
hash/crc32.lo: $(go_hash_crc32_files)
$(BUILDPACKAGE)
hash/crc32/check: $(CHECK_DEPS)
hash/crc32.lo: $(go_hash_crc32_files)
$(BUILDPACKAGE)
hash/crc32/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: hash/crc32/check
@$(CHECK)
.PHONY: hash/crc32/check
hash/crc64.lo: $(go_hash_crc64_files)
$(BUILDPACKAGE)
hash/crc64/check: $(CHECK_DEPS)
hash/crc64.lo: $(go_hash_crc64_files)
$(BUILDPACKAGE)
hash/crc64/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: hash/crc64/check
@$(CHECK)
.PHONY: hash/crc64/check
hash/fnv.lo: $(go_hash_fnv_files)
$(BUILDPACKAGE)
hash/fnv/check: $(CHECK_DEPS)
hash/fnv.lo: $(go_hash_fnv_files)
$(BUILDPACKAGE)
hash/fnv/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: hash/fnv/check
@$(CHECK)
.PHONY: hash/fnv/check
image/color.lo: $(go_image_color_files)
$(BUILDPACKAGE)
image/color/check: $(CHECK_DEPS)
image/color.lo: $(go_image_color_files)
$(BUILDPACKAGE)
image/color/check: $(CHECK_DEPS)
- @$(MKDIR_P) image/color
@$(CHECK)
.PHONY: image/color/check
@$(CHECK)
.PHONY: image/color/check
image/draw.lo: $(go_image_draw_files)
$(BUILDPACKAGE)
image/draw/check: $(CHECK_DEPS)
image/draw.lo: $(go_image_draw_files)
$(BUILDPACKAGE)
image/draw/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: image/draw/check
@$(CHECK)
.PHONY: image/draw/check
image/gif.lo: $(go_image_gif_files)
$(BUILDPACKAGE)
image/gif/check: $(CHECK_DEPS)
image/gif.lo: $(go_image_gif_files)
$(BUILDPACKAGE)
image/gif/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: image/gif/check
@$(CHECK)
.PHONY: image/gif/check
image/jpeg.lo: $(go_image_jpeg_files)
$(BUILDPACKAGE)
image/jpeg/check: $(CHECK_DEPS)
image/jpeg.lo: $(go_image_jpeg_files)
$(BUILDPACKAGE)
image/jpeg/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: image/jpeg/check
@$(CHECK)
.PHONY: image/jpeg/check
image/png.lo: $(go_image_png_files)
$(BUILDPACKAGE)
image/png/check: $(CHECK_DEPS)
image/png.lo: $(go_image_png_files)
$(BUILDPACKAGE)
image/png/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: image/png/check
@$(CHECK)
.PHONY: image/png/check
index/suffixarray.lo: $(go_index_suffixarray_files)
$(BUILDPACKAGE)
index/suffixarray/check: $(CHECK_DEPS)
index/suffixarray.lo: $(go_index_suffixarray_files)
$(BUILDPACKAGE)
index/suffixarray/check: $(CHECK_DEPS)
- @$(MKDIR_P) index/suffixarray
@$(CHECK)
.PHONY: index/suffixarray/check
@$(CHECK)
.PHONY: index/suffixarray/check
io/ioutil.lo: $(go_io_ioutil_files)
$(BUILDPACKAGE)
io/ioutil/check: $(CHECK_DEPS)
io/ioutil.lo: $(go_io_ioutil_files)
$(BUILDPACKAGE)
io/ioutil/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: io/ioutil/check
@$(CHECK)
.PHONY: io/ioutil/check
@$(MKDIR_P) log/syslog
$(LTCOMPILE) -c -o $@ $(srcdir)/go/log/syslog/syslog_c.c
log/syslog/check: $(CHECK_DEPS)
@$(MKDIR_P) log/syslog
$(LTCOMPILE) -c -o $@ $(srcdir)/go/log/syslog/syslog_c.c
log/syslog/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: log/syslog/check
@$(CHECK)
.PHONY: log/syslog/check
math/big.lo: $(go_math_big_files)
$(BUILDPACKAGE)
math/big/check: $(CHECK_DEPS)
math/big.lo: $(go_math_big_files)
$(BUILDPACKAGE)
math/big/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: math/big/check
@$(CHECK)
.PHONY: math/big/check
math/cmplx.lo: $(go_math_cmplx_files)
$(BUILDPACKAGE)
math/cmplx/check: $(CHECK_DEPS)
math/cmplx.lo: $(go_math_cmplx_files)
$(BUILDPACKAGE)
math/cmplx/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: math/cmplx/check
@$(CHECK)
.PHONY: math/cmplx/check
math/rand.lo: $(go_math_rand_files)
$(BUILDPACKAGE)
math/rand/check: $(CHECK_DEPS)
math/rand.lo: $(go_math_rand_files)
$(BUILDPACKAGE)
math/rand/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: math/rand/check
@$(CHECK)
.PHONY: math/rand/check
mime/multipart.lo: $(go_mime_multipart_files)
$(BUILDPACKAGE)
mime/multipart/check: $(CHECK_DEPS)
mime/multipart.lo: $(go_mime_multipart_files)
$(BUILDPACKAGE)
mime/multipart/check: $(CHECK_DEPS)
- @$(MKDIR_P) mime/multipart
@$(CHECK)
.PHONY: mime/multipart/check
@$(CHECK)
.PHONY: mime/multipart/check
net/http.lo: $(go_net_http_files)
$(BUILDPACKAGE)
net/http/check: $(CHECK_DEPS)
net/http.lo: $(go_net_http_files)
$(BUILDPACKAGE)
net/http/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: net/http/check
@$(CHECK)
.PHONY: net/http/check
net/mail.lo: $(go_net_mail_files)
$(BUILDPACKAGE)
net/mail/check: $(CHECK_DEPS)
net/mail.lo: $(go_net_mail_files)
$(BUILDPACKAGE)
net/mail/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: net/mail/check
@$(CHECK)
.PHONY: net/mail/check
net/rpc.lo: $(go_net_rpc_files)
$(BUILDPACKAGE)
net/rpc/check: $(CHECK_DEPS)
net/rpc.lo: $(go_net_rpc_files)
$(BUILDPACKAGE)
net/rpc/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: net/rpc/check
@$(CHECK)
.PHONY: net/rpc/check
net/smtp.lo: $(go_net_smtp_files)
$(BUILDPACKAGE)
net/smtp/check: $(CHECK_DEPS)
net/smtp.lo: $(go_net_smtp_files)
$(BUILDPACKAGE)
net/smtp/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: net/smtp/check
@$(CHECK)
.PHONY: net/smtp/check
net/url.lo: $(go_net_url_files)
$(BUILDPACKAGE)
net/url/check: $(CHECK_DEPS)
net/url.lo: $(go_net_url_files)
$(BUILDPACKAGE)
net/url/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: net/url/check
@$(CHECK)
.PHONY: net/url/check
net/textproto.lo: $(go_net_textproto_files)
$(BUILDPACKAGE)
net/textproto/check: $(CHECK_DEPS)
net/textproto.lo: $(go_net_textproto_files)
$(BUILDPACKAGE)
net/textproto/check: $(CHECK_DEPS)
- @$(MKDIR_P) net/textproto
@$(CHECK)
.PHONY: net/textproto/check
@$(CHECK)
.PHONY: net/textproto/check
net/http/cgi.lo: $(go_net_http_cgi_files)
$(BUILDPACKAGE)
net/http/cgi/check: $(CHECK_DEPS)
net/http/cgi.lo: $(go_net_http_cgi_files)
$(BUILDPACKAGE)
net/http/cgi/check: $(CHECK_DEPS)
- @$(MKDIR_P) net/http/cgi
@$(CHECK)
.PHONY: net/http/cgi/check
@$(CHECK)
.PHONY: net/http/cgi/check
net/http/fcgi.lo: $(go_net_http_fcgi_files)
$(BUILDPACKAGE)
net/http/fcgi/check: $(CHECK_DEPS)
net/http/fcgi.lo: $(go_net_http_fcgi_files)
$(BUILDPACKAGE)
net/http/fcgi/check: $(CHECK_DEPS)
- @$(MKDIR_P) net/http/fcgi
@$(CHECK)
.PHONY: net/http/fcgi/check
@$(CHECK)
.PHONY: net/http/fcgi/check
net/http/httptest.lo: $(go_net_http_httptest_files)
$(BUILDPACKAGE)
net/http/httptest/check: $(check_deps)
net/http/httptest.lo: $(go_net_http_httptest_files)
$(BUILDPACKAGE)
net/http/httptest/check: $(check_deps)
- @$(MKDIR_P) net/http/httptest
@$(CHECK)
.PHONY: net/http/httptest/check
@$(CHECK)
.PHONY: net/http/httptest/check
net/http/httputil.lo: $(go_net_http_httputil_files)
$(BUILDPACKAGE)
net/http/httputil/check: $(check_deps)
net/http/httputil.lo: $(go_net_http_httputil_files)
$(BUILDPACKAGE)
net/http/httputil/check: $(check_deps)
- @$(MKDIR_P) net/http/httputil
@$(CHECK)
.PHONY: net/http/httputil/check
@$(CHECK)
.PHONY: net/http/httputil/check
net/http/pprof.lo: $(go_net_http_pprof_files)
$(BUILDPACKAGE)
net/http/pprof/check: $(CHECK_DEPS)
net/http/pprof.lo: $(go_net_http_pprof_files)
$(BUILDPACKAGE)
net/http/pprof/check: $(CHECK_DEPS)
- @$(MKDIR_P) net/http/pprof
@$(CHECK)
.PHONY: net/http/pprof/check
@$(CHECK)
.PHONY: net/http/pprof/check
net/rpc/jsonrpc.lo: $(go_net_rpc_jsonrpc_files)
$(BUILDPACKAGE)
net/rpc/jsonrpc/check: $(CHECK_DEPS)
net/rpc/jsonrpc.lo: $(go_net_rpc_jsonrpc_files)
$(BUILDPACKAGE)
net/rpc/jsonrpc/check: $(CHECK_DEPS)
- @$(MKDIR_P) net/rpc/jsonrpc
@$(CHECK)
.PHONY: net/rpc/jsonrpc/check
@$(CHECK)
.PHONY: net/rpc/jsonrpc/check
old/netchan.lo: $(go_old_netchan_files)
$(BUILDPACKAGE)
old/netchan/check: $(CHECK_DEPS)
old/netchan.lo: $(go_old_netchan_files)
$(BUILDPACKAGE)
old/netchan/check: $(CHECK_DEPS)
- @$(MKDIR_P) old/netchan
@$(CHECK)
.PHONY: old/netchan/check
@$(CHECK)
.PHONY: old/netchan/check
old/regexp.lo: $(go_old_regexp_files)
$(BUILDPACKAGE)
old/regexp/check: $(CHECK_DEPS)
old/regexp.lo: $(go_old_regexp_files)
$(BUILDPACKAGE)
old/regexp/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: old/regexp/check
@$(CHECK)
.PHONY: old/regexp/check
old/template.lo: $(go_old_template_files)
$(BUILDPACKAGE)
old/template/check: $(CHECK_DEPS)
old/template.lo: $(go_old_template_files)
$(BUILDPACKAGE)
old/template/check: $(CHECK_DEPS)
- @$(MKDIR_P) old/template
@$(CHECK)
.PHONY: old/template/check
@$(CHECK)
.PHONY: old/template/check
os/exec.lo: $(go_os_exec_files)
$(BUILDPACKAGE)
os/exec/check: $(CHECK_DEPS)
os/exec.lo: $(go_os_exec_files)
$(BUILDPACKAGE)
os/exec/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: os/exec/check
@$(CHECK)
.PHONY: os/exec/check
os/signal.lo: $(go_os_signal_files)
$(BUILDPACKAGE)
os/signal/check: $(CHECK_DEPS)
os/signal.lo: $(go_os_signal_files)
$(BUILDPACKAGE)
os/signal/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: os/signal/check
@$(CHECK)
.PHONY: os/signal/check
os/user.lo: $(go_os_user_files)
$(BUILDPACKAGE)
os/user/check: $(CHECK_DEPS)
os/user.lo: $(go_os_user_files)
$(BUILDPACKAGE)
os/user/check: $(CHECK_DEPS)
@$(CHECK)
.PHONY: os/user/check
@$(CHECK)
.PHONY: os/user/check
path/filepath.lo: $(go_path_filepath_files)
$(BUILDPACKAGE)
path/filepath/check: $(CHECK_DEPS)
path/filepath.lo: $(go_path_filepath_files)
$(BUILDPACKAGE)
path/filepath/check: $(CHECK_DEPS)
- @$(MKDIR_P) path/filepath
@$(CHECK)
.PHONY: path/filepath/check
@$(CHECK)
.PHONY: path/filepath/check
regexp/syntax.lo: $(go_regexp_syntax_files)
$(BUILDPACKAGE)
regexp/syntax/check: $(CHECK_DEPS)
regexp/syntax.lo: $(go_regexp_syntax_files)
$(BUILDPACKAGE)
regexp/syntax/check: $(CHECK_DEPS)
- @$(MKDIR_P) regexp/syntax
@$(CHECK)
.PHONY: regexp/syntax/check
@$(CHECK)
.PHONY: regexp/syntax/check
runtime/debug.lo: $(go_runtime_debug_files)
$(BUILDPACKAGE)
runtime/debug/check: $(CHECK_DEPS)
runtime/debug.lo: $(go_runtime_debug_files)
$(BUILDPACKAGE)
runtime/debug/check: $(CHECK_DEPS)
- @$(MKDIR_P) runtime/debug
@$(CHECK)
.PHONY: runtime/debug/check
@$(CHECK)
.PHONY: runtime/debug/check
runtime/pprof.lo: $(go_runtime_pprof_files)
$(BUILDPACKAGE)
runtime/pprof/check: $(CHECK_DEPS)
runtime/pprof.lo: $(go_runtime_pprof_files)
$(BUILDPACKAGE)
runtime/pprof/check: $(CHECK_DEPS)
- @$(MKDIR_P) runtime/pprof
@$(CHECK)
.PHONY: runtime/pprof/check
@$(CHECK)
.PHONY: runtime/pprof/check
sync/atomic_c.lo: $(go_sync_atomic_c_files) sync/atomic.lo
$(LTCOMPILE) -c -o $@ $(srcdir)/go/sync/atomic/atomic.c
sync/atomic/check: $(CHECK_DEPS)
sync/atomic_c.lo: $(go_sync_atomic_c_files) sync/atomic.lo
$(LTCOMPILE) -c -o $@ $(srcdir)/go/sync/atomic/atomic.c
sync/atomic/check: $(CHECK_DEPS)
- @$(MKDIR_P) sync/atomic
@$(CHECK)
.PHONY: sync/atomic/check
@$(CHECK)
.PHONY: sync/atomic/check
text/scanner.lo: $(go_text_scanner_files)
$(BUILDPACKAGE)
text/scanner/check: $(CHECK_DEPS)
text/scanner.lo: $(go_text_scanner_files)
$(BUILDPACKAGE)
text/scanner/check: $(CHECK_DEPS)
- @$(MKDIR_P) text/scanner
@$(CHECK)
.PHONY: text/scanner/check
@$(CHECK)
.PHONY: text/scanner/check
text/tabwriter.lo: $(go_text_tabwriter_files)
$(BUILDPACKAGE)
text/tabwriter/check: $(CHECK_DEPS)
text/tabwriter.lo: $(go_text_tabwriter_files)
$(BUILDPACKAGE)
text/tabwriter/check: $(CHECK_DEPS)
- @$(MKDIR_P) text/tabwriter
@$(CHECK)
.PHONY: text/tabwriter/check
@$(CHECK)
.PHONY: text/tabwriter/check
text/template/parse.lo: $(go_text_template_parse_files)
$(BUILDPACKAGE)
text/template/parse/check: $(CHECK_DEPS)
text/template/parse.lo: $(go_text_template_parse_files)
$(BUILDPACKAGE)
text/template/parse/check: $(CHECK_DEPS)
- @$(MKDIR_P) text/template/parse
@$(CHECK)
.PHONY: text/template/parse/check
@$(CHECK)
.PHONY: text/template/parse/check
testing/iotest.lo: $(go_testing_iotest_files)
$(BUILDPACKAGE)
testing/iotest/check: $(CHECK_DEPS)
testing/iotest.lo: $(go_testing_iotest_files)
$(BUILDPACKAGE)
testing/iotest/check: $(CHECK_DEPS)
- @$(MKDIR_P) testing/iotest
@$(CHECK)
.PHONY: testing/iotest/check
@$(CHECK)
.PHONY: testing/iotest/check
testing/quick.lo: $(go_testing_quick_files)
$(BUILDPACKAGE)
testing/quick/check: $(CHECK_DEPS)
testing/quick.lo: $(go_testing_quick_files)
$(BUILDPACKAGE)
testing/quick/check: $(CHECK_DEPS)
- @$(MKDIR_P) testing/quick
@$(CHECK)
.PHONY: testing/quick/check
@$(CHECK)
.PHONY: testing/quick/check
unicode/utf16.lo: $(go_unicode_utf16_files)
$(BUILDPACKAGE)
unicode/utf16/check: $(CHECK_DEPS)
unicode/utf16.lo: $(go_unicode_utf16_files)
$(BUILDPACKAGE)
unicode/utf16/check: $(CHECK_DEPS)
- @$(MKDIR_P) unicode/utf16
@$(CHECK)
.PHONY: unicode/utf16/check
@$(CHECK)
.PHONY: unicode/utf16/check
unicode/utf8.lo: $(go_unicode_utf8_files)
$(BUILDPACKAGE)
unicode/utf8/check: $(CHECK_DEPS)
unicode/utf8.lo: $(go_unicode_utf8_files)
$(BUILDPACKAGE)
unicode/utf8/check: $(CHECK_DEPS)
- @$(MKDIR_P) unicode/utf8
@$(CHECK)
.PHONY: unicode/utf8/check
@$(CHECK)
.PHONY: unicode/utf8/check
},
{
Value: map[*Ship]bool{nil: false},
},
{
Value: map[*Ship]bool{nil: false},
- Err: "xml: unsupported type: map[*encoding/xml.Ship]bool",
+ Err: "xml: unsupported type: map[*xml.Ship]bool",
{
"badMarshaler",
`<button onclick='alert(1/{{.B}}in numbers)'>`,
{
"badMarshaler",
`<button onclick='alert(1/{{.B}}in numbers)'>`,
- `<button onclick='alert(1/ /* json: error calling MarshalJSON for type *html/template.badMarshaler: invalid character 'f' looking for beginning of object key string */null in numbers)'>`,
+ `<button onclick='alert(1/ /* json: error calling MarshalJSON for type *template.badMarshaler: invalid character 'f' looking for beginning of object key string */null in numbers)'>`,
if file.dirinfo == nil {
file.dirinfo = new(dirInfo)
file.dirinfo.buf = make([]byte, elen)
if file.dirinfo == nil {
file.dirinfo = new(dirInfo)
file.dirinfo.buf = make([]byte, elen)
- file.dirinfo.dir = libc_opendir(syscall.StringBytePtr(file.name))
+ p := syscall.StringBytePtr(file.name)
+ syscall.Entersyscall()
+ r := libc_opendir(p)
+ syscall.Exitsyscall()
+ file.dirinfo.dir = r
}
entry_dirent := unsafe.Pointer(&file.dirinfo.buf[0]).(*syscall.Dirent)
}
entry_dirent := unsafe.Pointer(&file.dirinfo.buf[0]).(*syscall.Dirent)
for n != 0 {
var result *syscall.Dirent
for n != 0 {
var result *syscall.Dirent
- i := libc_readdir_r(dir, entry_dirent, &result)
+ pr := &result
+ syscall.Entersyscall()
+ i := libc_readdir_r(dir, entry_dirent, pr)
+ syscall.Exitsyscall()
if i != 0 {
return names, NewSyscallError("readdir_r", i)
}
if i != 0 {
return names, NewSyscallError("readdir_r", i)
}
const bufSize = 1024
buf := make([]byte, bufSize)
if lookupByName {
const bufSize = 1024
buf := make([]byte, bufSize)
if lookupByName {
- rv := libc_getpwnam_r(syscall.StringBytePtr(username),
+ p := syscall.StringBytePtr(username)
+ syscall.Entersyscall()
+ rv := libc_getpwnam_r(p,
&pwd,
&buf[0],
bufSize,
&result)
&pwd,
&buf[0],
bufSize,
&result)
if rv != 0 {
return nil, fmt.Errorf("user: lookup username %s: %s", username, syscall.GetErrno())
}
if rv != 0 {
return nil, fmt.Errorf("user: lookup username %s: %s", username, syscall.GetErrno())
}
return nil, UnknownUserError(username)
}
} else {
return nil, UnknownUserError(username)
}
} else {
rv := libc_getpwuid_r(syscall.Uid_t(uid),
&pwd,
&buf[0],
bufSize,
&result)
rv := libc_getpwuid_r(syscall.Uid_t(uid),
&pwd,
&buf[0],
bufSize,
&result)
if rv != 0 {
return nil, fmt.Errorf("user: lookup userid %d: %s", uid, syscall.GetErrno())
}
if rv != 0 {
return nil, fmt.Errorf("user: lookup userid %d: %s", uid, syscall.GetErrno())
}
// compare the Types directly.
String() string
// compare the Types directly.
String() string
+ // Used internally by gccgo--the string retaining quoting.
+ rawString() string
+
// Kind returns the specific kind of this type.
Kind() Kind
// Kind returns the specific kind of this type.
Kind() Kind
-func (t *commonType) String() string { return *t.string }
+func (t *commonType) rawString() string { return *t.string }
+
+func (t *commonType) String() string {
+ // For gccgo, strip out quoted strings.
+ s := *t.string
+ var q bool
+ r := make([]byte, len(s))
+ j := 0
+ for i := 0; i < len(s); i++ {
+ if s[i] == '\t' {
+ q = !q
+ } else if !q {
+ r[j] = s[i]
+ j++
+ }
+ }
+ return string(r[:j])
+}
func (t *commonType) Size() uintptr { return t.size }
func (t *commonType) Size() uintptr { return t.size }
u := t.uncommon()
var s string
if u == nil || u.PkgPath() == "" {
u := t.uncommon()
var s string
if u == nil || u.PkgPath() == "" {
} else {
s = u.PkgPath() + "." + u.Name()
}
} else {
s = u.PkgPath() + "." + u.Name()
}
if (__go_file_line (pcbuf[i], &fn, &file, &line)
&& runtime_showframe (fn.__data))
{
if (__go_file_line (pcbuf[i], &fn, &file, &line)
&& runtime_showframe (fn.__data))
{
- runtime_printf ("%s\n", fn.__data);
- runtime_printf ("\t%s:%d\n", file.__data, line);
+ runtime_printf ("%S\n", fn);
+ runtime_printf ("\t%S:%d\n", file, line);