~robert-ancell/bake/namespace-libbake

« back to all changes in this revision

Viewing changes to tests/bake/c++-library-install-directory/expected

  • Committer: Robert Ancell
  • Date: 2014-01-11 09:30:26 UTC
  • Revision ID: robert.ancell@canonical.com-20140111093026-uqlyh2mwlw0hfozg
Set soname when linking libraries

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
!bake
2
2
mkdir -p .built
3
3
g++ -fPIC -MMD -MF .built/test-test.d -c test.cpp -o .built/test-test.o
4
 
g++ -o libtest.so -shared .built/test-test.o
 
4
g++ -o libtest.so -shared -Wl,-soname,libtest.so .built/test-test.o
5
5
ar -cq libtest.a .built/test-test.o
6
6
(exit SUCCESS)
7
7
!bake install