Skip to content

Commit

Permalink
apple
Browse files Browse the repository at this point in the history
  • Loading branch information
scarburato committed Dec 18, 2023
1 parent c1e3f6a commit e657559
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
sudo apt-get install -y build-essential cmake libstemmer-dev libhyperscan-dev
- name: Install macOS dependencies
if: ${{ matrix.os == 'macos-latest' }}
if: ${{ matrix.os == 'macos-13' }}
run: |
brew install cmake snowball hyperscan
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# MIRCV's project: SEPP (Search Engine ++)

![](https://github.com/scarburato/searchenginepp/actions/workflows/test.yml/badge.svg)

A C++ program that creates an inverted index structure from a set of text documents and a program that processes queries over such inverted index.

## Clone the Repository
Expand Down Expand Up @@ -49,7 +51,10 @@ cmake -DCMAKE_BUILD_TYPE=Release -DUSE_STEMMER:BOOL=ON -DFIX_MSMARCO_LATIN1:BOOL
make -j8
```

you should replace the `-j8` flag with the number of cores in your CPU
you should replace the `-j8` flag with the number of cores in your CPU.

On MacOS, If perfidious Apple's clang gives you problems compiling, you should consider installing GNU GCC or a more
recent version of clang with brew.

### CMake options

Expand Down

0 comments on commit e657559

Please sign in to comment.