summaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2016-07-06 18:14:44 -0400
committerAdrian Thurston <thurston@complang.org>2016-07-06 18:14:44 -0400
commit1e20413c3e3e12d3c9d0b2b541df0ba3bf074d31 (patch)
tree7f3afcdd6422985082e07d0aab47a59db1a92788 /src/main.cc
parentd8516da36be899e2f172881819612c660b05b8b3 (diff)
downloadcolm-1e20413c3e3e12d3c9d0b2b541df0ba3bf074d31.tar.gz
main needs to use -lcolm now
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cc b/src/main.cc
index e8fba5ca..703ea8ea 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -440,7 +440,7 @@ void compileOutputInstalled( const char *argv0 )
" -o %s"
" %s"
" -L" PREFIX "/lib"
- " -lcolmd",
+ " -lcolm",
binaryFn, intermedFn );
for ( ArgsVector::Iter af = additionalCodeFiles; af.lte(); af++ ) {
@@ -475,7 +475,7 @@ void compileOutputInSource( const char *argv0 )
" -o %s"
" %s"
" -L%s"
- " -lcolmd",
+ " -lcolm",
location, location,
binaryFn, intermedFn, location );