radxe
(radxe)
1
Hello,
According the guide, Building from source code:
First, I get the source code,
Get the source code from mainline branch:
repo init -u https://github.com/multi-os-engine/manifest.git
repo sync
Setup MinGW environment:
Build mingw:
macOS 10.11
cd moe/moe-core/Builder
chmod +x mingw-w64-3.10-osx10.11.sh
./mingw-w64-3.10-osx10.11.sh
but there is no moe/moe-core/Builder, then How can I build MOE from source code,
Thanks!
liliomk
(Kristóf Liliom - Migeran)
2
Dear radxe,
we made major changes on the MOE project’s layout, thus the method of building from source changed. We will be updating our guide sometime this week.
radxe
(radxe)
3
Dear liliomk,
thanks, I will wait the new guide!
Will you provide a new smaller source code .zip file?
downloading the source code though repo, the directory size is larger than 3 G
, It is too large!
repo init -u https://github.com/multi-os-engine/manifest.git
repo sync
Thank you very much!
kisg
(Gergely Kis - Migeran)
4
Dear radxe,
you can use the --depth
parameter of repo init
to create a shallow clone.
repo init -u https://github.com/multi-os-engine/manifest.git --depth 1
This will only check out the latest revision of each repository.
Best Regards,
Gergely