From: Pierre-Anthony Lemieux <pal@sandflow.com> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: Re: [FFmpeg-devel] [PATCH 1/1] Enable building with WSL and MSVC Date: Mon, 3 Oct 2022 08:20:43 -0700 Message-ID: <CAF_7JxCdusm1ahT+Szwdpa3vE6qMQj0jBvvPvtTMmM5Xdd00qQ@mail.gmail.com> (raw) In-Reply-To: <CAK_EiqHb62vfUeVnZD-nz5DFsSnNX-U12bv8jehUk6Qy4Aw3Tw@mail.gmail.com> On Mon, Oct 3, 2022 at 1:11 AM Julio C. Rocha <dev@rocha.red> wrote: > > On Sun, Oct 2, 2022 at 5:19 PM Pierre-Anthony Lemieux <pal@sandflow.com> > wrote: > > > On Sun, Oct 2, 2022 at 5:14 PM Timo Rothenpieler <timo@rothenpieler.org> > > wrote: > > > > > > On 03.10.2022 01:47, Julio C. Rocha wrote: > > > > --- > > > > configure | 7 ++++++- > > > > 1 file changed, 6 insertions(+), 1 deletion(-) > > > > > > > > diff --git a/configure b/configure > > > > index 6712d045d9..f5f5eb29dd 100755 > > > > --- a/configure > > > > +++ b/configure > > > > @@ -4847,7 +4847,12 @@ probe_cc(){ > > > > else > > > > _ident=$($_cc --version 2>/dev/null | head -n1 | tr -d > > '\r') > > > > fi > > > > - _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 > > | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if > > (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)' > > > > + if [ "$(grep -i Microsoft /proc/version)" ]; then > > > > > > Not convinced that this is a good check. > > > I can think of a few other situations where Microsoft might appear in > > > there. Like, for example on one of their servers, Azure Cloud, Github > > > Actions and so on. > > > > > > > + # Windows Subsystem for Linux > > > > + _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< > > 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if > > (!match($$0, / /)) { cmd="/usr/bin/wslpath \x27" $$0 "\x27"; cmd |& getline > > pth; print "$@:", pth } }'\'' > $(@:.o=.d)' > > > > + else > > > > + _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< > > 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if > > (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)' > > > > + fi > > > > _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs' > > > > _cflags_speed="-O2" > > > > _cflags_size="-O1" > > > > > > > > > What actual issue is this solving? > > > I've been building in WSL for years, including MSVC builds, and never > > > encountered any problems. > > > > FWIW. I am currently building on WSL: > > > > $ uname -a > > Linux pal-xxxxx 5.10.102.1-microsoft-standard-WSL2 #1 SMP Wed Mar 2 > > 00:30:59 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux > > > > $ lsb_release -a > > No LSB modules are available. > > Distributor ID: Ubuntu > > Description: Ubuntu 20.04.4 LTS > > Release: 20.04 > > Codename: focal > > > > Noted, Pierre. > Are you able to build using the Visual Studio compilers (MSVC) without any > further hacking? I had never tried it. Quick attempt results in: $ ./configure --toolchain=msvc cl.exe is unable to create an executable file. If cl.exe is a cross-compiler, use the --enable-cross-compile option. > > Example workflow: > cd /path/to/ffmpeg-clone > ./configure --toolchain=msvc > make > make install > > Thanks. > _______________________________________________ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next prev parent reply other threads:[~2022-10-03 15:21 UTC|newest] Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-10-02 23:47 [FFmpeg-devel] [PATCH 0/1] Enable building in Windows Subsystem for Linux and MSVC compilers Julio C. Rocha 2022-10-02 23:47 ` [FFmpeg-devel] [PATCH 1/1] Enable building with WSL and MSVC Julio C. Rocha 2022-10-03 0:14 ` Timo Rothenpieler 2022-10-03 0:19 ` Pierre-Anthony Lemieux 2022-10-03 8:10 ` Julio C. Rocha 2022-10-03 15:20 ` Pierre-Anthony Lemieux [this message] 2022-10-04 0:28 ` Julio C. Rocha 2022-10-03 8:05 ` Julio C. Rocha 2022-10-08 8:39 ` Julio C. Rocha 2022-10-08 23:30 ` Carl Eugen Hoyos 2022-10-10 8:02 ` Julio C. Rocha
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=CAF_7JxCdusm1ahT+Szwdpa3vE6qMQj0jBvvPvtTMmM5Xdd00qQ@mail.gmail.com \ --to=pal@sandflow.com \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git