summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2020-01-31 19:15:51 -0700
committerAdrian Thurston <thurston@colm.net>2020-01-31 19:15:51 -0700
commit5f9ebc98618fc1216cde976a2bcf686af119f3ed (patch)
tree9130d0cff9c88a575e592a6243b8d47392259b27
parent88e4f9ca965e35d183a87131d792b466a1a57f89 (diff)
downloadcolm-5f9ebc98618fc1216cde976a2bcf686af119f3ed.tar.gz
osx linker will not accept -rpath=X, must use a space (achieved with a comma)
-rw-r--r--colm/main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/colm/main.cc b/colm/main.cc
index 1663ae14..a3a7d2c9 100644
--- a/colm/main.cc
+++ b/colm/main.cc
@@ -485,7 +485,7 @@ void compileOutput( const char *argv0, const bool inSource, char *srcLocation )
" -I%s/../aapl"
" -I%s/include"
" -L%s"
- " -Wl,-rpath=%s",
+ " -Wl,-rpath,%s",
binaryFn, intermedFn, srcLocation,
srcLocation, location, location );
}