nacl -> native

This commit is contained in:
Matt Corallo 2015-01-14 11:30:48 -10:00
parent 334550b779
commit 6b0e346193
77 changed files with 5 additions and 5 deletions

View file

@ -103,10 +103,10 @@ module.exports = function(grunt) {
compile: { compile: {
curve25519_compiled: { curve25519_compiled: {
src_files: [ src_files: [
'nacl/ed25519/additions/*.c', 'native/ed25519/additions/*.c',
'nacl/curve25519-donna.c', 'native/curve25519-donna.c',
'nacl/ed25519/*.c', 'native/ed25519/*.c',
'nacl/ed25519/sha512/sha2big.c' 'native/ed25519/sha512/sha2big.c'
], ],
methods: [ methods: [
'curve25519_donna', 'curve25519_donna',
@ -168,7 +168,7 @@ module.exports = function(grunt) {
'-O2', '-O2',
'-Qunused-arguments', '-Qunused-arguments',
'-o', outfile, '-o', outfile,
'-Inacl/ed25519/nacl_includes -Inacl/ed25519 -Inacl/ed25519/sha512', '-Inative/ed25519/nacl_includes -Inative/ed25519 -Inative/ed25519/sha512',
'-s', "EXPORTED_FUNCTIONS=\"[" + exported_functions.join(',') + "]\""]; '-s', "EXPORTED_FUNCTIONS=\"[" + exported_functions.join(',') + "]\""];
var command = [].concat('emcc', this.data.src_files, flags).join(' '); var command = [].concat('emcc', this.data.src_files, flags).join(' ');
grunt.log.writeln('Compiling via emscripten to ' + outfile); grunt.log.writeln('Compiling via emscripten to ' + outfile);