We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6bdc8d commit 2de096aCopy full SHA for 2de096a
2 files changed
.github/workflows/build.yml
@@ -21,5 +21,5 @@ jobs:
21
make
22
sudo make install
23
sudo ldconfig
24
- - run: g++ -std=c++17 -lpqxx -lpq -o test/pqxx test/pqxx_test.cpp
+ - run: g++ -std=c++17 -o test/pqxx test/pqxx_test.cpp -lpqxx -lpq
25
- run: test/pqxx
README.md
@@ -72,6 +72,6 @@ To get started with development:
72
git clone https://github.com/ankane/pgvector-cpp.git
73
cd pgvector-cpp
74
createdb pgvector_cpp_test
75
-g++ -std=c++17 -lpqxx -lpq -o test/pqxx test/pqxx_test.cpp
+g++ -std=c++17 -o test/pqxx test/pqxx_test.cpp -lpqxx -lpq
76
test/pqxx
77
```
0 commit comments