Skip to content

Commit b1595a8

Browse files
authored
Merge branch 'master' into greenkeeper/update-all
2 parents b49eb94 + 42944bb commit b1595a8

40 files changed

+217
-203
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ prebuilds/
77
lib/
88
libexec/
99
share/
10+
include/
1011
*-nodeos-linux-musl*

.npmignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ prebuilds/
77
lib/
88
libexec/
99
share/
10-
*-nodeos-linux-musl/
10+
*-nodeos-linux-musl*
1111

12-
bin/*-nodeos-linux-musl-*
12+
bin/*-nodeos-linux-musl*

.travis.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
# While Travis Support has been implemented for OSX, it does not fully build
2-
# due to the build time limit and the vast ammount of warnings generated
3-
41
os:
2+
- linux
53
- osx
64
osx_image: xcode7.3
7-
sudo: required
85
language: node_js
96
node_js:
107
- "6.2.2"
@@ -14,7 +11,7 @@ before_install:
1411
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cp -r $TRAVIS_BUILD_DIR/* /Volumes/build ; fi
1512
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cd /Volumes/build ; fi
1613
install:
17-
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install binutils ; fi
1814
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install gnu-sed --with-default-names ; fi
1915
script:
2016
- npm install
17+
- npm run BigRedButton

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
This package generate a cross-compiler based on [gcc](https://gcc.gnu.org/) and
66
[musl](musl-libc.org) ready to use on the NodeOS build system, but could be used
77
by other systems. You can be able to configure the target of the cross-compiler
8-
by setting some optional environment variables:
8+
by setting some optional build flags or environment variables:
99

10-
- **PLATFORM**: by default it will generate for the current system
11-
- **CPU**: by default it will generate for the current CPU
10+
- **-b**/**BITS**: select between 32 or 64 - only affects x86 builds
11+
- **-c**/**CPU**: by default it will generate for the current CPU
12+
- **-M**/**MACHINE**: target machine according QEmu definitions
1213

1314
This `bin` folder contain placeholders for `npm` during the install step. They
14-
will be replaced later during the install process to their correct symlinks.
15+
are being replaced later during the install process to their correct symlinks.

bin/addr2line

100644100755
File mode changed.

bin/ar

100644100755
File mode changed.

bin/as

100644100755
File mode changed.

bin/c++

100644100755
File mode changed.

bin/c++filt

100644100755
File mode changed.

bin/cpp

100644100755
File mode changed.

0 commit comments

Comments
 (0)