Skip to content

Commit

Permalink
Set cpu instruction set for prebuilt pony
Browse files Browse the repository at this point in the history
This should be followed by modifying the makefile to allow
setting -mtune to intel.

This should however fix issue #1682.
  • Loading branch information
SeanTAllen committed Mar 15, 2017
1 parent 9060865 commit 26e753a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 arch= 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=x86-64 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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ COPY lib /src/ponyc/lib
COPY test /src/ponyc/test
COPY packages /src/ponyc/packages

RUN make arch= \
RUN make arch=x86-64 \
&& make install \
&& rm -rf /src/ponyc/build

Expand Down

0 comments on commit 26e753a

Please sign in to comment.