我正在尝试将GCC功能移植到MSVC,并坚持使用此代码:
void __attribute__((constructor)) init() {
// Setup GPU Memory Management
cuda::gpu_mat_allocator = new cuda::Allocator();
}
这个答案很相似,但我不明白。 __attribute__((constructor)) equivalent in VC?
答案是否贴在那里,我的答案也是?或者有更简单的方法吗?谢谢。