gpt4 book ai didi

go - Golang如何获取当前源文件的最新编译时间和日期?

转载 作者:数据小太阳 更新时间:2023-10-29 03:06:09 57 4
gpt4 key购买 nike

此代码返回当前源文件的最新编译时间和日期:

package main

/*
#include<stdint.h>
#include<string.h>
void getCompileDateTime(uint8_t dt[12],uint8_t tm[9]){
strcpy(dt, __DATE__); //Mmm dd yyyy
strcpy(tm,__TIME__); //hh:mm:ss
}
*/
import "C"
import (
"fmt"
"unsafe"
)

func main() {
dt := make([]byte, 12)
tm := make([]byte, 10)
C.getCompileDateTime((*C.uint8_t)(unsafe.Pointer(&dt[0])), (*C.uint8_t)(unsafe.Pointer(&tm[0])))
dts, tms := string(dt), string(tm)
fmt.Println(dts, tms)
}

是否有纯粹的 Golang 方法或这是唯一的方法?

最佳答案

找到了另一种使用 go linker 上的选项的方法分配一个字符串:

-X importpath.name=value

Set the value of the string variable in importpath named name to value. Note that before Go 1.5 this option took two separate arguments. Now it takes one argument split on the first = sign.

代码示例:

package main

import "fmt"

var compileDate string

func main() {
fmt.Println(compileDate )
}

构建时:

go build -ldflags "-X main.compileDate=`date -u +.%Y%m%d.%H%M%S`" main.go

这种方法的优点是,它可以通过构建脚本更加独立于操作系统,而不会使用 go:generate

乱码

关于go - Golang如何获取当前源文件的最新编译时间和日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37201548/

57 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com