mirror of
https://github.com/textmate/textmate.git
synced 2026-01-14 17:28:05 -05:00
Add info about avoiding libressl linker warnings
This commit is contained in:
@@ -64,6 +64,13 @@ To install using [homebrew][] run:
|
||||
|
||||
In practice `hg` ([mercurial][]) is only required for the SCM library’s tests so you can skip this dependency if you don’t mind a failing test.
|
||||
|
||||
If you want to avoid the libressl linker warnings about being built for different deployment target then run `brew edit libressl` and make the following change:
|
||||
|
||||
- system "./configure", *args
|
||||
+ system "env", "LDFLAGS=-mmacosx-version-min=10.8", "CFLAGS=-mmacosx-version-min=10.8", "./configure", *args
|
||||
|
||||
Afterward you must rebuild using: `brew reinstall --build-from-source libressl`
|
||||
|
||||
## Building from within TextMate
|
||||
|
||||
You should install the [Ninja][NinjaBundle] and [CxxTest][] bundles. Both can be installed via _Preferences_ → _Bundles_.
|
||||
|
||||
Reference in New Issue
Block a user