Skip to content

Commit ca2e195

Browse files
user890104speachy
authored andcommitted
time-sync: Fix arguments order in linker command
Also adds the resulting binary to .gitignore Change-Id: Ibe7e577873c231a5b950a7224eb1a4136a4cd987
1 parent 5ad29c5 commit ca2e195

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -310,3 +310,6 @@ __pycache__
310310
/utils/regtools/regtool
311311
/utils/regtools/swiss_knife
312312
/utils/regtools/tester_v1
313+
314+
# /utils/time-sync/
315+
/utils/time-sync/time-sync

utils/time-sync/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ clean:
1111
gcc ${CFLAGS} -c -o $@ $^
1212

1313
time-sync: ${OBJS}
14-
gcc ${CFLAGS} -lsgutils2 -o $@ $^
14+
gcc ${CFLAGS} -o $@ $^ -lsgutils2
1515

1616
install: time-sync
1717
cp time-sync /usr/local/bin/

0 commit comments

Comments
 (0)