Skip to content

Commit

Permalink
Fix AVX/AVX2 issues with prebuilt ponyc
Browse files Browse the repository at this point in the history
We regularly get issues opened from people having problems
with the prebuilt pony packages where their platform
doesn't support AVX or AVX2 and the prebuilt packages were
built with that on.

This commit should get us building with the simplest of baselines
for users and allow them to run without issue.

The `arch=` idea is Sylvan's.
  • Loading branch information
SeanTAllen committed Mar 12, 2017
1 parent 0a6208c commit cb5a6fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ after_success:
PACKAGE_CONFLICTS="ponyc-release";
fi;
PACKAGE_ITERATION="${PACKAGE_ITERATION}${TRAVIS_BUILD_NUMBER}.`git rev-parse --short --verify HEAD^{commit}`";
make verbose=1 config=release package_name="$PACKAGE_NAME" package_conflicts="$PACKAGE_CONFLICTS" package_base_version="`cat VERSION`" package_iteration="$PACKAGE_ITERATION" deploy && export UPLOAD=yes;
make verbose=1 arch= config=release package_name="$PACKAGE_NAME" package_conflicts="$PACKAGE_CONFLICTS" package_base_version="`cat VERSION`" package_iteration="$PACKAGE_ITERATION" deploy && export UPLOAD=yes;
fi;

# For a release release build with the latest stable LLVM, upload docs.
Expand Down

0 comments on commit cb5a6fb

Please sign in to comment.