Unsupported architecture: x86_64-pc-windows-msvc
кто-нибудь знает, что с ldc2?
вот ldc2.conf
// See comments in driver/config.d in ldc source tree for grammar description of
// this config file.
// For cross-compilation, you can add sections for specific target triples by
// naming the sections as (quoted) regex patterns. See LDC's `-v` output
// (`config` line) to figure out your normalized triple, depending on the used
// `-mtriple`, `-m32` etc. E.g.:
//
// "^arm.*-linux-gnueabihf$": { … };
// "86(_64)?-.*-linux": { … };
// "i[3-6]86-.*-windows-msvc": { … };
//
// Later sections take precedence and override settings from previous matching
// sections while inheriting unspecified settings from previous sections.
// A `default` section always matches (treated as ".*") and is therefore usually
// the first section.
default:
{
// default switches injected before all explicit command-line switches
switches = [
"-defaultlib=phobos2-ldc,druntime-ldc",
];
// default switches appended after all explicit command-line switches
post-switches = [
"-I%%ldcbinarypath%%/../import",
];
// default directories to be searched for libraries when linking
lib-dirs = [
"%%ldcbinarypath%%/../lib",
];
// default rpath when linking against the shared default libs
rpath = "%%ldcbinarypath%%/../lib";
};
"^wasm(32|64)-":
{
switches = [
"-defaultlib=",
"-L-z", "-Lstack-size=1048576",
"-L--stack-first",
"-link-internally",
"-L--export-dynamic",
];
lib-dirs = [];
};
"x86_64-apple-ios":
{
switches = [
"-defaultlib=phobos2-ldc,druntime-ldc",
"-Xcc=-isysroot",
"-Xcc=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk",
];
lib-dirs = [
"%%ldcbinarypath%%/../lib-ios-x86_64",
];
rpath = "%%ldcbinarypath%%/../lib-ios-x86_64";
};
"x86_64-.*-windows-msvc":
{
switches = [
"-defaultlib=phobos2-ldc,druntime-ldc",
"-link-defaultlib-shared=false",
];
lib-dirs = [
"/opt/local/lib/windows64",
];
};
Ты с линукса хочешь под винду скомпилировать, так?
А уже не надо, достал девайс на винде и собрал прям там)
вообще он кросскомпилит буквально в несколько строчек конфига dub-a и даже без него: линкеру пробросить директории lib64 и lib64/mingw и слинковаться с ldc_rt.builtins, как обходной манёвр чтобы убрать ldc-шный конфиг с lib-dir. Здесь что-то похожее делали.
Обсуждают сегодня