mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-03-01 17:24:09 +08:00
* init gps test
* gps test v1
* add static signal gen script
* update readme
* remove LD_PRELOAD by using rpath, update values after testing
* remove LD_PRELOAD
* update fuzzy testing
* address comments
* cleanup
Co-authored-by: Kurt Nistelberger <kurt.nistelberger@gmail.com>
old-commit-hash: 54d667aa15
12 lines
378 B
Diff
12 lines
378 B
Diff
diff --git a/makefile b/makefile
|
|
index 51bfabf..d0ea1eb 100644
|
|
--- a/makefile
|
|
+++ b/makefile
|
|
@@ -1,5 +1,4 @@
|
|
CC=gcc -O2 -Wall
|
|
|
|
all: limegps.c gpssim.c
|
|
- $(CC) -o LimeGPS limegps.c gpssim.c -lm -lpthread -lLimeSuite
|
|
-
|
|
+ $(CC) -o LimeGPS limegps.c gpssim.c -lm -lpthread -lLimeSuite -I../LimeSuite/src -L../LimeSuite/builddir/src -Wl,-rpath="$(PWD)/../LimeSuite/builddir/src"
|