Re: [webkit-dev] Tips to build faster on Mac?

2018-03-28 Thread Frédéric Wang
On 27/03/2018 18:16, Dan Bernstein wrote:
>
>
>> On Mar 27, 2018, at 9:07 AM, Frédéric Wang > > wrote:
>>
>> I see that the make command allows to make incremental builds for
>> macOS. Does anyone know how to specify that we want to build for the
>> iOS Simulator?
>
> Add SDKROOT=iphonesimulator to the make invocation.

That works, thanks!

-- 
Frédéric Wang - frederic-wang.fr

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] Tips to build faster on Mac?

2018-03-27 Thread Dan Bernstein


> On Mar 27, 2018, at 9:07 AM, Frédéric Wang  wrote:
> 
> I see that the make command allows to make incremental builds for macOS. Does 
> anyone know how to specify that we want to build for the iOS Simulator?

Add SDKROOT=iphonesimulator to the make invocation.___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] Tips to build faster on Mac?

2018-03-27 Thread Frédéric Wang
On 23/03/2018 23:08, Danyao Wang wrote:
> Thanks everyone! I had a chance to try plain "make d -C
> Source/WebCore" today and it's a lot faster. Small changes build under
> a minute, so this is very helpful!
>
> On Fri, Mar 16, 2018 at 12:40 PM, Maciej Stachowiak  > wrote:
>
>
> You can also just cd to the WebCore directory and type make.
>
>> On Mar 16, 2018, at 3:24 PM, youenn fablet > > wrote:
>>
>> If you have a full build and made changes to WebCore, you might
>> only need to recompile WebCore. With make for instance, one can do:
>> make d -C Source/WebCore
>>
>>   Y
>>
>> On Fri, Mar 16, 2018 at 6:55 AM Danyao Wang > > wrote:
>>
>> Thanks Brian for the Xcode UI tip! So far I've always used
>> build-webkit. I didn't realize there could be a difference.
>>
>> On Thu, Mar 15, 2018 at 6:01 PM, Brian Burg > > wrote:
>>
>>
>>
>> > On Mar 15, 2018, at 1:58 PM, Danyao Wang
>> > wrote:
>> >
>> > Hi,
>> >
>> > Being new to WebKit development (and also switching
>> from Linux to Mac), I find my workflow relatively clumsy.
>> Building on a fresh checkout usually takes me 20+ minutes
>> even on my 12-core Mac Pro. Fastest incremental builds
>> are ~2 minutes. This adds a lot to the develop / test /
>> debug cycle.
>>
>> These build times seem normal. WebKit is a big project,
>> and we don’t use CMake/ninja by default when building for
>> Cocoa ports.
>>
>> Are you building via build-webkit on the command line? In
>> my experience, incremental builds are faster via Xcode’s UI.
>>
>> > I heard the good folks from Igalia working on the GTK
>> port use icecc. Has anyone used this on Mac? Any other
>> productivity tips?
>> >
>> > Thanks!
>> > Danyao
>> > ___
>> > webkit-dev mailing list
>> > webkit-dev@lists.webkit.org
>> 
>> > https://lists.webkit.org/mailman/listinfo/webkit-dev
>> 
>>
>>
>> ___
>> webkit-dev mailing list
>> webkit-dev@lists.webkit.org 
>> https://lists.webkit.org/mailman/listinfo/webkit-dev
>> 
>>
>> ___
>> webkit-dev mailing list
>> webkit-dev@lists.webkit.org 
>> https://lists.webkit.org/mailman/listinfo/webkit-dev
>> 
>
>
>
>
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> https://lists.webkit.org/mailman/listinfo/webkit-dev

Hi all,

I see that the make command allows to make incremental builds for macOS.
Does anyone know how to specify that we want to build for the iOS Simulator?

Thanks!

-- 
Frédéric Wang - frederic-wang.fr

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] Tips to build faster on Mac?

2018-03-23 Thread Danyao Wang
Thanks everyone! I had a chance to try plain "make d -C Source/WebCore"
today and it's a lot faster. Small changes build under a minute, so this is
very helpful!

On Fri, Mar 16, 2018 at 12:40 PM, Maciej Stachowiak  wrote:

>
> You can also just cd to the WebCore directory and type make.
>
> On Mar 16, 2018, at 3:24 PM, youenn fablet  wrote:
>
> If you have a full build and made changes to WebCore, you might only need
> to recompile WebCore. With make for instance, one can do:
> make d -C Source/WebCore
>
>   Y
>
> On Fri, Mar 16, 2018 at 6:55 AM Danyao Wang  wrote:
>
>> Thanks Brian for the Xcode UI tip! So far I've always used build-webkit.
>> I didn't realize there could be a difference.
>>
>> On Thu, Mar 15, 2018 at 6:01 PM, Brian Burg  wrote:
>>
>>>
>>>
>>> > On Mar 15, 2018, at 1:58 PM, Danyao Wang  wrote:
>>> >
>>> > Hi,
>>> >
>>> > Being new to WebKit development (and also switching from Linux to
>>> Mac), I find my workflow relatively clumsy. Building on a fresh checkout
>>> usually takes me 20+ minutes even on my 12-core Mac Pro. Fastest
>>> incremental builds are ~2 minutes. This adds a lot to the develop / test /
>>> debug cycle.
>>>
>>> These build times seem normal. WebKit is a big project, and we don’t use
>>> CMake/ninja by default when building for Cocoa ports.
>>>
>>> Are you building via build-webkit on the command line? In my experience,
>>> incremental builds are faster via Xcode’s UI.
>>>
>>> > I heard the good folks from Igalia working on the GTK port use icecc.
>>> Has anyone used this on Mac? Any other productivity tips?
>>> >
>>> > Thanks!
>>> > Danyao
>>> > ___
>>> > webkit-dev mailing list
>>> > webkit-dev@lists.webkit.org
>>> > https://lists.webkit.org/mailman/listinfo/webkit-dev
>>>
>>>
>> ___
>> webkit-dev mailing list
>> webkit-dev@lists.webkit.org
>> https://lists.webkit.org/mailman/listinfo/webkit-dev
>>
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> https://lists.webkit.org/mailman/listinfo/webkit-dev
>
>
>
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] Tips to build faster on Mac?

