Git Product home page Git Product logo

selectolax's Introduction

selectolax's People

Contributors

barnybug avatar barrythrill avatar baseplate-admin avatar gruentee avatar kkszysiu avatar mohammadraziei avatar nesb1 avatar nixbiks avatar odidev avatar phoerious avatar rushter avatar stranger-danger-zamu avatar yafethtb avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

selectolax's Issues

text() on tree object not passing down "strip" parameter

When I call text(strip=True) on the root tree object, the strip parameter is not being passed on to the body tag object. Here's the code in parser.pyx:

    def text(self, bool deep=True, str separator='', bool strip=False):
        return self.body.text(deep=deep, separator=separator, strip=False)

So tree.text(strip=True) isn't working, but an explicit tree.body(strip=True) is.

Moreover, the whole behaviour of this parameter is somewhat wonky and unpredictable depending on where white space appears.

HTMLParser("<body><p>sfsdf\n\n\n\n          xxxx\n\n\n\n\n\n\n</p>aaa</body>\n\n\n\n").body.text(strip=True)

gives

'sfsdf\n\n\n\n          xxxxaaa'

where only trailing white space is clipped, whereas

HTMLParser("<body><p>sfsdf\n\n\n\n          \n\n\n\n\n\n\n</p>aaa</body>\n\n\n\n").body.text(strip=True)

gives

'sfsdfaaa'

which is more like what I'd expect, but it strips whitespaces completely and doesn't simply collapse it to a single space.

Problem selecting td inside tr

Hello again. I've using selectolax for more than a month now and I have not encounter a single problem until today (apart from the .text() addition).

I have the following HTML: https://pastebin.com/PzfLaWrp and when I try to select the td elements from it I get an empty result (if I select the div elements it yields the proper result) Am I missing something?

Thank you for your time.

New replace_with method does not work as expected

I noticed an issue regarding reference. The following code works:

from selectolax.parser import HTMLParser

html_parser = HTMLParser('<div>Get <span alt="Laptop"><img src="/jpg"> <div></div></span></div>')
img_node = html_parser.css_first('img')

html_parser2 = HTMLParser('<div>Test</div>')
img_node.replace_with(html_parser2.body.child)
assert html_parser.body.child.html == '<div>Get <span alt="Laptop"><div>Test</div> <div></div></span></div>'

but the following fails:

from selectolax.parser import HTMLParser

html_parser = HTMLParser('<div>Get <span alt="Laptop"><img src="/jpg"> <div></div></span></div>')
img_node = html_parser.css_first('img')

img_node.replace_with(HTMLParser('<div>Test</div>').body.child)
assert html_parser.body.child.html == '<div>Get <span alt="Laptop"><div>Test</div> <div></div></span></div>'

since this is python, I would expect the two to work the same and are memory safe

Originally posted by @ppwwyyxx in #25 (comment)

Bug when using replace_with after doing some node.decompose() operations

Hello,

First thank you for your amazing library!

To be really short, I ran into a bug when using the replace_with method after using some node.decompose() operations.

Now, to be more precise, I am trying to simplify DOM trees.

So I designed two functions for this:
-one that deletes all nodes that do not contain a tag I want to keep
-and the second one that "un-nest" nodes, which means that <div><div>Ok</div></div> would simply become <div>Ok</div> because the first div is useless, since it contains only one child, with no text, and the only child has the same tag.

Here are the two functions.

import re

set_interesting_tags = set(["address", "article", "aside", "blink", "blockquote", "body", "br", "caption", "center", "dd", "dfn", "dl", "dt", "div", "figcaption", "h", "h1", "h2", "h3", "h4", "h5", "h6", "head", "header", "hgroup", "html", "legend", "li", "main", "marquee", "menu", "menuitem", "nav", "ol", "p", "section", "summary", "title", "ul", "audio", "embed", "figure", "iframe", "img", "object", "picture", "video", "source"])

def remove_digits_string(string):
    string = re.sub(r"\d+", "", string)
    return string

def remove_uninteresting_nodes(selectolax_tree):
    nodes_to_remove = [
        node
        for node in selectolax_tree.root.traverse()
        if remove_digits_string(node.tag) not in set_interesting_tags
    ]
    for node in nodes_to_remove:
        node.decompose()
    return selectolax_tree

def unnest_nodes(selectolax_tree):
    modification = True
    while modification:
        modification = False
        for node in selectolax_tree.root.traverse():
            children = [child for child in node.iter()]
            if len(children) == 1:
                child = children[0]
                if node.tag == child.tag:
                    text = node.text(deep=False).strip()
                    if not text:
                        node.replace_with(child)
                        modification = True
                        break
    return selectolax_tree

Now, when I am using some html files to make a tree, for example this one:

f = open("data_collection/html_reproduce_bug.txt", "r")
html_str = f.read()
f.close()
selectolax_tree = HTMLParser(html_str)

if I do

selectolax_tree = remove_uninteresting_nodes(selectolax_tree)

or

selectolax_tree = unnest_nodes(selectolax_tree)

or

selectolax_tree = unnest_nodes(selectolax_tree)
selectolax_tree = remove_uninteresting_nodes(selectolax_tree)

it works well, but if I do

selectolax_tree = remove_uninteresting_nodes(selectolax_tree)
selectolax_tree = unnest_nodes(selectolax_tree)

it looks like we are stuck in a replace_with operation after some iterations and the code never ends.

I think this had something to do with the node.decompose() operation, since I also had this bug when using before unnest_nodes another function than remove_uninteresting_nodes, but which also uses node.decompose().

What is strange is that, after the remove_uninteresting_nodes function, if I remake a new tree using the html selectolax_tree.html, and then apply the unnest_nodes function, it works.

selectolax_tree = remove_uninteresting_nodes(selectolax_tree) 
selectolax_tree = HTMLParser(selectolax_tree.html)
selectolax_tree = unnest_nodes(selectolax_tree)

You can download everything needed to reproduce this easily here.

Thanks in advance.

Segmentation fault (core dumped) when calling "attributes" of a node

