Page 1 of 1

Build environment in Docker

Posted: Sun Oct 17, 2021 12:55 am
by punk_joker
I started work on setup of build environment in Docker container.
You can download archive with neccery files by link

Doesn't work:
compile jwasm programs
compile msvc programs

How to use current version:
1. Clone repository to repo in the same directory with Dockerfile
2. execute build.sh
3. execute run.sh
run.sh starts docker container and we enter to shell inside container
4. cd /repo
5. tup init
6. tup

Re: Build environment in Docker

Posted: Tue Oct 26, 2021 3:48 am
by punk_joker
I found 2 project with run MSVC inside docker.
1. Use real MSVC. I integrated it to my image, but have problem with run MSVC during compilation process.
2. Use LLVM with MSVC libraries. It's run well, but have a lot of problem with compilation (in code of MSVC programs uses case insensitive paths, problem with included path and some function). Need to rewrite all program.

Now, I focus on first one, and hope it will work.