<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <div class="moz-cite-prefix">Jack,<br>
      May I ask you to discuss all question regarding clang-omp on
      github here <a class="moz-txt-link-freetext" href="https://github.com/clang-omp/clang/issues?state=open">https://github.com/clang-omp/clang/issues?state=open</a> ?<br>
      This is not official clang so I highly recommend to use issues
      page on GitHub for any questions about clang-omp.<br>
      <br>
      To your question:<br>
      <br>
      Go to your clang directory <br>
      try <br>
      <br>
      <span style="color: rgb(34, 34, 34); font-family: Monaco,
        'Bitstream Vera Sans Mono', 'Lucida Console', Terminal,
        monospace; font-size: 13px; font-style: normal; font-variant:
        normal; font-weight: normal; letter-spacing: normal;
        line-height: 20px; orphans: auto; text-align: start;
        text-indent: 0px; text-transform: none; white-space: pre;
        widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;
        display: inline !important; float: none; background-color:
        rgb(255, 255, 255);">git diff origin..origin/clang-omp</span><span
        style="color: rgb(34, 34, 34); font-family: Monaco, 'Bitstream
        Vera Sans Mono', 'Lucida Console', Terminal, monospace;
        font-size: 13px; font-style: normal; font-variant: normal;
        font-weight: normal; letter-spacing: normal; line-height: 20px;
        orphans: auto; text-align: start; text-indent: 0px;
        text-transform: none; white-space: pre; widows: auto;
        word-spacing: 0px; -webkit-text-stroke-width: 0px; display:
        inline !important; float: none; background-color: rgb(255, 255,
        255);"></span>
      <pre class="moz-signature" cols="72">Best regards,
Alexey Bataev
=============
Software Engineer
Intel Compiler Team
Intel Corp. </pre>
      02.06.2014 19:18, <a class="moz-txt-link-abbreviated" href="mailto:openmp-dev-request@cs.uiuc.edu">openmp-dev-request@cs.uiuc.edu</a> пишет:<br>
    </div>
    <blockquote
cite="mid:mailman.38380.1401722280.2426.openmp-dev@dcs-maillist2.engr.illinois.edu"
      type="cite">
      <pre wrap="">Send Openmp-dev mailing list submissions to
        <a class="moz-txt-link-abbreviated" href="mailto:openmp-dev@dcs-maillist2.engr.illinois.edu">openmp-dev@dcs-maillist2.engr.illinois.edu</a>

To subscribe or unsubscribe via the World Wide Web, visit
        <a class="moz-txt-link-freetext" href="http://lists.cs.uiuc.edu/mailman/listinfo/openmp-dev">http://lists.cs.uiuc.edu/mailman/listinfo/openmp-dev</a>
or, via email, send a message with subject or body 'help' to
        <a class="moz-txt-link-abbreviated" href="mailto:openmp-dev-request@dcs-maillist2.engr.illinois.edu">openmp-dev-request@dcs-maillist2.engr.illinois.edu</a>

You can reach the person managing the list at
        <a class="moz-txt-link-abbreviated" href="mailto:openmp-dev-owner@dcs-maillist2.engr.illinois.edu">openmp-dev-owner@dcs-maillist2.engr.illinois.edu</a>

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Openmp-dev digest..."


Today's Topics:

   1. [PATCH] Remove duplicated line (Jack Howarth)
   2. Testing cmake support on Windows (Jack Howarth)
   3. Re: [PATCH] Remove duplicated line (Alp Toker)
   4. Re: [PATCH] [Revisedx2] Initial cmake support (Alp Toker)
   5. git diff of clang-omp (Jack Howarth)
   6. Re: [PATCH] [Revisedx2] Initial cmake support (Andrey Bokhanko)


----------------------------------------------------------------------

Message: 1
Date: Mon, 2 Jun 2014 08:47:38 -0400
From: Jack Howarth <a class="moz-txt-link-rfc2396E" href="mailto:howarth.mailing.lists@gmail.com"><howarth.mailing.lists@gmail.com></a>
To: <a class="moz-txt-link-rfc2396E" href="mailto:openmp-dev@dcs-maillist2.engr.illinois.edu">"openmp-dev@dcs-maillist2.engr.illinois.edu"</a>
        <a class="moz-txt-link-rfc2396E" href="mailto:openmp-dev@dcs-maillist2.engr.illinois.edu"><openmp-dev@dcs-maillist2.engr.illinois.edu></a>
Subject: [Openmp-dev] [PATCH] Remove duplicated line
Message-ID:
        <a class="moz-txt-link-rfc2396E" href="mailto:CADtEn-2AuUUptvkk23gte6EMLaxNMpZ=Y9HOZUUK4FGfY299Yg@mail.gmail.com"><CADtEn-2AuUUptvkk23gte6EMLaxNMpZ=Y9HOZUUK4FGfY299Yg@mail.gmail.com></a>
Content-Type: text/plain; charset="utf-8"

   The attach patch eliminates a error in my committed