First of all, thanks for a really good and extremely fast HTML-parser in Python.
I came across a problem with this file:
bad_html.txt
(Probably it was corrupted while dumping, but here it doesn't matter)

I am finding meta-tags in it using HTMLParser.tags() function and then I'm trying to access attributes of found nodes. And on 4-th node python collapses with segfault.
Code:

html = open(path, 'r').read()
parser = HTMLParser(html)
for tag in parser.tags('meta'):
    print(tag.attributes)

Result:

{'charset': 'utf-8'}
{'content': 'IE=edge', 'http-equiv': 'X-UA-Compatible'}
{'content': 'Ñника, ÑозеÑки и вÑклÑÑаÑели ÑнайдеÑ, вÑклÑÑаÑели schneider electric, ÑозеÑки ÑнайдеÑ, ÑозеÑки schneider, schneider electric ÑозеÑки и вÑклÑÑаÑели, вÑклÑÑаÑели ÑнайдеÑ, unica ÑозеÑки, unica schneider, вÑклÑÑаÑели unica, schneider electric unica, Ñамки unica, Ð\xa0озеÑки schneider electric, ÑозеÑки ÑÐ½Ð°Ð¹Ð´ÐµÑ ÑлекÑÑик', 'name': 'keywords'}
Segmentation fault (core dumped)

The fact that you cannot handle SIGSEGV signals in Python properly makes it more sad.

Hope, you will be able to handle this "fatal error".

My params:

  • selectolax 0.1.9
  • Python 3.5.2
  • Linux 4.15.0-45-generic (Ubuntu 16.04)

UPDATE
Maybe I've found out the weak place, because:

html = open(path, 'r').read()
parser = HTMLParser(html)
parser = HTMLParser(parser.html)
for tag in parser.tags('meta'):
    print(tag.attributes)

works! Symbol " occurs inside meta tag and this builds a problem. Maybe helpful to look at differences between origin html text, parser.html and HTMLParser(parser.html).html

text() always decodes HTML entities

As far as I can tell, there's no easy way to extract text but preserve HTML entity encoding at the moment.

Having that option would be handy!

from selectolax.parser import HTMLParser
from html import escape

html = HTMLParser('<div>&#x3C;test&#x3E;</div>')
print(html.text())
print(escape(html.text()))

Pylint complains "No name 'HTMLParser' in module 'selectolax.parser'"

When running pylint on a file which imports HTMLParser, pylint complains. This doesn't affect the actual execution of the code

Reproducible example: https://replit.com/join/nyrfnzpk-vidhu1
You'll have to fork it and run pylint in the shell

image

pip install selectolax
# main.py
from selectolax.parser import HTMLParser 
$ pylint main.py 
************* Module main
main.py:1:0: E0611: No name 'HTMLParser' in module 'selectolax.parser' (no-name-in-module)

`<!DOCTYPE ...>` is not preserved during parsing

When you try to parse a document with a <!DOCTYPE ...> tag and serialize it, the doctype is removed

html = """
<!DOCTYPE html>
<html>
    <head>
        <title>Test</title>
    </head>
    <body>
        <p>Hello World</p>
    </body>
</html>
"""

from selectolax.parser import HTMLParser
doc = HTMLParser(html)

print(doc.html)

The output is missing the Doctype.

<html><head>
        <title>Test</title>
    </head>
    <body>
        <p>Hello World</p>
    
</body></html>

Anything I'm doing wrong or maybe using the wrong api/attribute?

Selectolax hangs because of bad CSS selector

Hi,

first thanks for selectolax, it helps me greatly.

If I give selectolax a bad css selector like "span[itemprop='example" it hangs indefinitely. It would be great if that will raise an Exception.

If you need some help with the project, I could see if I can free some time

Suggestion - Select all given selector

Hello!

I admire this amazing package where it has helped me both with work and also better knowledge! Its amazing!

I would like to give a suggestion and maybe this already has this function without me knowing it but I was thinking if there is a possibility to do a sort of selection of selectors. etc (Which I got inspiration from bs4):

    selector= SoupStrainer(["h1", "a"])
    bs4 = soup(response.text, 'lxml', parse_only=strainer)

what it basically does, instead of having the whole HTML printed out, it only prints out all that contains h1 & a in this case which saves more resources instead of needing to pull out the whole HTML everytime to scrape. If this is a possibility of course?

Admire your work!

segmentation fault (core dumped) on particular, large html input

Hey! First of all, thanks a lot for this cool project, it's really very convenient and speedy.

However, I have encountered an issue that python just dies when selectolax tries to get the text from some particular, quite large HTML inputs.
It doesn't throw an exception, it just dies. (I guess there is probably something going wrong in the C extension, not in the python parts of this package?)

I've attached an example file.
selectolax_bug.log

Some things I've already tried that don't seem to be the problem:

  • incomplete html tags (the attached file just terminates suddenly without properly closing all tags, however selectolax seems to handle those cases just fine otherwise)
  • raw file/input size (I've seen selectolax successfully handle inputs of even double the size of the attached file, so that doesn't seem to be the issue either)

One idea I'm currently having:

  • it might be related to the number of nodes (the test file contains several thousands of small option nodes) -> maybe selectolax chokes on the amount of nodes?

Code to recreate the issue:

with open('selectolax_bug.log') as f:
    html = f.read()

from selectolax.parser import HTMLParser
tree = HTMLParser(html)
text = tree.body.text() # here it just dies for me

getting the entire tags ia HTMl

I wan to achieve this:
soup= beatifulsoup()
[tag.name for tag in soup.find_all()]

Namely to get the entire HTML tags in a html text.
How do I do this?

Development of Lexbor

Hi @rushter

First of all thanks for all your amazing work.

I've noticed that the development of Modest engine is slowed down and instead lexbor is developed. This is what @lexborisov suggests to use over the Modest engine. What happens to selectolax? Are you planning to continue supporting lexobor engine or stick with Modest engine?

Don't throw exception when encoding text as UTF-8 bytes fails

The following line throws an exception if the input HTML string cannot be encoded as UTF-8:

bytes_html = html.encode('UTF-8')

When using Selectolax for parsing arbitrary web data, this condition can be triggered easily when the server reports the wrong encoding or multiple encodings are mixed, particularly in combination with UTF-7.

Take the byte string b'Roboto+Condensed', which (on its own) should have correctly been decoded as either ASCII or UTF-8. However, interpreted as UTF-7, the string contains an invalid shift sequence:

>>> b'Roboto+Condensed'.decode('utf-7')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "../encodings/utf_7.py", line 12, in decode
    return codecs.utf_7_decode(input, errors, True)
UnicodeDecodeError: 'utf7' codec can't decode bytes in position 6-15: unterminated shift sequence

Ignoring this error will produce a Unicode string which cannot be re-encoded as UTF-8 bytes without either replacing or ignoring invalid characters:

>>> b'Roboto+Condensed'.decode('utf-7', errors='ignore')
'Robotoઉ\udd7a笞'
>>> b'Roboto+Condensed'.decode('utf-7', errors='ignore').encode('utf-8')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'utf-8' codec can't encode character '\udd7a' in position 7: surrogates not allowed

Obviously, the easy fix is to do the encoding step beforehand, pass the raw bytes to Selectolax and force it to use UTF-8 by setting detect_encoding=False, but that's a lot of stuff you have to figure out in order to get it right, because the error is not really intuitive and can occur without any apparent reason. Since Selectolax already has a decode_errors parameter that defaults to "ignore", I would suggest to apply it also to this encoding step.

def __init__(self, html, detect_encoding=True, use_meta_tags=True, decode_errors = 'ignore'):

Selectolax 0.2.3 WARC.gz file size limit

Hello,

At the BSC we are trying to massively exploit the parsing capacities of Selectolax.
We evaluated a few WARC files that uncompressed was smaller than 1GB. However, when trying to parse in parallel a data volume of several WARC.gz files (less than 50 GB in total) we found that when compressed files are above 400MB it starts to fail and there is no easy way to track where is the issue, we just found that is something failing related to Selectolax.

Our question is if there is someplace in the code where something is declared as a very static maximum file size, if you're considering files as 32 bits instead of 64 bits, or if there is some unexpected limitation in the size of the file to be parsed.

We deeply appreciate any information you could provide us.

Best regards,
crosas

Problem with <Node p>.text?

I am porting some code from beautifulsoup4 to selectolax and I am having some troubles trying to get the text content from a p element.

The HTML is as follow:
<div class="post-contents"> <p><a href="/testtest" rel="5" class="quote">#5</a> <a href="testtest" rel="2" class="quote">#2</a> <a href="testtest rel="4" class="quote">#4</a> testtesttesttesttest.</p> </div>

I am using this selector div.post-contents p to get the p elements and then .text is used over each node, getting the first #5 inside de first a instead of all the text inside de p element. Am I doing something wrong or this is the expected behaviour of .text?

'Node.unwrap_tags' accepts only 'list' as argument

Hi,

I don't know if this has any effect, but 'Node.unwrap_tags' should accept any iterable rather than only lists.

The following exception is raised when calling Node.unwrap_tags with a set:

    html.body.unwrap_tags({'a', 'span', 'div',})
TypeError: Argument 'tags' has incorrect type (expected list, got set)

Unescaping escaped text within html

When the text inside a tag is escaped, it seems that it gets unescaped with the text() call. For example:

sample_parser = HTMLParser("""<a href="https://stackoverflow.com/questions/20771400">&lt;script&gt; tag vs &lt;script type = \'text/javascript\'&gt; tag</a>""")
print(sample_parser.body.text())

prints out
<script> tag vs <script type = 'text/javascript'> tag

I think it would make more sense to print out
&lt;script&gt; tag vs &lt;script type = \'text/javascript\'&gt; tag

Python 2 Support

Hey all!

Quick question - does this library work with python 2.7 by chance? Haven't seen much documentation around version support so just want to check in. We're almost done with our upgrade to 3 but this would potentially be a substantial performance boost.

Can't install selectolax with python 3.7.3

Installing using python 3.7.3 and pip

pip install selectolax

fails with error

# ...
creating build/temp.linux-x86_64-3.7/modest/source/mycss/values
    gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Imodest/include/ -I/usr/local/include/python3.7m -c selectolax/parser.c -o build/temp.linux-x86_64-3.7/selectolax/parser.o -DMODEST_BUILD_OS=Linux -DMyCORE_OS_Linux -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    selectolax/parser.c: In function ‘__Pyx__ExceptionSwap’:
    selectolax/parser.c:10792:24: error: ‘PyThreadState’ {aka ‘struct _ts’} has no member named ‘exc_type’; did you mean ‘curexc_type’?
         tmp_type = tstate->exc_type;
                            ^~~~~~~~
                            curexc_type
    selectolax/parser.c:10793:25: error: ‘PyThreadState’ {aka ‘struct _ts’} has no member named ‘exc_value’; did you mean ‘curexc_value’?
         tmp_value = tstate->exc_value;
                             ^~~~~~~~~
                             curexc_value
    selectolax/parser.c:10794:22: error: ‘PyThreadState’ {aka ‘struct _ts’} has no member named ‘exc_traceback’; did you mean ‘curexc_traceback’?
         tmp_tb = tstate->exc_traceback;
                          ^~~~~~~~~~~~~
                          curexc_traceback
    selectolax/parser.c:10795:13: error: ‘PyThreadState’ {aka ‘struct _ts’} has no member named ‘exc_type’; did you mean ‘curexc_type’?
         tstate->exc_type = *type;
                 ^~~~~~~~
                 curexc_type
    selectolax/parser.c:10796:13: error: ‘PyThreadState’ {aka ‘struct _ts’} has no member named ‘exc_value’; did you mean ‘curexc_value’?
         tstate->exc_value = *value;
                 ^~~~~~~~~
                 curexc_value
    selectolax/parser.c:10797:13: error: ‘PyThreadState’ {aka ‘struct _ts’} has no member named ‘exc_traceback’; did you mean ‘curexc_traceback’?
         tstate->exc_traceback = *tb;
                 ^~~~~~~~~~~~~
                 curexc_traceback
    error: command 'gcc' failed with exit status 1

Node.attrs causes segfault and has buggy items() method

This issue is probably similar to #9, but was not resolved by the fix. Bug is present in version 0.2.12.

A direct call to Node.attrs results in a segmentation fault. Calling methods on the object is fine, but getting the dict representation directly crashes the Python interpreter. The same does not happen with Node.attributes.

Repro case:

>>> from selectolax.parser import HTMLParser
>>> HTMLParser('<body foo="bar">abc</body></html>').css('body')[0].attrs['foo']
'bar'
>>> HTMLParser('<body foo="bar">abc</body></html>').css('body')[0].attrs.get('foo')
'bar'
>>> list(HTMLParser('<body foo="bar">abc</body></html>').css('body')[0].attrs.values())
['bar']
>>> HTMLParser('<body foo="bar">abc</body></html>').css('body')[0].attrs
[1]    3625999 segmentation fault (core dumped)  python

Also, while keys() and values() work fine, items() is buggy:

>>> list(HTMLParser('<body foo="bar">abc</body></html>').css('body')[0].attrs.items())
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "selectolax/node.pxi", line 91, in items
TypeError: 'selectolax.parser._Attributes' object is not callable

default argument throws an exception

"default" argument in ".css_first()" method throws an exception "TypeError: Argument 'default' has incorrect type (expected bool, got str)"

I wanted to try the example "Default return value if there is no matches" but an exception appeared

Do not support ">" in standard css selector

# -*- coding: utf-8 -*-
from bs4 import BeautifulSoup

html = '<div><p>text</p></div>'
node = BeautifulSoup(html, 'html.parser')
print(node.select_one('div p').text)
# text
print(node.select_one('div>p').text)
# text

from selectolax.parser import HTMLParser

html = '<div><p>text</p></div>'
node = HTMLParser(html)
print(node.css_first('div p').text())
# text
print(node.css_first('div>p').text())
# ValueError: Bad CSS Selectors: div>p

Installation fails on Korean Windows

Thank you for providing a good library!

In case of Korean Windows, python use the cp949 encoding when reading the file with open function, (because of past issues related to Korean encoding).

Therefore, installing the current distribution package using pip will be aborted with the following message.

    ERROR: Complete output from command python setup.py egg_info:
    ERROR: Traceback (most recent call last):
      File "<string>", line 1, in <module>
      Install-quywlvnk \ selectolax \ setup.py ", line 11, in <module> C: \ Users \ persu \ AppData \ Local \ Temp \
        readme = readme_file.read ()
    UnicodeDecodeError: 'cp949' codec can not decode byte 0xe2 in position 2122: illegal multibyte sequence

To install a package, need to assign the encoding on line 10 of setup.py as below.

with open ('README.rst', encoding = 'utf-8') as readme_file:

Could I ask you to reflect this part? :)

Precompiled version

Hello, at first thanks for awesome project!

Its not an issue at all, just question about distribution of package. Is there any way for users to install selectolax without c++ installed on windows platform? Any pointers to resources to read about that, will be appreciated.

Segmentation fault with unwrap_tags

First, thanks for writing and maintaining this speedy library. It makes a huge difference when parsing thousands of documents compared to other parsers.

Anyway, while attempting to strip the data tag from some content, I noticed that the library seems to choke on this specific tag. Here's some code to reproduce it:

from selectolax.parser import HTMLParser
html = """test"""
tree = HTMLParser(html)
tree.unwrap_tags(["data"])

Output: Segmentation fault (core dumped)

I'm running selectolax==0.2.6 on Python 3.6.9

Installation fails

