diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-03-17 14:09:38 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-03-17 14:09:38 +0200 |
commit | bae29b7f7c69401742e9641848ca309f79b097c6 (patch) | |
tree | d06a6a32c405966b1d38b691067a4aa4f48a7a6c | |
parent | 47400c70c31a0d7864ab95dfb7342248c89fe6a7 (diff) | |
download | meson-bae29b7f7c69401742e9641848ca309f79b097c6.zip meson-bae29b7f7c69401742e9641848ca309f79b097c6.tar.gz meson-bae29b7f7c69401742e9641848ca309f79b097c6.tar.bz2 |
A few tweaks.
-rwxr-xr-x | manual tests/3 standalone binaries/build_linux_package.sh | 2 | ||||
-rw-r--r-- | manual tests/3 standalone binaries/myapp.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/manual tests/3 standalone binaries/build_linux_package.sh b/manual tests/3 standalone binaries/build_linux_package.sh index f080576..806a453 100755 --- a/manual tests/3 standalone binaries/build_linux_package.sh +++ b/manual tests/3 standalone binaries/build_linux_package.sh @@ -3,7 +3,7 @@ curdir=`pwd` rm -rf buildtmp mkdir buildtmp -LDFLAGS=-static-libstdc++ ~/meson/meson.py buildtmp --buildtype=release --prefix=/tmp/myapp --libdir=lib +LDFLAGS=-static-libstdc++ ~/meson/meson.py buildtmp --buildtype=release --prefix=/tmp/myapp --libdir=lib --strip ninja -C buildtmp install rm -rf buildtmp cd /tmp/ diff --git a/manual tests/3 standalone binaries/myapp.cpp b/manual tests/3 standalone binaries/myapp.cpp index 3779578..c57fd04 100644 --- a/manual tests/3 standalone binaries/myapp.cpp +++ b/manual tests/3 standalone binaries/myapp.cpp @@ -17,7 +17,7 @@ int main(int argc, char **argv) { std::unique_ptr<SDL_Window, void(*)(SDL_Window*)> window(SDL_CreateWindow( "My application", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 640, 480, SDL_WINDOW_SHOWN), SDL_DestroyWindow); screenSurface = SDL_GetWindowSurface(window.get()); - // Use iostream etc to make sure we have not screwed + // Use iostream to make sure we have not screwed // up libstdc++ linking. message = "Window created."; message += " Starting main loop."; |