2018-03-16 Thread Maciej Stachowiak

You can also just cd to the WebCore directory and type make.

> On Mar 16, 2018, at 3:24 PM, youenn fablet  wrote:
> 
> If you have a full build and made changes to WebCore, you might only need to 
> recompile WebCore. With make for instance, one can do:
> make d -C Source/WebCore
> 
>   Y
> 
> On Fri, Mar 16, 2018 at 6:55 AM Danyao Wang  > wrote:
> Thanks Brian for the Xcode UI tip! So far I've always used build-webkit. I 
> didn't realize there could be a difference.
> 
> On Thu, Mar 15, 2018 at 6:01 PM, Brian Burg  > wrote:
> 
> 
> > On Mar 15, 2018, at 1:58 PM, Danyao Wang  > > wrote:
> >
> > Hi,
> >
> > Being new to WebKit development (and also switching from Linux to Mac), I 
> > find my workflow relatively clumsy. Building on a fresh checkout usually 
> > takes me 20+ minutes even on my 12-core Mac Pro. Fastest incremental builds 
> > are ~2 minutes. This adds a lot to the develop / test / debug cycle.
> 
> These build times seem normal. WebKit is a big project, and we don’t use 
> CMake/ninja by default when building for Cocoa ports.
> 
> Are you building via build-webkit on the command line? In my experience, 
> incremental builds are faster via Xcode’s UI.
> 
> > I heard the good folks from Igalia working on the GTK port use icecc. Has 
> > anyone used this on Mac? Any other productivity tips?
> >
> > Thanks!
> > Danyao
> > ___
> > webkit-dev mailing list
> > webkit-dev@lists.webkit.org 
> > https://lists.webkit.org/mailman/listinfo/webkit-dev 
> > 
> 
> 
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org 
> https://lists.webkit.org/mailman/listinfo/webkit-dev 
> 
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> https://lists.webkit.org/mailman/listinfo/webkit-dev

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] Tips to build faster on Mac?

2018-03-16 Thread youenn fablet
If you have a full build and made changes to WebCore, you might only need
to recompile WebCore. With make for instance, one can do:
make d -C Source/WebCore

  Y

On Fri, Mar 16, 2018 at 6:55 AM Danyao Wang  wrote:

> Thanks Brian for the Xcode UI tip! So far I've always used build-webkit. I
> didn't realize there could be a difference.
>
> On Thu, Mar 15, 2018 at 6:01 PM, Brian Burg  wrote:
>
>>
>>
>> > On Mar 15, 2018, at 1:58 PM, Danyao Wang  wrote:
>> >
>> > Hi,
>> >
>> > Being new to WebKit development (and also switching from Linux to Mac),
>> I find my workflow relatively clumsy. Building on a fresh checkout usually
>> takes me 20+ minutes even on my 12-core Mac Pro. Fastest incremental builds
>> are ~2 minutes. This adds a lot to the develop / test / debug cycle.
>>
>> These build times seem normal. WebKit is a big project, and we don’t use
>> CMake/ninja by default when building for Cocoa ports.
>>
>> Are you building via build-webkit on the command line? In my experience,
>> incremental builds are faster via Xcode’s UI.
>>
>> > I heard the good folks from Igalia working on the GTK port use icecc.
>> Has anyone used this on Mac? Any other productivity tips?
>> >
>> > Thanks!
>> > Danyao
>> > ___
>> > webkit-dev mailing list
>> > webkit-dev@lists.webkit.org
>> > https://lists.webkit.org/mailman/listinfo/webkit-dev
>>
>>
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> https://lists.webkit.org/mailman/listinfo/webkit-dev
>
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] Tips to build faster on Mac?

2018-03-16 Thread Danyao Wang
Thanks Brian for the Xcode UI tip! So far I've always used build-webkit. I
didn't realize there could be a difference.

On Thu, Mar 15, 2018 at 6:01 PM, Brian Burg  wrote:

>
>
> > On Mar 15, 2018, at 1:58 PM, Danyao Wang  wrote:
> >
> > Hi,
> >
> > Being new to WebKit development (and also switching from Linux to Mac),
> I find my workflow relatively clumsy. Building on a fresh checkout usually
> takes me 20+ minutes even on my 12-core Mac Pro. Fastest incremental builds
> are ~2 minutes. This adds a lot to the develop / test / debug cycle.
>
> These build times seem normal. WebKit is a big project, and we don’t use
> CMake/ninja by default when building for Cocoa ports.
>
> Are you building via build-webkit on the command line? In my experience,
> incremental builds are faster via Xcode’s UI.
>
> > I heard the good folks from Igalia working on the GTK port use icecc.
> Has anyone used this on Mac? Any other productivity tips?
> >
> > Thanks!
> > Danyao
> > ___
> > webkit-dev mailing list
> > webkit-dev@lists.webkit.org
> > https://lists.webkit.org/mailman/listinfo/webkit-dev
>
>
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev