]> git.sesse.net Git - casparcg/commitdiff
Remove platform name from linux build script
authorkrzyc <pyrkosz@o2.pl>
Thu, 8 Dec 2016 15:23:47 +0000 (16:23 +0100)
committerGitHub <noreply@github.com>
Thu, 8 Dec 2016 15:23:47 +0000 (16:23 +0100)
build-scripts/build-linux.sh

index 338d9780a0504fb2f8c29063460a95ec2521c51a..90112538fbaf51c6d9de6cd8faf5fb90b0ce3545 100755 (executable)
@@ -25,7 +25,7 @@ cd ../build || fail "Could not enter ../build"
 
 # Run cmake
 echo Running cmake...
-cmake -G "Unix Makefiles" -A x64 -DCMAKE_BUILD_TYPE=RelWithDebInfo .. || fail "cmake failed"
+cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=RelWithDebInfo .. || fail "cmake failed"
 
 # Run make using the number of hardware threads in BUILD_PARALLEL_THREADS
 echo Building...