runtime/src/CMakeLists.txt . When I made the adjustments requested in the
original on-list review comments, I re-ordered the SOURCES file list from
order matching order of compilation in build.pl to a simple alphabetical
list for readability. In the process, I accidentally duplicated the entry
for kmp_global.c, This patch corrects this error. Thanks in advance for
fixing this minor glitch in openmp svn.
            Jack
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <a class="moz-txt-link-rfc2396E" href="http://lists.cs.uiuc.edu/pipermail/openmp-dev/attachments/20140602/e60d5dcf/attachment-0001.html"><http://lists.cs.uiuc.edu/pipermail/openmp-dev/attachments/20140602/e60d5dcf/attachment-0001.html></a>
-------------- next part --------------
Index: runtime/src/CMakeLists.txt
===================================================================
--- runtime/src/CMakeLists.txt  (revision 210020)
+++ runtime/src/CMakeLists.txt  (working copy)
@@ -90,7 +90,6 @@ set(SOURCES
   kmp_ftn_extra.c
   kmp_global.c
   kmp_gsupport.c
-  kmp_global.c
   kmp_i18n.c
   kmp_io.c
   kmp_itt.c

------------------------------

Message: 2
Date: Mon, 2 Jun 2014 09:07:21 -0400
From: Jack Howarth <a class="moz-txt-link-rfc2396E" href="mailto:howarth.mailing.lists@gmail.com"><howarth.mailing.lists@gmail.com></a>
To: <a class="moz-txt-link-rfc2396E" href="mailto:openmp-dev@dcs-maillist2.engr.illinois.edu">"openmp-dev@dcs-maillist2.engr.illinois.edu"</a>
        <a class="moz-txt-link-rfc2396E" href="mailto:openmp-dev@dcs-maillist2.engr.illinois.edu"><openmp-dev@dcs-maillist2.engr.illinois.edu></a>
Subject: [Openmp-dev] Testing cmake support on Windows
Message-ID:
        <a class="moz-txt-link-rfc2396E" href="mailto:CADtEn-0zxrXRvns7BK9qR=Nf4-kb_7NHMXcRsoHLgp55LGtk5A@mail.gmail.com"><CADtEn-0zxrXRvns7BK9qR=Nf4-kb_7NHMXcRsoHLgp55LGtk5A@mail.gmail.com></a>
Content-Type: text/plain; charset="utf-8"

    I am not set up to test the cmake support on Windows but would ask
whoever does this take the same approach that I used in constructing these
committed files. Start with the printout of the stock?

make compiler=clang

build on Windows (which I assume works) and modify
runtime/src/CMakeLists.txt to match the exact flags used and source files
compiled by build.pl on Windows (wrapping these with the appropriate
conditionals to leave the linux/darwin builds unchanged).
          Jack
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <a class="moz-txt-link-rfc2396E" href="http://lists.cs.uiuc.edu/pipermail/openmp-dev/attachments/20140602/d077ed6a/attachment-0001.html"><http://lists.cs.uiuc.edu/pipermail/openmp-dev/attachments/20140602/d077ed6a/attachment-0001.html></a>

------------------------------

Message: 3
Date: Mon, 02 Jun 2014 16:19:56 +0300
From: Alp Toker <a class="moz-txt-link-rfc2396E" href="mailto:alp@nuanti.com"><alp@nuanti.com></a>
To: Jack Howarth <a class="moz-txt-link-rfc2396E" href="mailto:howarth.mailing.lists@gmail.com"><howarth.mailing.lists@gmail.com></a>,
        <a class="moz-txt-link-rfc2396E" href="mailto:openmp-dev@dcs-maillist2.engr.illinois.edu">"openmp-dev@dcs-maillist2.engr.illinois.edu"</a>
        <a class="moz-txt-link-rfc2396E" href="mailto:openmp-dev@dcs-maillist2.engr.illinois.edu"><openmp-dev@dcs-maillist2.engr.illinois.edu></a>
Subject: Re: [Openmp-dev] [PATCH] Remove duplicated line
Message-ID: <a class="moz-txt-link-rfc2396E" href="mailto:538C79FC.2070508@nuanti.com"><538C79FC.2070508@nuanti.com></a>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Landed in r210025!

I'll reply separately to Jim but in summary it makes perfect sense to 
maintain what we've built now in the LLVM community until any new system 
gets proposed, at which point we'll compare notes and go with whichever 
option is more sustainable.

Right now this is helping our users for whom the traditional build 
system isn't an option so we'll certainly keep it :-)

Cheers,
Alp.


On 02/06/2014 15:47, Jack Howarth wrote:
</pre>
      <blockquote type="cite">
        <pre wrap="">   The attach patch eliminates a error in my committed 
runtime/src/CMakeLists.txt . When I made the adjustments requested in 
the original on-list review comments, I re-ordered the SOURCES file 
list from order matching order of compilation in build.pl 
<a class="moz-txt-link-rfc2396E" href="http://build.pl"><http://build.pl></a> to a simple alphabetical list for readability. In 
the process, I accidentally duplicated the entry for kmp_global.c, 
This patch corrects this error. Thanks in advance for fixing this 
minor glitch in openmp svn.
            Jack


_______________________________________________
Openmp-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Openmp-dev@dcs-maillist2.engr.illinois.edu">Openmp-dev@dcs-maillist2.engr.illinois.edu</a>
<a class="moz-txt-link-freetext" href="http://lists.cs.uiuc.edu/mailman/listinfo/openmp-dev">http://lists.cs.uiuc.edu/mailman/listinfo/openmp-dev</a>
</pre>
      </blockquote>
      <pre wrap="">
</pre>
    </blockquote>
    <br>
  </body>
</html>