diff options
author | lloyd <[email protected]> | 2011-04-22 11:50:54 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-04-22 11:50:54 +0000 |
commit | 2217a99880ba7d93950b3c24e5ed8f61fbf9cf62 (patch) | |
tree | e5844aa2369514a9f4728d66e7a51ec1ce79b151 /src/build-data | |
parent | 0771ef306eedd46aaa17005044e46ea0c9ac01a4 (diff) |
Intel C++ doesn't seem to have an option for setting the soname, so it
will default to the full output file name. That actually worked as
expected when the so was always written as libbotan-1.8.2, but doesn't
anymore since soname does not match the written file. This probably
won't work right on Windows, but I don't have access to Intel C++ on
Windows.
Note good Intel C++ 11.1 build in build log
Note that CPython 2.7 works for configuring the build
Diffstat (limited to 'src/build-data')
-rw-r--r-- | src/build-data/cc/icc.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build-data/cc/icc.txt b/src/build-data/cc/icc.txt index e8d14c581..28c1a2816 100644 --- a/src/build-data/cc/icc.txt +++ b/src/build-data/cc/icc.txt @@ -32,5 +32,5 @@ westmere -> "-march=core2" </mach_opt> <so_link_flags> -default -> "$(CXX) -fPIC -shared" +default -> "$(CXX) -fPIC -shared -Wl,-soname,$(SONAME)" </so_link_flags> |