This repository has been archived by the owner on Feb 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Worked to get building on OSX to work
* Changed the syntax of some system commands so that they work with OSX's `cp` and `rm` commands * Temporary changed a use of `.so` to `.dylib`; A better long-term solution to this needs to be implemented. * Disabled dynamic library detection in the configurator using `ldconfig` since that's a Linux-only executable * Fixed some issues regarding the `rand` library in the `util` library
- Loading branch information
Showing
7 changed files
with
32 additions
and
38 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
broker_shims/FXCM/native/native/include/ForexConnectAPI-Linux-x86_64
Submodule ForexConnectAPI-Linux-x86_64
deleted from
dfeae3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"main": "index.js", | ||
"scripts": { | ||
"flow": "flow; test $? -eq 0 -o $? -eq 2", | ||
"strip": "rm stripped -rf && babel --out-dir stripped index.js && babel --out-dir stripped/src src/", | ||
"strip": "rm -rf stripped && babel --out-dir stripped index.js && babel --out-dir stripped/src src/", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "Casey Primozic <[email protected]>", | ||
|