I have MacOS Big Sur. Didn't try on other platforms

  Building wheel for selectolax (setup.py) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/local/opt/[email protected]/bin/python3.9 -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/0h/cb4w9rbx3f19s9n64s91b6v021jclj/T/pip-install-a3wayd0r/selectolax_0f23ab3f9f37481eb9cec330f7b89e84/setup.py'"'"'; __file__='"'"'/private/var/folders/0h/cb4w9rbx3f19s9n64s91b6v021jclj/T/pip-install-a3wayd0r/selectolax_0f23ab3f9f37481eb9cec330f7b89e84/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /private/var/folders/0h/cb4w9rbx3f19s9n64s91b6v021jclj/T/pip-wheel-zc8bhbhf
       cwd: /private/var/folders/0h/cb4w9rbx3f19s9n64s91b6v021jclj/T/pip-install-a3wayd0r/selectolax_0f23ab3f9f37481eb9cec330f7b89e84/
  Complete output (408 lines):
  running bdist_wheel
  running build
  running build_py
  creating build
  creating build/lib.macosx-11-x86_64-3.9
  creating build/lib.macosx-11-x86_64-3.9/selectolax
  copying selectolax/__init__.py -> build/lib.macosx-11-x86_64-3.9/selectolax
  running egg_info
  writing selectolax.egg-info/PKG-INFO
  writing dependency_links to selectolax.egg-info/dependency_links.txt
  writing top-level names to selectolax.egg-info/top_level.txt
  adding license file 'LICENSE' (matched pattern 'LICEN[CS]E*')
  reading manifest file 'selectolax.egg-info/SOURCES.txt'
  reading manifest template 'MANIFEST.in'
  warning: no files found matching 'CONTRIBUTING.rst'
  warning: no files found matching 'HISTORY.rst'
  warning: no previously-included files found matching 'selectolax/*.so'
  warning: no files found matching 'modest/include/*'
  warning: no files found matching 'modest/source/*'
  warning: no previously-included files matching '__pycache__' found under directory '*'
  warning: no previously-included files matching '*.py[co]' found under directory '*'
  warning: no files found matching '*.jpg' under directory 'docs'
  writing manifest file 'selectolax.egg-info/SOURCES.txt'
  copying selectolax/node.pxi -> build/lib.macosx-11-x86_64-3.9/selectolax
  copying selectolax/parser.c -> build/lib.macosx-11-x86_64-3.9/selectolax
  copying selectolax/parser.pxd -> build/lib.macosx-11-x86_64-3.9/selectolax
  copying selectolax/parser.pyx -> build/lib.macosx-11-x86_64-3.9/selectolax
  copying selectolax/selector.pxi -> build/lib.macosx-11-x86_64-3.9/selectolax
  running build_ext
  building 'selectolax.parser' extension
  creating build/temp.macosx-11-x86_64-3.9
  creating build/temp.macosx-11-x86_64-3.9/modest
  creating build/temp.macosx-11-x86_64-3.9/modest/source
  creating build/temp.macosx-11-x86_64-3.9/modest/source/modest
  creating build/temp.macosx-11-x86_64-3.9/modest/source/modest/finder
  creating build/temp.macosx-11-x86_64-3.9/modest/source/modest/layer
  creating build/temp.macosx-11-x86_64-3.9/modest/source/modest/node
  creating build/temp.macosx-11-x86_64-3.9/modest/source/modest/render
  creating build/temp.macosx-11-x86_64-3.9/modest/source/modest/style
  creating build/temp.macosx-11-x86_64-3.9/modest/source/mycore
  creating build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils
  creating build/temp.macosx-11-x86_64-3.9/modest/source/mycss
  creating build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration
  creating build/temp.macosx-11-x86_64-3.9/modest/source/mycss/media
  creating build/temp.macosx-11-x86_64-3.9/modest/source/mycss/namespace
  creating build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property
  creating build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors
  creating build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values
  creating build/temp.macosx-11-x86_64-3.9/modest/source/myencoding
  creating build/temp.macosx-11-x86_64-3.9/modest/source/myfont
  creating build/temp.macosx-11-x86_64-3.9/modest/source/myhtml
  creating build/temp.macosx-11-x86_64-3.9/modest/source/myport
  creating build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix
  creating build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix/mycore
  creating build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix/mycore/utils
  creating build/temp.macosx-11-x86_64-3.9/modest/source/myunicode
  creating build/temp.macosx-11-x86_64-3.9/modest/source/myurl
  creating build/temp.macosx-11-x86_64-3.9/selectolax
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/declaration.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/declaration.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/finder/finder.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/finder/finder.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/finder/match.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/finder/match.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/finder/pseudo_class.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/finder/pseudo_class.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/finder/thread.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/finder/thread.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/finder/type.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/finder/type.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/glue.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/glue.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/layer/layer.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/layer/layer.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/modest.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/modest.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/node/node.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/node/node.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/node/property.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/node/property.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/node/raw_property.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/node/raw_property.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/node/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/node/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/render/begin.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/render/begin.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/render/binding.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/render/binding.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/render/tree.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/render/tree.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/render/tree_node.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/render/tree_node.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/style/default.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/style/default.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/style/map.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/style/map.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/style/raw.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/style/raw.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/style/sheet.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/style/sheet.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/style/type.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/style/type.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/incoming.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/incoming.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/myosi.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/myosi.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/mystring.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/mystring.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/mythread.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/mythread.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/thread_queue.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/thread_queue.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/avl_tree.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/avl_tree.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/mchar_async.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/mchar_async.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/mcobject.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/mcobject.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/mcobject_async.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/mcobject_async.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/mcsimple.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/mcsimple.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/mcsync.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/mcsync.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/mctree.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/mctree.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/mhash.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/mhash.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/an_plus_b.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/an_plus_b.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/check.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/check.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/convert.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/convert.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/declaration/default.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration/default.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/declaration/entry.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration/entry.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/declaration/entry_destroy.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration/entry_destroy.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/declaration/init.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration/init.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/declaration/parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/declaration/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/declaration/state.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration/state.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/entry.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/entry.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/media/init.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/media/init.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/media/state.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/media/state.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/mycss.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/mycss.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/mystring.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/mystring.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/namespace/init.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/namespace/init.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/namespace/parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/namespace/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/namespace/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/namespace/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/namespace/state.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/namespace/state.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/init.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/init.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/parser_background.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/parser_background.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/parser_image.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/parser_image.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/parser_text_decoration.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/parser_text_decoration.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/parser_url.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/parser_url.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/shared.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/shared.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/function.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/function.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/function_parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/function_parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  modest/source/mycss/selectors/function_parser.c:469:57: warning: cast to smaller integer type 'mycss_selectors_function_drop_type_t' (aka 'enum mycss_selectors_function_drop_type') from 'void *' [-Wvoid-pointer-to-enum-cast]
          mycss_selectors_function_drop_type_t drop_val = mycss_selector_value_drop(selector->value);
                                                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  modest/include/mycss/selectors/value.h:28:41: note: expanded from macro 'mycss_selector_value_drop'
  #define mycss_selector_value_drop(obj) ((mycss_selectors_function_drop_type_t)(obj))
                                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1 warning generated.
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/init.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/init.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/list.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/list.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/pseudo.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/pseudo.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  modest/source/mycss/selectors/serialization.c:183:69: warning: cast to smaller integer type 'mycss_selectors_function_drop_type_t' (aka 'enum mycss_selectors_function_drop_type') from 'void *' [-Wvoid-pointer-to-enum-cast]
                      mycss_selectors_function_drop_type_t drop_val = mycss_selector_value_drop(selector->value);
                                                                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  modest/include/mycss/selectors/value.h:28:41: note: expanded from macro 'mycss_selector_value_drop'
  #define mycss_selector_value_drop(obj) ((mycss_selectors_function_drop_type_t)(obj))
                                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1 warning generated.
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/state.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/state.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/value.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/value.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/stack.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/stack.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/stylesheet.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/stylesheet.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/tokenizer.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/tokenizer.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/tokenizer_end.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/tokenizer_end.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/tokenizer_global.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/tokenizer_global.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/color.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/color.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/color_parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/color_parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/consume.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/consume.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/destroy.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/destroy.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/image.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/image.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/units.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/units.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/values.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/values.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myencoding/detect.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myencoding/detect.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myencoding/encoding.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myencoding/encoding.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myencoding/mystring.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myencoding/mystring.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/cmap.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/cmap.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/glyf.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/glyf.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/head.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/head.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/hhea.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/hhea.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/hmtx.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/hmtx.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/loca.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/loca.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/maxp.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/maxp.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/myfont.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/myfont.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  modest/source/myfont/myfont.c:146:45: warning: comparison of integers of different signs: 'size_t' (aka 'unsigned long') and 'long' [-Wsign-compare]
      if(mycore_fread(data, 1, file_size, fh) != file_size) {
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^  ~~~~~~~~~
  1 warning generated.
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/myosi.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/myosi.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/name.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/name.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/os_2.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/os_2.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/pclt.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/pclt.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/vhea.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/vhea.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/vmtx.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/vmtx.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/callback.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/callback.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/charef.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/charef.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/data_process.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/data_process.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/myhtml.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/myhtml.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/mynamespace.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/mynamespace.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/mystring.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/mystring.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/rules.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/rules.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/stream.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/stream.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/tag.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/tag.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/tag_init.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/tag_init.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/token.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/token.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/tokenizer.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/tokenizer.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/tokenizer_doctype.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/tokenizer_doctype.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/tokenizer_end.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/tokenizer_end.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/tokenizer_script.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/tokenizer_script.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/tree.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/tree.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myport/posix/mycore/io.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix/mycore/io.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myport/posix/mycore/memory.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix/mycore/memory.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myport/posix/mycore/perf.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix/mycore/perf.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myport/posix/mycore/thread.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix/mycore/thread.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myport/posix/mycore/utils/mcsync.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix/mycore/utils/mcsync.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myunicode/myosi.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myunicode/myosi.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/host.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/host.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/myosi.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/myosi.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/parser_end.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/parser_end.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/path.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/path.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/punycode.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/punycode.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/scheme.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/scheme.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/url.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/url.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/utils.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/utils.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c selectolax/parser.c -o build/temp.macosx-11-x86_64-3.9/selectolax/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
  selectolax/parser.c:9811:46: error: no member named 'tp_print' in 'struct _typeobject'
    __pyx_type_10selectolax_6parser_HTMLParser.tp_print = 0;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
  selectolax/parser.c:9825:41: error: no member named 'tp_print' in 'struct _typeobject'
    __pyx_type_10selectolax_6parser_Stack.tp_print = 0;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
  selectolax/parser.c:9838:44: error: no member named 'tp_print' in 'struct _typeobject'
    __pyx_type_10selectolax_6parser_Selector.tp_print = 0;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
  selectolax/parser.c:9850:40: error: no member named 'tp_print' in 'struct _typeobject'
    __pyx_type_10selectolax_6parser_Node.tp_print = 0;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
  selectolax/parser.c:9859:60: error: no member named 'tp_print' in 'struct _typeobject'
    __pyx_type_10selectolax_6parser___pyx_scope_struct__iter.tp_print = 0;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
  selectolax/parser.c:10265:22: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                      (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 :
                       ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:261:7: note: expanded from macro 'PyUnicode_GET_SIZE'
        PyUnicode_WSTR_LENGTH(op) :                    \
        ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
  #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                    ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
  Py_DEPRECATED(3.3)
  ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  selectolax/parser.c:10265:22: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations]
                      (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 :
                       ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:262:14: note: expanded from macro 'PyUnicode_GET_SIZE'
        ((void)PyUnicode_AsUnicode(_PyObject_CAST(op)),\
               ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:580:1: note: 'PyUnicode_AsUnicode' has been explicitly marked deprecated here
  Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode(
  ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  selectolax/parser.c:10265:22: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                      (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 :
                       ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:264:8: note: expanded from macro 'PyUnicode_GET_SIZE'
         PyUnicode_WSTR_LENGTH(op)))
         ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
  #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                    ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
  Py_DEPRECATED(3.3)
  ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  selectolax/parser.c:10265:52: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                      (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 :
                                                     ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:261:7: note: expanded from macro 'PyUnicode_GET_SIZE'
        PyUnicode_WSTR_LENGTH(op) :                    \
        ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
  #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                    ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
  Py_DEPRECATED(3.3)
  ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  selectolax/parser.c:10265:52: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations]
                      (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 :
                                                     ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:262:14: note: expanded from macro 'PyUnicode_GET_SIZE'
        ((void)PyUnicode_AsUnicode(_PyObject_CAST(op)),\
               ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:580:1: note: 'PyUnicode_AsUnicode' has been explicitly marked deprecated here
  Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode(
  ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  selectolax/parser.c:10265:52: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                      (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 :
                                                     ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:264:8: note: expanded from macro 'PyUnicode_GET_SIZE'
         PyUnicode_WSTR_LENGTH(op)))
         ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
  #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                    ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
  Py_DEPRECATED(3.3)
  ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  selectolax/parser.c:10281:26: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                          (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 :
                           ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:261:7: note: expanded from macro 'PyUnicode_GET_SIZE'
        PyUnicode_WSTR_LENGTH(op) :                    \
        ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
  #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                    ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
  Py_DEPRECATED(3.3)
  ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  selectolax/parser.c:10281:26: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations]
                          (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 :
                           ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:262:14: note: expanded from macro 'PyUnicode_GET_SIZE'
        ((void)PyUnicode_AsUnicode(_PyObject_CAST(op)),\
               ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:580:1: note: 'PyUnicode_AsUnicode' has been explicitly marked deprecated here
  Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode(
  ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  selectolax/parser.c:10281:26: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                          (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 :
                           ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:264:8: note: expanded from macro 'PyUnicode_GET_SIZE'
         PyUnicode_WSTR_LENGTH(op)))
         ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
  #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                    ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
  Py_DEPRECATED(3.3)
  ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  selectolax/parser.c:10281:59: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                          (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 :
                                                            ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:261:7: note: expanded from macro 'PyUnicode_GET_SIZE'
        PyUnicode_WSTR_LENGTH(op) :                    \
        ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
  #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                    ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
  Py_DEPRECATED(3.3)
  ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  selectolax/parser.c:10281:59: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations]
                          (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 :
                                                            ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:262:14: note: expanded from macro 'PyUnicode_GET_SIZE'
        ((void)PyUnicode_AsUnicode(_PyObject_CAST(op)),\
               ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:580:1: note: 'PyUnicode_AsUnicode' has been explicitly marked deprecated here
  Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode(
  ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  selectolax/parser.c:10281:59: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                          (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 :
                                                            ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:264:8: note: expanded from macro 'PyUnicode_GET_SIZE'
         PyUnicode_WSTR_LENGTH(op)))
         ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
  #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                    ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
  Py_DEPRECATED(3.3)
  ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  selectolax/parser.c:10592:16: warning: 'PyUnicode_FromUnicode' is deprecated [-Wdeprecated-declarations]
          return PyUnicode_FromUnicode(NULL, 0);
                 ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:551:1: note: 'PyUnicode_FromUnicode' has been explicitly marked deprecated here
  Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject*) PyUnicode_FromUnicode(
  ^
  /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  13 warnings and 5 errors generated.
  error: command '/usr/bin/clang' failed with exit code 1
  ----------------------------------------
  ERROR: Failed building wheel for selectolax
  Running setup.py clean for selectolax
Failed to build selectolax
Installing collected packages: selectolax, pipdate, lockfile, halo, github3.py, click, cachecontrol, ghtopdep
    Running setup.py install for selectolax ... error
    ERROR: Command errored out with exit status 1:
     command: /usr/local/opt/[email protected]/bin/python3.9 -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/0h/cb4w9rbx3f19s9n64s91b6v021jclj/T/pip-install-a3wayd0r/selectolax_0f23ab3f9f37481eb9cec330f7b89e84/setup.py'"'"'; __file__='"'"'/private/var/folders/0h/cb4w9rbx3f19s9n64s91b6v021jclj/T/pip-install-a3wayd0r/selectolax_0f23ab3f9f37481eb9cec330f7b89e84/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/0h/cb4w9rbx3f19s9n64s91b6v021jclj/T/pip-record-scnbidf7/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python3.9/selectolax
         cwd: /private/var/folders/0h/cb4w9rbx3f19s9n64s91b6v021jclj/T/pip-install-a3wayd0r/selectolax_0f23ab3f9f37481eb9cec330f7b89e84/
    Complete output (408 lines):
    running install
    running build
    running build_py
    creating build
    creating build/lib.macosx-11-x86_64-3.9
    creating build/lib.macosx-11-x86_64-3.9/selectolax
    copying selectolax/__init__.py -> build/lib.macosx-11-x86_64-3.9/selectolax
    running egg_info
    writing selectolax.egg-info/PKG-INFO
    writing dependency_links to selectolax.egg-info/dependency_links.txt
    writing top-level names to selectolax.egg-info/top_level.txt
    adding license file 'LICENSE' (matched pattern 'LICEN[CS]E*')
    reading manifest file 'selectolax.egg-info/SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    warning: no files found matching 'CONTRIBUTING.rst'
    warning: no files found matching 'HISTORY.rst'
    warning: no previously-included files found matching 'selectolax/*.so'
    warning: no files found matching 'modest/include/*'
    warning: no files found matching 'modest/source/*'
    warning: no previously-included files matching '__pycache__' found under directory '*'
    warning: no previously-included files matching '*.py[co]' found under directory '*'
    warning: no files found matching '*.jpg' under directory 'docs'
    writing manifest file 'selectolax.egg-info/SOURCES.txt'
    copying selectolax/node.pxi -> build/lib.macosx-11-x86_64-3.9/selectolax
    copying selectolax/parser.c -> build/lib.macosx-11-x86_64-3.9/selectolax
    copying selectolax/parser.pxd -> build/lib.macosx-11-x86_64-3.9/selectolax
    copying selectolax/parser.pyx -> build/lib.macosx-11-x86_64-3.9/selectolax
    copying selectolax/selector.pxi -> build/lib.macosx-11-x86_64-3.9/selectolax
    running build_ext
    building 'selectolax.parser' extension
    creating build/temp.macosx-11-x86_64-3.9
    creating build/temp.macosx-11-x86_64-3.9/modest
    creating build/temp.macosx-11-x86_64-3.9/modest/source
    creating build/temp.macosx-11-x86_64-3.9/modest/source/modest
    creating build/temp.macosx-11-x86_64-3.9/modest/source/modest/finder
    creating build/temp.macosx-11-x86_64-3.9/modest/source/modest/layer
    creating build/temp.macosx-11-x86_64-3.9/modest/source/modest/node
    creating build/temp.macosx-11-x86_64-3.9/modest/source/modest/render
    creating build/temp.macosx-11-x86_64-3.9/modest/source/modest/style
    creating build/temp.macosx-11-x86_64-3.9/modest/source/mycore
    creating build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils
    creating build/temp.macosx-11-x86_64-3.9/modest/source/mycss
    creating build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration
    creating build/temp.macosx-11-x86_64-3.9/modest/source/mycss/media
    creating build/temp.macosx-11-x86_64-3.9/modest/source/mycss/namespace
    creating build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property
    creating build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors
    creating build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values
    creating build/temp.macosx-11-x86_64-3.9/modest/source/myencoding
    creating build/temp.macosx-11-x86_64-3.9/modest/source/myfont
    creating build/temp.macosx-11-x86_64-3.9/modest/source/myhtml
    creating build/temp.macosx-11-x86_64-3.9/modest/source/myport
    creating build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix
    creating build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix/mycore
    creating build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix/mycore/utils
    creating build/temp.macosx-11-x86_64-3.9/modest/source/myunicode
    creating build/temp.macosx-11-x86_64-3.9/modest/source/myurl
    creating build/temp.macosx-11-x86_64-3.9/selectolax
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/declaration.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/declaration.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/finder/finder.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/finder/finder.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/finder/match.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/finder/match.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/finder/pseudo_class.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/finder/pseudo_class.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/finder/thread.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/finder/thread.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/finder/type.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/finder/type.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/glue.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/glue.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/layer/layer.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/layer/layer.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/modest.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/modest.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/node/node.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/node/node.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/node/property.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/node/property.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/node/raw_property.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/node/raw_property.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/node/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/node/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/render/begin.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/render/begin.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/render/binding.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/render/binding.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/render/tree.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/render/tree.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/render/tree_node.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/render/tree_node.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/style/default.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/style/default.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/style/map.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/style/map.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/style/raw.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/style/raw.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/style/sheet.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/style/sheet.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/modest/style/type.c -o build/temp.macosx-11-x86_64-3.9/modest/source/modest/style/type.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/incoming.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/incoming.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/myosi.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/myosi.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/mystring.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/mystring.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/mythread.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/mythread.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/thread_queue.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/thread_queue.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/avl_tree.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/avl_tree.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/mchar_async.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/mchar_async.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/mcobject.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/mcobject.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/mcobject_async.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/mcobject_async.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/mcsimple.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/mcsimple.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/mcsync.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/mcsync.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/mctree.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/mctree.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycore/utils/mhash.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycore/utils/mhash.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/an_plus_b.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/an_plus_b.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/check.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/check.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/convert.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/convert.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/declaration/default.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration/default.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/declaration/entry.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration/entry.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/declaration/entry_destroy.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration/entry_destroy.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/declaration/init.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration/init.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/declaration/parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/declaration/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/declaration/state.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/declaration/state.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/entry.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/entry.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/media/init.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/media/init.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/media/state.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/media/state.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/mycss.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/mycss.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/mystring.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/mystring.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/namespace/init.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/namespace/init.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/namespace/parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/namespace/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/namespace/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/namespace/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/namespace/state.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/namespace/state.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/init.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/init.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/parser_background.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/parser_background.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/parser_image.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/parser_image.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/parser_text_decoration.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/parser_text_decoration.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/parser_url.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/parser_url.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/property/shared.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/property/shared.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/function.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/function.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/function_parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/function_parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    modest/source/mycss/selectors/function_parser.c:469:57: warning: cast to smaller integer type 'mycss_selectors_function_drop_type_t' (aka 'enum mycss_selectors_function_drop_type') from 'void *' [-Wvoid-pointer-to-enum-cast]
            mycss_selectors_function_drop_type_t drop_val = mycss_selector_value_drop(selector->value);
                                                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    modest/include/mycss/selectors/value.h:28:41: note: expanded from macro 'mycss_selector_value_drop'
    #define mycss_selector_value_drop(obj) ((mycss_selectors_function_drop_type_t)(obj))
                                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1 warning generated.
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/init.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/init.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/list.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/list.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/pseudo.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/pseudo.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    modest/source/mycss/selectors/serialization.c:183:69: warning: cast to smaller integer type 'mycss_selectors_function_drop_type_t' (aka 'enum mycss_selectors_function_drop_type') from 'void *' [-Wvoid-pointer-to-enum-cast]
                        mycss_selectors_function_drop_type_t drop_val = mycss_selector_value_drop(selector->value);
                                                                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    modest/include/mycss/selectors/value.h:28:41: note: expanded from macro 'mycss_selector_value_drop'
    #define mycss_selector_value_drop(obj) ((mycss_selectors_function_drop_type_t)(obj))
                                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1 warning generated.
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/state.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/state.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/selectors/value.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/selectors/value.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/stack.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/stack.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/stylesheet.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/stylesheet.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/tokenizer.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/tokenizer.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/tokenizer_end.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/tokenizer_end.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/tokenizer_global.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/tokenizer_global.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/color.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/color.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/color_parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/color_parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/consume.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/consume.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/destroy.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/destroy.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/image.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/image.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/units.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/units.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/mycss/values/values.c -o build/temp.macosx-11-x86_64-3.9/modest/source/mycss/values/values.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myencoding/detect.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myencoding/detect.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myencoding/encoding.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myencoding/encoding.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myencoding/mystring.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myencoding/mystring.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/cmap.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/cmap.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/glyf.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/glyf.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/head.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/head.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/hhea.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/hhea.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/hmtx.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/hmtx.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/loca.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/loca.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/maxp.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/maxp.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/myfont.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/myfont.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    modest/source/myfont/myfont.c:146:45: warning: comparison of integers of different signs: 'size_t' (aka 'unsigned long') and 'long' [-Wsign-compare]
        if(mycore_fread(data, 1, file_size, fh) != file_size) {
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^  ~~~~~~~~~
    1 warning generated.
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/myosi.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/myosi.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/name.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/name.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/os_2.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/os_2.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/pclt.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/pclt.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/vhea.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/vhea.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myfont/vmtx.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myfont/vmtx.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/callback.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/callback.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/charef.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/charef.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/data_process.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/data_process.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/myhtml.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/myhtml.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/mynamespace.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/mynamespace.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/mystring.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/mystring.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/rules.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/rules.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/stream.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/stream.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/tag.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/tag.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/tag_init.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/tag_init.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/token.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/token.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/tokenizer.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/tokenizer.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/tokenizer_doctype.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/tokenizer_doctype.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/tokenizer_end.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/tokenizer_end.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/tokenizer_script.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/tokenizer_script.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myhtml/tree.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myhtml/tree.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myport/posix/mycore/io.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix/mycore/io.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myport/posix/mycore/memory.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix/mycore/memory.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myport/posix/mycore/perf.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix/mycore/perf.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myport/posix/mycore/thread.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix/mycore/thread.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myport/posix/mycore/utils/mcsync.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myport/posix/mycore/utils/mcsync.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myunicode/myosi.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myunicode/myosi.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/host.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/host.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/myosi.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/myosi.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/parser.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/parser_end.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/parser_end.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/path.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/path.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/punycode.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/punycode.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/scheme.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/scheme.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/serialization.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/serialization.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/url.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/url.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c modest/source/myurl/utils.c -o build/temp.macosx-11-x86_64-3.9/modest/source/myurl/utils.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Imodest/include/ -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c selectolax/parser.c -o build/temp.macosx-11-x86_64-3.9/selectolax/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
    selectolax/parser.c:9811:46: error: no member named 'tp_print' in 'struct _typeobject'
      __pyx_type_10selectolax_6parser_HTMLParser.tp_print = 0;
      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
    selectolax/parser.c:9825:41: error: no member named 'tp_print' in 'struct _typeobject'
      __pyx_type_10selectolax_6parser_Stack.tp_print = 0;
      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
    selectolax/parser.c:9838:44: error: no member named 'tp_print' in 'struct _typeobject'
      __pyx_type_10selectolax_6parser_Selector.tp_print = 0;
      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
    selectolax/parser.c:9850:40: error: no member named 'tp_print' in 'struct _typeobject'
      __pyx_type_10selectolax_6parser_Node.tp_print = 0;
      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
    selectolax/parser.c:9859:60: error: no member named 'tp_print' in 'struct _typeobject'
      __pyx_type_10selectolax_6parser___pyx_scope_struct__iter.tp_print = 0;
      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
    selectolax/parser.c:10265:22: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                        (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 :
                         ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:261:7: note: expanded from macro 'PyUnicode_GET_SIZE'
          PyUnicode_WSTR_LENGTH(op) :                    \
          ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
    #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                      ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
    Py_DEPRECATED(3.3)
    ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                         ^
    selectolax/parser.c:10265:22: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations]
                        (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 :
                         ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:262:14: note: expanded from macro 'PyUnicode_GET_SIZE'
          ((void)PyUnicode_AsUnicode(_PyObject_CAST(op)),\
                 ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:580:1: note: 'PyUnicode_AsUnicode' has been explicitly marked deprecated here
    Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode(
    ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                         ^
    selectolax/parser.c:10265:22: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                        (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 :
                         ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:264:8: note: expanded from macro 'PyUnicode_GET_SIZE'
           PyUnicode_WSTR_LENGTH(op)))
           ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
    #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                      ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
    Py_DEPRECATED(3.3)
    ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                         ^
    selectolax/parser.c:10265:52: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                        (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 :
                                                       ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:261:7: note: expanded from macro 'PyUnicode_GET_SIZE'
          PyUnicode_WSTR_LENGTH(op) :                    \
          ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
    #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                      ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
    Py_DEPRECATED(3.3)
    ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                         ^
    selectolax/parser.c:10265:52: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations]
                        (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 :
                                                       ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:262:14: note: expanded from macro 'PyUnicode_GET_SIZE'
          ((void)PyUnicode_AsUnicode(_PyObject_CAST(op)),\
                 ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:580:1: note: 'PyUnicode_AsUnicode' has been explicitly marked deprecated here
    Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode(
    ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                         ^
    selectolax/parser.c:10265:52: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                        (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 :
                                                       ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:264:8: note: expanded from macro 'PyUnicode_GET_SIZE'
           PyUnicode_WSTR_LENGTH(op)))
           ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
    #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                      ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
    Py_DEPRECATED(3.3)
    ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                         ^
    selectolax/parser.c:10281:26: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                            (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 :
                             ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:261:7: note: expanded from macro 'PyUnicode_GET_SIZE'
          PyUnicode_WSTR_LENGTH(op) :                    \
          ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
    #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                      ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
    Py_DEPRECATED(3.3)
    ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                         ^
    selectolax/parser.c:10281:26: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations]
                            (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 :
                             ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:262:14: note: expanded from macro 'PyUnicode_GET_SIZE'
          ((void)PyUnicode_AsUnicode(_PyObject_CAST(op)),\
                 ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:580:1: note: 'PyUnicode_AsUnicode' has been explicitly marked deprecated here
    Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode(
    ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                         ^
    selectolax/parser.c:10281:26: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                            (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 :
                             ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:264:8: note: expanded from macro 'PyUnicode_GET_SIZE'
           PyUnicode_WSTR_LENGTH(op)))
           ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
    #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                      ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
    Py_DEPRECATED(3.3)
    ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                         ^
    selectolax/parser.c:10281:59: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                            (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 :
                                                              ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:261:7: note: expanded from macro 'PyUnicode_GET_SIZE'
          PyUnicode_WSTR_LENGTH(op) :                    \
          ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
    #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                      ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
    Py_DEPRECATED(3.3)
    ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                         ^
    selectolax/parser.c:10281:59: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations]
                            (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 :
                                                              ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:262:14: note: expanded from macro 'PyUnicode_GET_SIZE'
          ((void)PyUnicode_AsUnicode(_PyObject_CAST(op)),\
                 ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:580:1: note: 'PyUnicode_AsUnicode' has been explicitly marked deprecated here
    Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode(
    ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                         ^
    selectolax/parser.c:10281:59: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations]
                            (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 :
                                                              ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:264:8: note: expanded from macro 'PyUnicode_GET_SIZE'
           PyUnicode_WSTR_LENGTH(op)))
           ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:451:35: note: expanded from macro 'PyUnicode_WSTR_LENGTH'
    #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op)
                                      ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:445:1: note: '_PyUnicode_get_wstr_length' has been explicitly marked deprecated here
    Py_DEPRECATED(3.3)
    ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                         ^
    selectolax/parser.c:10592:16: warning: 'PyUnicode_FromUnicode' is deprecated [-Wdeprecated-declarations]
            return PyUnicode_FromUnicode(NULL, 0);
                   ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/cpython/unicodeobject.h:551:1: note: 'PyUnicode_FromUnicode' has been explicitly marked deprecated here
    Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject*) PyUnicode_FromUnicode(
    ^
    /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9/pyport.h:508:54: note: expanded from macro 'Py_DEPRECATED'
    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                         ^
    13 warnings and 5 errors generated.
    error: command '/usr/bin/clang' failed with exit code 1
    ----------------------------------------
ERROR: Command errored out with exit status 1: /usr/local/opt/[email protected]/bin/python3.9 -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/0h/cb4w9rbx3f19s9n64s91b6v021jclj/T/pip-install-a3wayd0r/selectolax_0f23ab3f9f37481eb9cec330f7b89e84/setup.py'"'"'; __file__='"'"'/private/var/folders/0h/cb4w9rbx3f19s9n64s91b6v021jclj/T/pip-install-a3wayd0r/selectolax_0f23ab3f9f37481eb9cec330f7b89e84/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/0h/cb4w9rbx3f19s9n64s91b6v021jclj/T/pip-record-scnbidf7/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python3.9/selectolax Check the logs for full command output.

Using LexborHTMLParser seems to remove some HTML tags

Hello there Mr.Selectolax :)

I have been using selectolax for a very long time and I do really like it and will continue using it. I have found a small issue where I seem to get a return of html with removed tags:

from selectolax.lexbor import LexborHTMLParser

html_test = """
<tr class="clickable" data-price="1800">
   <td>
      <img width="80" src="https://media.restocks.net/products/DD1869-103/nike-dunk-high-black-white-w-1-80.png"/>
   </td>
   <td>
      <input class="productid" type="hidden" value="1882303"/>
      <input class="baseproductid" type="hidden" value="12107"/>
      <input class="sizeid" type="hidden" value="1"/>
      <input class="price" type="hidden" value="1800"/>
      <span>Nike Dunk High Black White Panda (W)</span>
      <br/>
      EU: 36
      <br/>
      ID: 1882303
      <br/>
      Ship before:
      13/05/22
   </td>
   <td>
      <span class="storeprice ">
      <span class="storeprice__value">1.800 kr</span>
      </span>
   </td>
   <td>
      <div onclick="window.open('https://restocks.net/en/account/sales/send-label/1882303')" class="download__send__label c-badge c-badge--small pull-right" style="background-color: #df9033">download shipping label</div>
   </td>
   <td>
      <i class="fas fa-pencil-alt listing__edit__icon"></i></span>
   </td>
</tr>
<tr class="clickable" data-price="4000">
   <td>
      <img width="80" src="https://media.restocks.net/products/DC0774-114/air-jordan-1-low-marina-blue-w-1-80.png"/>
   </td>
   <td>
      <input class="productid" type="hidden" value="1882293"/>
      <input class="baseproductid" type="hidden" value="13815"/>
      <input class="sizeid" type="hidden" value="48"/>
      <input class="price" type="hidden" value="4000"/>
      <span>Air Jordan 1 Low Marina Blue (W)</span>
      <br/>
      EU: 38 ½
      <br/>
      ID: 1882293
      <br/>
      Ship before:
      13/05/22
   </td>
   <td>
      <span class="storeprice ">
      <span class="storeprice__value">4.000 kr</span>
      </span>
   </td>
   <td>
      <div onclick="window.open('https://restocks.net/en/account/sales/send-label/1882293')" class="download__send__label c-badge c-badge--small pull-right" style="background-color: #df9033">download shipping label</div>
   </td>
   <td>
      <i class="fas fa-pencil-alt listing__edit__icon"></i></span>
   </td>
</tr>
<tr class="clickable" data-price="4000">
   <td>
      <img width="80" src="https://media.restocks.net/products/DC0774-114/air-jordan-1-low-marina-blue-w-1-80.png"/>
   </td>
   <td>
      <input class="productid" type="hidden" value="1882294"/>
      <input class="baseproductid" type="hidden" value="13815"/>
      <input class="sizeid" type="hidden" value="48"/>
      <input class="price" type="hidden" value="4000"/>
      <span>Air Jordan 1 Low Marina Blue (W)</span>
      <br/>
      EU: 38 ½
      <br/>
      ID: 1882294
      <br/>
      Ship before:
      13/05/22
   </td>
   <td>
      <span class="storeprice ">
      <span class="storeprice__value">4.000 kr</span>
      </span>
   </td>
   <td>
      <div onclick="window.open('https://restocks.net/en/account/sales/send-label/1882294')" class="download__send__label c-badge c-badge--small pull-right" style="background-color: #df9033">download shipping label</div>
   </td>
   <td>
      <i class="fas fa-pencil-alt listing__edit__icon"></i></span>
   </td>
</tr>
<tr class="clickable" data-price="4000">
   <td>
      <img width="80" src="https://media.restocks.net/products/DC0774-114/air-jordan-1-low-marina-blue-w-1-80.png"/>
   </td>
   <td>
      <input class="productid" type="hidden" value="1882295"/>
      <input class="baseproductid" type="hidden" value="13815"/>
      <input class="sizeid" type="hidden" value="4"/>
      <input class="price" type="hidden" value="4000"/>
      <span>Air Jordan 1 Low Marina Blue (W)</span>
      <br/>
      EU: 39
      <br/>
      ID: 1882295
      <br/>
      Ship before:
      13/05/22
   </td>
   <td>
      <span class="storeprice ">
      <span class="storeprice__value">4.000 kr</span>
      </span>
   </td>
   <td>
      <div onclick="window.open('https://restocks.net/en/account/sales/send-label/1882295')" class="download__send__label c-badge c-badge--small pull-right" style="background-color: #df9033">download shipping label</div>
   </td>
   <td>
      <i class="fas fa-pencil-alt listing__edit__icon"></i></span>
   </td>
</tr>
<tr class="clickable" data-price="4000">
   <td>
      <img width="80" src="https://media.restocks.net/products/DC0774-114/air-jordan-1-low-marina-blue-w-1-80.png"/>
   </td>
   <td>
      <input class="productid" type="hidden" value="1882296"/>
      <input class="baseproductid" type="hidden" value="13815"/>
      <input class="sizeid" type="hidden" value="4"/>
      <input class="price" type="hidden" value="4000"/>
      <span>Air Jordan 1 Low Marina Blue (W)</span>
      <br/>
      EU: 39
      <br/>
      ID: 1882296
      <br/>
      Ship before:
      13/05/22
   </td>
   <td>
      <span class="storeprice ">
      <span class="storeprice__value">4.000 kr</span>
      </span>
   </td>
   <td>
      <div onclick="window.open('https://restocks.net/en/account/sales/send-label/1882296')" class="download__send__label c-badge c-badge--small pull-right" style="background-color: #df9033">download shipping label</div>
   </td>
   <td>
      <i class="fas fa-pencil-alt listing__edit__icon"></i></span>
   </td>
</tr>
<tr class="clickable" data-price="1630">
   <td>
      <img width="80" src="https://media.restocks.net/products/DC0774-114/air-jordan-1-low-marina-blue-w-1-80.png"/>
   </td>
   <td>
      <input class="productid" type="hidden" value="1882297"/>
      <input class="baseproductid" type="hidden" value="13815"/>
      <input class="sizeid" type="hidden" value="5"/>
      <input class="price" type="hidden" value="1630"/>
      <span>Air Jordan 1 Low Marina Blue (W)</span>
      <br/>
      EU: 40
      <br/>
      ID: 1882297
      <br/>
      Ship before:
      13/05/22
   </td>
   <td>
      <span class="storeprice ">
      <span class="storeprice__value">1.630 kr</span>
      </span>
   </td>
   <td>
      <div onclick="window.open('https://restocks.net/en/account/sales/send-label/1882297')" class="download__send__label c-badge c-badge--small pull-right" style="background-color: #df9033">download shipping label</div>
   </td>
   <td>
      <i class="fas fa-pencil-alt listing__edit__icon"></i></span>
   </td>
</tr>
<tr class="clickable" data-price="4000">
   <td>
      <img width="80" src="https://media.restocks.net/products/DC0774-114/air-jordan-1-low-marina-blue-w-1-80.png"/>
   </td>
   <td>
      <input class="productid" type="hidden" value="1882288"/>
      <input class="baseproductid" type="hidden" value="13815"/>
      <input class="sizeid" type="hidden" value="1"/>
      <input class="price" type="hidden" value="4000"/>
      <span>Air Jordan 1 Low Marina Blue (W)</span>
      <br/>
      EU: 36
      <br/>
      ID: 1882288
      <br/>
      Ship before:
      13/05/22
   </td>
   <td>
      <span class="storeprice ">
      <span class="storeprice__value">4.000 kr</span>
      </span>
   </td>
   <td>
      <div onclick="window.open('https://restocks.net/en/account/sales/send-label/1882288')" class="download__send__label c-badge c-badge--small pull-right" style="background-color: #df9033">download shipping label</div>
   </td>
   <td>
      <i class="fas fa-pencil-alt listing__edit__icon"></i></span>
   </td>
</tr>
<tr class="clickable" data-price="4000">
   <td>
      <img width="80" src="https://media.restocks.net/products/DC0774-114/air-jordan-1-low-marina-blue-w-1-80.png"/>
   </td>
   <td>
      <input class="productid" type="hidden" value="1882289"/>
      <input class="baseproductid" type="hidden" value="13815"/>
      <input class="sizeid" type="hidden" value="13"/>
      <input class="price" type="hidden" value="4000"/>
      <span>Air Jordan 1 Low Marina Blue (W)</span>
      <br/>
      EU: 36 ½
      <br/>
      ID: 1882289
      <br/>
      Ship before:
      13/05/22
   </td>
   <td>
      <span class="storeprice ">
      <span class="storeprice__value">4.000 kr</span>
      </span>
   </td>
   <td>
      <div onclick="window.open('https://restocks.net/en/account/sales/send-label/1882289')" class="download__send__label c-badge c-badge--small pull-right" style="background-color: #df9033">download shipping label</div>
   </td>
   <td>
      <i class="fas fa-pencil-alt listing__edit__icon"></i></span>
   </td>
</tr>
<tr class="clickable" data-price="4000">
   <td>
      <img width="80" src="https://media.restocks.net/products/DC0774-114/air-jordan-1-low-marina-blue-w-1-80.png"/>
   </td>
   <td>
      <input class="productid" type="hidden" value="1882290"/>
      <input class="baseproductid" type="hidden" value="13815"/>
      <input class="sizeid" type="hidden" value="44"/>
      <input class="price" type="hidden" value="4000"/>
      <span>Air Jordan 1 Low Marina Blue (W)</span>
      <br/>
      EU: 37 ½
      <br/>
      ID: 1882290
      <br/>
      Ship before:
      13/05/22
   </td>
   <td>
      <span class="storeprice ">
      <span class="storeprice__value">4.000 kr</span>
      </span>
   </td>
   <td>
      <div onclick="window.open('https://restocks.net/en/account/sales/send-label/1882290')" class="download__send__label c-badge c-badge--small pull-right" style="background-color: #df9033">download shipping label</div>
   </td>
   <td>
      <i class="fas fa-pencil-alt listing__edit__icon"></i></span>
   </td>
</tr>
<tr class="clickable" data-price="4000">
   <td>
      <img width="80" src="https://media.restocks.net/products/DC0774-114/air-jordan-1-low-marina-blue-w-1-80.png"/>
   </td>
   <td>
      <input class="productid" type="hidden" value="1882291"/>
      <input class="baseproductid" type="hidden" value="13815"/>
      <input class="sizeid" type="hidden" value="44"/>
      <input class="price" type="hidden" value="4000"/>
      <span>Air Jordan 1 Low Marina Blue (W)</span>
      <br/>
      EU: 37 ½
      <br/>
      ID: 1882291
      <br/>
      Ship before:
      13/05/22
   </td>
   <td>
      <span class="storeprice ">
      <span class="storeprice__value">4.000 kr</span>
      </span>
   </td>
   <td>
      <div onclick="window.open('https://restocks.net/en/account/sales/send-label/1882291')" class="download__send__label c-badge c-badge--small pull-right" style="background-color: #df9033">download shipping label</div>
   </td>
   <td>
      <i class="fas fa-pencil-alt listing__edit__icon"></i></span>
   </td>
</tr>
<tr class="clickable" data-price="4000">
   <td>
      <img width="80" src="https://media.restocks.net/products/DC0774-114/air-jordan-1-low-marina-blue-w-1-80.png"/>
   </td>
   <td>
      <input class="productid" type="hidden" value="1882292"/>
      <input class="baseproductid" type="hidden" value="13815"/>
      <input class="sizeid" type="hidden" value="3"/>
      <input class="price" type="hidden" value="4000"/>
      <span>Air Jordan 1 Low Marina Blue (W)</span>
      <br/>
      EU: 38
      <br/>
      ID: 1882292
      <br/>
      Ship before:
      13/05/22
   </td>
   <td>
      <span class="storeprice ">
      <span class="storeprice__value">4.000 kr</span>
      </span>
   </td>
   <td>
      <div onclick="window.open('https://restocks.net/en/account/sales/send-label/1882292')" class="download__send__label c-badge c-badge--small pull-right" style="background-color: #df9033">download shipping label</div>
   </td>
   <td>
      <i class="fas fa-pencil-alt listing__edit__icon"></i></span>
   </td>
</tr>
"""

doc = LexborHTMLParser(html_test)
print(doc.html)

When running the example, we do not see the <tr class="clickable" anymore and is removed which shouldn't happen. I wonder if you could look at why it does it?

When using selectolax parser to get video tags, 'attrs' is empty and can get video's src

I'm tring to run the following logic:

videos = []
try:
    bs_videos = parser.css('video')
    for bs_video in bs_videos:
        logger.debug('found video attribute: %s', str(bs_video))
        if 'src' in bs_video.attrs:
            try:
                video = bs_video.attrs['src']
                video = urllib.parse.urljoin(site_url, video)
                logger.debug('found video attribute: %s', video)
                if is_valid_file(logger, video, Constants.image_files):
                    logger.debug('file video %s is valid!', video)
                    videos.append(video)
            except Exception as e:
                continue
except Exception as e:
    logger.error("exception finding video files in page. %s", str(e),
                 pars={Logger.key_job_id: job_id})
return videos

When I get video tag , I do get a selectolax.parser.Node object but the 'attrs' dict is empty when debugging. How do I get the video 'src'? (we never get in "if 'src' in video.attrs:")

for example:
If I want to get the video 'src' from the following html, how should I do it?

<video width='320' height='240' controls=''><source src='movie2.mp4' type='video/mp4'>

node.text() does not account for </br>

Thanks for selectolax - it's working great!

I have one question though. Is it possible to account for break lines? I'd expect the following to return Hello\nWorld instead of HelloWorld.

from selectolax.parser import HTMLParser

parsed_html = HTMLParser("<h1>Hello<br/>World</h1>")
[node.text(deep=False, strip=False) for node in parsed_html.css("h1")]

Add type hints

Hi,

it would be great to have type hints available, so that type checker like mypy don't complain.

Node.Replace_with automatically encodes everything

For example,
I'm replacing following block

... <div data-mutable-id="some_id">

using Node.Replace_with which results in

&lt;div data-mutable-id="some_id"&gt;

inside HTMLParser.html. It's kinda critical because I'm using selectolax only for replacing html block and it's actually messes with the selectolax's ability to find specified block if another change to it is requried later

selectolax on Windows and Python 2.7

Hello. For a legacy project (Python 2.7) I need to use selectolax on Windows, but am having issues compiling it (on Windows 8, with Microsoft Visual C++ 9.0). Does anyone have wheel files for that by any chance? Or can anyone advise me on what to do?

Thanks a lot.
Antony

Add support to release Linux aarch64 wheels

Problem

On aarch64, ‘pip install selectolax’ builds the wheels from source code and then installs it. It requires the user to have a development environment installed on his system. Also, it takes some time to build the wheels than downloading and extracting the wheels from pypi.

Resolution

On aarch64, ‘pip install selectolax’ should download the wheels from pypi

@rushter and Team Please let me know your interest in releasing aarch64 wheels. I can help in this.

Node comparison

Hello,

is this library still under active development? I wanted to know if nodes can be made comparable similar to lxml. My actual problem concerns selecting nodes according to CSS rules and certain selection rules overriding previously found nodes so I need to be able to remove certain nodes from the list of previously selected nodes.

Here a simple example just to showcase what I mean:

from selectolax.parser import HTMLParser

html = """
<body>
    <span id="vspan"></span>
    <h1>Welcome to selectolax tutorial</h1>
    <div id="text">
        <p class='p3' style='display:none;'>Excepteur <i>sint</i> occaecat cupidatat non proident</p>
        <p class='p3' vid>Lorem ipsum</p>
    </div>
    <div>
        <p id='stext'>Lorem ipsum dolor sit amet, ea quo modus meliore platonem.</p>
    </div>
</body>
"""

selectolax_tree = HTMLParser(html)

p_nodes = selectolax_tree.css('p')
# [<Node p>, <Node p>, <Node p>]

p3_nodes = selectolax_tree.css('p.p3')
# [<Node p>, <Node p>]

[node for node in p_nodes if node not in p3_nodes]
# [<Node p>, <Node p>, <Node p>]

with lxml

from lxml.html import fromstring

lxml_tree = fromstring(html)

p_nodes = lxml_tree.xpath('.//p')
# [<Element p at 0x10d24d590>,
#  <Element p at 0x10d252050>,
#  <Element p at 0x10d25add0>]

p3_nodes = lxml_tree.xpath('.//p[@class="p3"]')
# [<Element p at 0x10d24d590>, <Element p at 0x10d252050>]

[node for node in p_nodes if node not in p3_nodes]
# [<Element p at 0x10d25add0>]

windows support

Hi Artem,
Thank you for your hard work!

I've tried to use selectolax on a windows machine but got a number of issues installing your package:

  • default compiler flags, that are not supported by VC compiler (-Wno-unused-variable, -Wno-unused-function`)
  • flags, ignored by VC complier (-pedantic, -fPIC, -std=c99)

Even after removing unsupported flags, compilation failed with "<io.h> file not found" that came from python's pyconfig.h.

  • Windows 10 x64
  • VC Built Tools 2017 v15.7.1
  • Python 3.6.4 x64

Equality of nodes

Seems like it is not possible to have equality of two nodes...

Reproduction of error:

from selectolax.parser import HTMLParser
html = """
<body>
    <span id="vspan"></span>
    <h1>Welcome to selectolax tutorial</h1>
    <div id="text">
        <p class='p3' style='display:none;'>Excepteur <i>sint</i> occaecat cupidatat non proident</p>
        <p class='p3' vid>Lorem ipsum</p>
    </div>
    <div>
        <p id='stext'>Lorem ipsum dolor sit amet, ea quo modus meliore platonem.</p>
    </div>
</body>
"""
html_parser = HTMLParser(html)
nodes_list  = [node for node in html_parser.root.traverse()]

print(nodes_list[-1].parent.html)
print(nodes_list[-2].html)
print(nodes_list[-1].parent == nodes_list[-2])

Output:

[1]: '<div>\n        <p id="stext">Lorem ipsum dolor sit amet, ea quo modus meliore platonem.</p>\n    </div>'
[2]: '<div>\n        <p id="stext">Lorem ipsum dolor sit amet, ea quo modus meliore platonem.</p>\n    </div>'
[3]: False

Not work if it has self-closing iframe tag

Hi Selectolax!

I'm using selectolax very usefull.

I've found some problem.

When I use html with self closing iframe tag(<iframe ~~ />) selectolax can not find elements after this.

This is example code. Plaese check it :)

from selectolax.parser import HTMLParser

html_with_self_closing = '''
<html
  lang="en-us"
  data-reactroot=""
  class="js no-touch localstorage xhr2 no-ipad no-iphone no-ipod no-appleios no-android no-ioswebview no-facebookapp windows js no-touch localstorage xhr2 no-ipad no-iphone no-ipod no-appleios no-android no-ioswebview no-facebookapp windows js no-touch localstorage xhr2 no-ipad no-iphone no-ipod no-appleios no-android no-ioswebview no-facebookapp windows"
>
  <body
    class="kotaku blog-group-kotaku blog-recirc-group-fmgNonSatire permalink en-US f_ad_after_first_in_featured_permalinks_on f_ad_lightning_tag_on f_ad_refresh_enabled_on f_ad_script_in_head_on f_ad_timeout_amazon_on f_ad_timeout_failsafe_on f_ad_timeout_prebid_on f_ad_top_banner_to_featured_permalinks_on f_ads_viewability_desktop_on f_ads_viewability_mobile_on f_ads_viewability_pixels_offset_on f_ads_viewport_offset_on f_alerts_sidebar_on f_allow_blips_on f_amazon_aps_tag_on f_amazon_wait_for_bids_on f_amp_disable_after_2w_on f_amp_publisher_logo_on f_amp_slideshow_on f_amp_sticky_ad_on f_amp_video_extra_events_on f_analyticstracking_on f_author_page_canonical_on f_blip_show_first_sentence_on f_breadcrumbs_use_schemaorg_on f_channel_section_on f_chartbeat_video_on f_client_sidebar_blocks_on f_cls_on f_cls_mobile_inpost_on f_collapsed_top_ad_on f_comment_nofollow_on f_commenter_no_crawlable_on f_connatix_on f_connatix_mobile_on f_crop_modal_align_on f_curated_homepage_on f_ddrum_on f_disable_comment_meta_links_on f_disable_lazy_mfn_on f_disable_lazy_ymal_on f_disable_link_rendering_in_comments_on f_disguise_video_links_as_videos_on f_dynamic_ads_in_ads_bundle_on f_eager_load_ga_on f_editor_unload_3rdparty_on f_enable_bouncex_on f_enable_html_sitemap_on f_expanded_image_srcset_on f_fb_pixel_disable_on f_featured_ads_four_on f_filter_kinja_meta_on f_fivecardcarousel_on f_force_image_rights_on f_frontendtiming_on f_frontpage_recentvideo_on f_frontpage_sticky_leaderboard_on f_global_video_page_on f_goauthorurl_on f_header_anchor_tags_on f_header_simple_render_on f_hide_ellipsis_on f_hide_sticky_social_on f_homepage_layout_admin_only_on f_homepage_sticky_ads_4s_on f_homepage_video_playlist_on f_hp_smaller_images_on f_infinite_promotion_on f_infinite_scroll_on f_ix_identity_tag_on f_kargo_amp_on f_lazyload_iframes_on f_lazyload_twitter_iframe_on f_lazyload_youtube_iframe_on f_legacy_embiggen_on f_magma_permalink_video_truncation_on f_magnite_segments_on f_medianet_headerbidding_amp_on f_medianet_preload_on f_merge_price_vendor_on f_meta_first_on f_missing_image_alts_on f_mobile_comments_scroll_fix_on f_movable_ads_tool_shift_fix_on f_newsletter_inline_form_enabled_on f_newsletter_modal_subdomain_on f_newsletter_popup_exit_intent_on f_newsletter_popup_exit_intent_mobile_on f_no_follow_comment_links_on f_permalink_video_playlist_on f_prebid_on f_prebid_analytics_on f_prebid_autoconfig_on f_prebid_ias_enable_on f_prebid_resetdigital_on f_prebid_trustx_on f_prebid_video_on f_primary_header_flat_on f_primary_header_h1_on f_pure_save_button_on f_rail_video_playlist_on f_rail_video_stickiness_1500_on f_refresh_25_seconds_on f_refresh_ads_in_view_on f_related_stories_inset_on f_remove_h_tags_from_sidebar_on f_remove_sticky_h1_on f_restore_images_on f_section_nav_ga_events_on f_seo_content_first_on f_seo_iframe_noindex_on f_seo_noimageindex_on f_seo_remove_headline_link_on f_short_whitelisted_check_on f_show_splashy_top_on f_sidebar_ad_whitespace_on f_sidebar_remove_native_promo_on f_slideshow_on f_smartcrop_on f_sourcepoint_ccpa_on f_sourcepoint_header_on f_sourcepoint_keyval_on f_speedcurve_lux_on f_sticky_mobile_320_on f_sticky_mobile_320_bulbs_on f_sticky_right1_ad_on f_sticky_video_first_slot_mobile_on f_su_manage_blog_dropdown_on f_taboola_feed_homepage_on f_taboola_lazy_load_on f_tag_noindex_nofollow_on f_taxonomy_on f_trackonomics_amp_on f_truncate_permalink_content_on f_us_only_superhero_on f_use_ad_manager_on f_veritas_compression_on f_veritas_tracker_on f_video_autoplay_analytics_on f_video_hydration_lazyload_on f_video_lazy_load_delay_on f_video_permalink_play_next_on f_video_thumbnail_fix_on f_videos_filter_with_posts_on f_webm_optimize_on f_welcome_ad_analytics_on blog-group-kotaku"
  >
    <noscript>
      <iframe
        crossOrigin="true"
        src="https://www.googletagmanager.com/ns.html?id=GTM-TH42LHK"
        height="0"
        width="0"
        style="display: none; visibility: hidden"
      />
    </noscript>
    <div id="trackers" data-gtm-vis-polling-id-49090422_48="50">
      <script
        type="text/javascript"
        src="https://static.scroll.com/js/scroll.js"
        async="async"
      ></script>
      <script
        type="text/javascript"
        src="//static.chartbeat.com/js/chartbeat.js"
        async="async"
      ></script>
      <script
        type="text/javascript"
        src="https://kinja-com.videoplayerhub.com/gallery.js"
        async="async"
      ></script>
      <script
        type="text/javascript"
        src="https://sb.scorecardresearch.com/beacon.js"
        async="async"
      ></script>
    </div>
  </body>
</html>
'''

html_without_self_closing = '''
<html
  lang="en-us"
  data-reactroot=""
  class="js no-touch localstorage xhr2 no-ipad no-iphone no-ipod no-appleios no-android no-ioswebview no-facebookapp windows js no-touch localstorage xhr2 no-ipad no-iphone no-ipod no-appleios no-android no-ioswebview no-facebookapp windows js no-touch localstorage xhr2 no-ipad no-iphone no-ipod no-appleios no-android no-ioswebview no-facebookapp windows"
>
  <body
    class="kotaku blog-group-kotaku blog-recirc-group-fmgNonSatire permalink en-US f_ad_after_first_in_featured_permalinks_on f_ad_lightning_tag_on f_ad_refresh_enabled_on f_ad_script_in_head_on f_ad_timeout_amazon_on f_ad_timeout_failsafe_on f_ad_timeout_prebid_on f_ad_top_banner_to_featured_permalinks_on f_ads_viewability_desktop_on f_ads_viewability_mobile_on f_ads_viewability_pixels_offset_on f_ads_viewport_offset_on f_alerts_sidebar_on f_allow_blips_on f_amazon_aps_tag_on f_amazon_wait_for_bids_on f_amp_disable_after_2w_on f_amp_publisher_logo_on f_amp_slideshow_on f_amp_sticky_ad_on f_amp_video_extra_events_on f_analyticstracking_on f_author_page_canonical_on f_blip_show_first_sentence_on f_breadcrumbs_use_schemaorg_on f_channel_section_on f_chartbeat_video_on f_client_sidebar_blocks_on f_cls_on f_cls_mobile_inpost_on f_collapsed_top_ad_on f_comment_nofollow_on f_commenter_no_crawlable_on f_connatix_on f_connatix_mobile_on f_crop_modal_align_on f_curated_homepage_on f_ddrum_on f_disable_comment_meta_links_on f_disable_lazy_mfn_on f_disable_lazy_ymal_on f_disable_link_rendering_in_comments_on f_disguise_video_links_as_videos_on f_dynamic_ads_in_ads_bundle_on f_eager_load_ga_on f_editor_unload_3rdparty_on f_enable_bouncex_on f_enable_html_sitemap_on f_expanded_image_srcset_on f_fb_pixel_disable_on f_featured_ads_four_on f_filter_kinja_meta_on f_fivecardcarousel_on f_force_image_rights_on f_frontendtiming_on f_frontpage_recentvideo_on f_frontpage_sticky_leaderboard_on f_global_video_page_on f_goauthorurl_on f_header_anchor_tags_on f_header_simple_render_on f_hide_ellipsis_on f_hide_sticky_social_on f_homepage_layout_admin_only_on f_homepage_sticky_ads_4s_on f_homepage_video_playlist_on f_hp_smaller_images_on f_infinite_promotion_on f_infinite_scroll_on f_ix_identity_tag_on f_kargo_amp_on f_lazyload_iframes_on f_lazyload_twitter_iframe_on f_lazyload_youtube_iframe_on f_legacy_embiggen_on f_magma_permalink_video_truncation_on f_magnite_segments_on f_medianet_headerbidding_amp_on f_medianet_preload_on f_merge_price_vendor_on f_meta_first_on f_missing_image_alts_on f_mobile_comments_scroll_fix_on f_movable_ads_tool_shift_fix_on f_newsletter_inline_form_enabled_on f_newsletter_modal_subdomain_on f_newsletter_popup_exit_intent_on f_newsletter_popup_exit_intent_mobile_on f_no_follow_comment_links_on f_permalink_video_playlist_on f_prebid_on f_prebid_analytics_on f_prebid_autoconfig_on f_prebid_ias_enable_on f_prebid_resetdigital_on f_prebid_trustx_on f_prebid_video_on f_primary_header_flat_on f_primary_header_h1_on f_pure_save_button_on f_rail_video_playlist_on f_rail_video_stickiness_1500_on f_refresh_25_seconds_on f_refresh_ads_in_view_on f_related_stories_inset_on f_remove_h_tags_from_sidebar_on f_remove_sticky_h1_on f_restore_images_on f_section_nav_ga_events_on f_seo_content_first_on f_seo_iframe_noindex_on f_seo_noimageindex_on f_seo_remove_headline_link_on f_short_whitelisted_check_on f_show_splashy_top_on f_sidebar_ad_whitespace_on f_sidebar_remove_native_promo_on f_slideshow_on f_smartcrop_on f_sourcepoint_ccpa_on f_sourcepoint_header_on f_sourcepoint_keyval_on f_speedcurve_lux_on f_sticky_mobile_320_on f_sticky_mobile_320_bulbs_on f_sticky_right1_ad_on f_sticky_video_first_slot_mobile_on f_su_manage_blog_dropdown_on f_taboola_feed_homepage_on f_taboola_lazy_load_on f_tag_noindex_nofollow_on f_taxonomy_on f_trackonomics_amp_on f_truncate_permalink_content_on f_us_only_superhero_on f_use_ad_manager_on f_veritas_compression_on f_veritas_tracker_on f_video_autoplay_analytics_on f_video_hydration_lazyload_on f_video_lazy_load_delay_on f_video_permalink_play_next_on f_video_thumbnail_fix_on f_videos_filter_with_posts_on f_webm_optimize_on f_welcome_ad_analytics_on blog-group-kotaku"
  >
    <noscript>
      <iframe
        crossOrigin="true"
        src="https://www.googletagmanager.com/ns.html?id=GTM-TH42LHK"
        height="0"
        width="0"
        style="display: none; visibility: hidden"
      ></iframe>
    </noscript>
    <div id="trackers" data-gtm-vis-polling-id-49090422_48="50">
      <script
        type="text/javascript"
        src="https://static.scroll.com/js/scroll.js"
        async="async"
      ></script>
      <script
        type="text/javascript"
        src="//static.chartbeat.com/js/chartbeat.js"
        async="async"
      ></script>
      <script
        type="text/javascript"
        src="https://kinja-com.videoplayerhub.com/gallery.js"
        async="async"
      ></script>
      <script
        type="text/javascript"
        src="https://sb.scorecardresearch.com/beacon.js"
        async="async"
      ></script>
    </div>
  </body>
</html>
'''

tree_1 = HTMLParser(html_with_self_closing)
print('html_with_self_closing', tree_1.css('body > div'))
print('html_with_self_closing', tree_1.css('#trackers'))

tree_2 = HTMLParser(html_without_self_closing)
print('html_without_self_closing', tree_2.css('body > div'))
print('html_without_self_closing', tree_2.css('#trackers'))

Run this, parser can find div(#trackers) only when there is no self-closing iframe tag.

Thanks

Possible slow results when getting hrefs from document

Hello,

I'm using selectolax instead of lxml now and I have 20% performance increase already. But I wonder if it's possible to make it faster by using .css() or something else.

I'm getting tags with tags = self.__selectolax_tree.tags('a') and getting their attributes, if attribute has "href", i use this url for further needs.

Should I use css() instead of tags() for getting links too?

Add unwrap(tags) functionality

It would be nice if we had an unwrap function to remove certain tags, but leave the contents, as opposed to eliminate contents with the tag as is the case with decompose.

Ability to pull text from alt field in img tags.

I have HTML that looks like this:

<p class="TweetTextSize js-tweet-text tweet-text" lang="es" data-aria-label-part="0">Quiero besar tus labios. <img class="Emoji Emoji--forText" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" draggable="false" alt="❤" title="Red heart" aria-label="Emoji: Red heart"><img class="Emoji Emoji--forText" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" draggable="false" alt="😘" title="Face throwing a kiss" aria-label="Emoji: Face throwing a kiss"><a href="https://t.co/I1dwxjT0Mp" class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr">pic.twitter.com/I1dwxjT0Mp</a></p>

I would like to be able to pull the text from the alt fields in the image but I'm not sure if that's possible with the current methods. Is there a way to transverse child nodes and convert them into text and then convert the parent node (p) into a text object?

What's the best way to do this?

errors while installing... not a pro....

While am trying to install selectolax i get the following errors:

pip3 install selectolax
Collecting selectolax
Using cached selectolax-0.2.3.tar.gz (1.3 MB)
Installing collected packages: selectolax
Running setup.py install for selectolax ... error
ERROR: Command errored out with exit status 1:
command: /Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/24/269pxf1s6gdd4jrdm0lxy3f40000gq/T/pip-install-epj3y_9p/selectolax/setup.py'"'"'; file='"'"'/private/var/folders/24/269pxf1s6gdd4jrdm0lxy3f40000gq/T/pip-install-epj3y_9p/selectolax/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /private/var/folders/24/269pxf1s6gdd4jrdm0lxy3f40000gq/T/pip-record-0vt0jize/install-record.txt --single-version-externally-managed --compile --install-headers /Library/Frameworks/Python.framework/Versions/3.8/include/python3.8/selectolax
cwd: /private/var/folders/24/269pxf1s6gdd4jrdm0lxy3f40000gq/T/pip-install-epj3y_9p/selectolax/
Complete output (60 lines):
running install
running build
running build_py
creating build
creating build/lib.macosx-10.9-x86_64-3.8
creating build/lib.macosx-10.9-x86_64-3.8/selectolax
copying selectolax/init.py -> build/lib.macosx-10.9-x86_64-3.8/selectolax
running egg_info
writing selectolax.egg-info/PKG-INFO
writing dependency_links to selectolax.egg-info/dependency_links.txt
writing top-level names to selectolax.egg-info/top_level.txt
reading manifest file 'selectolax.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'CONTRIBUTING.rst'
warning: no files found matching 'HISTORY.rst'
warning: no previously-included files found matching 'selectolax/.so'
warning: no files found matching 'modest/include/
'
warning: no files found matching 'modest/source/'
warning: no previously-included files matching 'pycache' found under directory '
'
warning: no previously-included files matching '.py[co]' found under directory ''
warning: no files found matching '*.jpg' under directory 'docs'
writing manifest file 'selectolax.egg-info/SOURCES.txt'
copying selectolax/node.pxi -> build/lib.macosx-10.9-x86_64-3.8/selectolax
copying selectolax/parser.c -> build/lib.macosx-10.9-x86_64-3.8/selectolax
copying selectolax/parser.pxd -> build/lib.macosx-10.9-x86_64-3.8/selectolax
copying selectolax/parser.pyx -> build/lib.macosx-10.9-x86_64-3.8/selectolax
copying selectolax/selector.pxi -> build/lib.macosx-10.9-x86_64-3.8/selectolax
running build_ext
building 'selectolax.parser' extension
creating build/temp.macosx-10.9-x86_64-3.8
creating build/temp.macosx-10.9-x86_64-3.8/selectolax
creating build/temp.macosx-10.9-x86_64-3.8/modest
creating build/temp.macosx-10.9-x86_64-3.8/modest/source
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/modest
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/modest/render
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/modest/style
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/modest/layer
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/modest/finder
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/modest/node
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/myurl
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/myfont
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/myport
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/myport/posix
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/myport/posix/mycore
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/myport/posix/mycore/utils
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/mycss
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/mycss/property
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/mycss/values
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/mycss/namespace
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/mycss/selectors
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/mycss/declaration
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/mycss/media
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/myencoding
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/mycore
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/mycore/utils
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/myhtml
creating build/temp.macosx-10.9-x86_64-3.8/modest/source/myunicode
gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -Imodest/include/ -I/Library/Frameworks/Python.framework/Versions/3.8/include/python3.8 -c selectolax/parser.c -o build/temp.macosx-10.9-x86_64-3.8/selectolax/parser.o -DMODEST_BUILD_OS=Darwin -DMyCORE_OS_Darwin -DMODEST_PORT_NAME=posix -DMyCORE_BUILD_WITHOUT_THREADS=YES -DMyCORE_BUILD_DEBUG=NO -O2 -pedantic -fPIC -Wno-unused-variable -Wno-unused-function -std=c99
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
error: command 'gcc' failed with exit status 1
----------------------------------------
ERROR: Command errored out with exit status 1: /Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/24/269pxf1s6gdd4jrdm0lxy3f40000gq/T/pip-install-epj3y_9p/selectolax/setup.py'"'"'; file='"'"'/private/var/folders/24/269pxf1s6gdd4jrdm0lxy3f40000gq/T/pip-install-epj3y_9p/selectolax/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /private/var/folders/24/269pxf1s6gdd4jrdm0lxy3f40000gq/T/pip-record-0vt0jize/install-record.txt --single-version-externally-managed --compile --install-headers /Library/Frameworks/Python.framework/Versions/3.8/include/python3.8/selectolax Check the logs for full command output.

Why do i get such error? Thanks a lot for helping out...

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.