search for: osmanzakir90

Displaying 17 results from an estimated 17 matches for "osmanzakir90".

2018 Nov 29
2
Errors in configuration for LLVM with CMake GUI
I don't know what executable to point it to for SVN because, like I said before, I just right click where I want to check something out and click what I need in the context menu. So I need to know what executable to point it to. ________________________________ From: Osman Zakir <osmanzakir90 at hotmail.com> Sent: Thursday, November 29, 2018 11:06 PM To: Zachary Turner; llvm-dev at lists.llvm.org Subject: Re: [llvm-dev] Errors in configuration for LLVM with CMake GUI I also checked out compiler-rt and openmp. Would it be okay to just delete those and try again, or should I try chec...
2018 Nov 29
3
Errors in configuration for LLVM with CMake GUI
...mmand line works for me, so see if it works for you. If it does not work, there's a problem with your installation, system, cmake version, etc. If it does work, then it's more likely a problem with the cmake command line you're running. On Thu, Nov 29, 2018 at 9:45 AM Osman Zakir <osmanzakir90 at hotmail.com> wrote: > I opened up an elevated Developer Command Prompt for VS2017, ran vcvarsall > with argument amd64, and then ran the command "cmake-gui" in that command > prompt. Then in that gui window, I clicked on "Configure" without doing > anything e...
2018 Dec 12
2
Using LLD to link against third-party libraries? How?
Osman Zakir <osmanzakir90 at hotmail.com> writes: > LLVM on a Developer Command Prompt. I don't know what you mean by that. "LLVM" isn't a command. Can you post the exact command you use to link? > The ones I want to fix first are the ones from Boost and Jinja2Cpp. I > saw some from those...
2017 Dec 07
2
Updating LLVM/Clang support for VS for VS2017
...ay to go. clang-cl does support the /std switch, at least. 5.0 supports /std:c++14 and /std:c++latest, and trunk adds support for /std:c++17. From: llvm-dev <llvm-dev-bounces at lists.llvm.org> on behalf of Osman Zakir via llvm-dev <llvm-dev at lists.llvm.org> Reply-To: Osman Zakir <osmanzakir90 at hotmail.com> Date: Thursday, December 7, 2017 at 7:09 AM To: "llvm-dev at lists.llvm.org" <llvm-dev at lists.llvm.org> Subject: [llvm-dev] Updating LLVM/Clang support for VS for VS2017 The Clang compiler doesn't have full support for VS2017 yet, right? I talked to someo...
2018 Nov 29
7
Errors in configuration for LLVM with CMake GUI
I probably need GCC for Git bash. And the one I have is MinGW's GCC, which is the one for Windows. I don't know why CMake is trying to find Linux headers. Hopefully someone who knows better what to do will weigh in here. @Jonathan Goodwin<mailto:jondgoodwin at gmail.com> , are you sure you didn't have to tell it where the header files for Windows are? If I need to specify
2018 Dec 12
4
Using LLD to link against third-party libraries? How?
...rg/docs/GettingStarted.html With steps to build a complete toolchain. Compilation could take a long time. It would be simpler to use your native c++ and linker unless they do not provide c++17 in which case the above link can get you started. Best On Wed, Dec 12, 2018 at 8:57 PM Osman Zakir <osmanzakir90 at hotmail.com<mailto:osmanzakir90 at hotmail.com>> wrote: So how do I get it to build libcxx and libcxxabi? I got it from the mono repo and enabled lld, clang, libcxx and libcxxabi. But I built the two main CMake targets only--all_build and install. What else do I have to do? Please l...
2018 Dec 12
4
Using LLD to link against third-party libraries? How?
...mber 12, 2018 9:02 PM To: Osman Zakir; llvm-dev Subject: Re: [llvm-dev] Using LLD to link against third-party libraries? How? Do you have a specific reason for enabling libcxx and libcxxabi? Because I would strongly suggest disabling them otherwise On Wed, Dec 12, 2018 at 7:47 AM Osman Zakir <osmanzakir90 at hotmail.com<mailto:osmanzakir90 at hotmail.com>> wrote: I was asking about zlib because CMake couldn't find zlib. There was no error in the configuration, but knowing how to set the path to zlib would still be nice. I enabled clang, lld, lldb, libcxx and libcxxabi when configuring...
2018 Dec 02
2
Linking third-party libraries using lld?
I still need answer to my question about how to make sure that libcxx and libcxxabi are also built after enabling them, but I have another problem right now. I want to know how to link third-party libraries into my code using the lld linker. I have this code: https://github.com/DragonOsman/currency_converter
2018 Dec 12
3
Using LLD to link against third-party libraries? How?
...-David Osman Zakir via llvm-dev <llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org>> writes: > @blubee blubeeme So what do you think? Got any ideas? > ---------------------------------------------------------------------- > From: Osman Zakir <osmanzakir90 at hotmail.com<mailto:osmanzakir90 at hotmail.com>> > Sent: Wednesday, December 12, 2018 1:43 AM > To: llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org> > Subject: Re: [llvm-dev] Using LLD to link against third-party > libraries? How? > In my code here http...
2018 Nov 28
2
Have LLD and Clang in their correct locations, but still can't generate project files for LLVM
@Jonathan Goodwin: Do I have to use a flag to tell it where the LLVM include files are? And would it be easier to do that in the CMake GUI? Please tell me how you had it find the include files if that may help me. ________________________________ From: Jonathan Goodwin <jondgoodwin at gmail.com> Sent: Wednesday, November 28, 2018 6:24 AM To: zturner at google.com Cc: Osman Zakir; llvm-dev
2019 Oct 10
4
Building For x64 Windows using LLVM
I'm trying to do it by passing "-Xclang -m64" on the VS2019 command line options panel but it gives the error "unknown argument" on "-m64". How do I do it? Thanks in advance. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20191010/37832cc8/attachment.html>
2019 Oct 28
3
How to Switch to Static Runtime and Enable C++ Exceptions?
I would really like to know about how to apply the patch for making MSVC-built LLVM executables lighter. But aside from that, I also want to know what LLVM does to CMake's default setting of /EHsc. I want to keep that setting on, but I can't figure out how. Any help is appreciated. Thanks in advance. P.S. The CMAKE_CXX_FLAGS variable isn't helping at all, otherwise I wouldn't
2019 Oct 28
4
How to Switch to Static Runtime and Enable C++ Exceptions?
Hi Osman, You can’t enable the static CRT through the command-line. You would need to apply this patch: https://reviews.llvm.org/D55056 (although it doesn’t work with lldb) Alex. ________________________________ De : llvm-dev <llvm-dev-bounces at lists.llvm.org> de la part de Osman Zakir via llvm-dev <llvm-dev at lists.llvm.org> Envoyé : 28 octobre 2019 07:47:43 À : llvm-dev at
2018 Dec 11
3
Using LLD to link against third-party libraries? How?
...me from the C++ standard library. -David Osman Zakir via llvm-dev <llvm-dev at lists.llvm.org> writes: > @blubee blubeeme So what do you think? Got any ideas? > ---------------------------------------------------------------------- > From: Osman Zakir <osmanzakir90 at hotmail.com> > Sent: Wednesday, December 12, 2018 1:43 AM > To: llvm-dev at lists.llvm.org > Subject: Re: [llvm-dev] Using LLD to link against third-party > libraries? How? > In my code here https://github.com/DragonOsman/currency_converter , I > used C++17 and managed to g...
2018 Dec 12
2
Using LLD to link against third-party libraries? How?
...; > -David > > Osman Zakir via llvm-dev <llvm-dev at lists.llvm.org> writes: > > > @blubee blubeeme So what do you think? Got any ideas? > > ---------------------------------------------------------------------- > > From: Osman Zakir <osmanzakir90 at hotmail.com> > > Sent: Wednesday, December 12, 2018 1:43 AM > > To: llvm-dev at lists.llvm.org > > Subject: Re: [llvm-dev] Using LLD to link against third-party > > libraries? How? > > In my code here https://github.com/DragonOsman/currency_converter , I > &gt...
2018 Nov 23
2
Couldn't successfully generate project files for LLVM (checked out from trunk)
I'm using CMake version 3.12.3 on Windows 10 Home. I checked out LLVM, Clang, Clang extra tools, Compiler-RT, LLD, LibOMP, LIBCXX, and LIBCXXABI with SVN and am now trying to generate project files. But LLD, among some other things, wasn't found (even though put all of those in the documented directories inside the LLVM source tree). And a lot of the tests failed. I'm attaching the
2018 Dec 11
2
Using LLD to link against third-party libraries? How?
In my code here https://github.com/DragonOsman/currency_converter , I used C++17 and managed to get it to work (though I'm only using std::map::insert_or_assign() from C++17). And I'm using Windows, so I shouldn't use LDFLAGS or CXXFLAGS as environment variables. I'll use them directly on the compiler command line instead. The libraries I need to link against are