Skip to content
This repository has been archived by the owner on Jan 4, 2019. It is now read-only.

Commit

Permalink
fix windows ia32 build
Browse files Browse the repository at this point in the history
  • Loading branch information
bridiver committed Jan 12, 2017
1 parent 446fb94 commit 94860e6
Showing 1 changed file with 34 additions and 14 deletions.
48 changes: 34 additions & 14 deletions build/node/node.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -189,20 +189,40 @@
# Node is using networking API but linking with this itself.
'libraries': [ '-lwinmm.lib' ],
'variables': {
'reference_symbols': [
'udata_setCommonData_56',
'u_errorName_56',
'ubidi_setPara_56',
'ucsdet_getName_56',
'uidna_openUTS46_56',
'ulocdata_close_56',
'unorm_normalize_56',
'uregex_matches_56',
'uspoof_open_56',
'usearch_setPattern_56',
'?createInstance@Transliterator@icu_56@@SAPEAV12@AEBVUnicodeString@2@W4UTransDirection@@AEAW4UErrorCode@@@Z',
'??0MeasureFormat@icu_56@@QEAA@AEBVLocale@1@W4UMeasureFormatWidth@@AEAW4UErrorCode@@@Z',
],
'conditions': [
['target_arch=="ia32"', {
'reference_symbols': [
'_udata_setCommonData_56',
'_u_errorName_56',
'_ubidi_setPara_56',
'_ucsdet_getName_56',
'_uidna_openUTS46_56',
'_ulocdata_close_56',
'_unorm_normalize_56',
'_uregex_matches_56',
'_uscript_getCode_56',
'_uspoof_open_56',
'_usearch_setPattern_56',
'?createInstance@Transliterator@icu_56@@SAPAV12@ABVUnicodeString@2@W4UTransDirection@@AAW4UErrorCode@@@Z',
'??0MeasureFormat@icu_56@@QAE@ABVLocale@1@W4UMeasureFormatWidth@@AAW4UErrorCode@@@Z',
],
}, {
'reference_symbols': [
'udata_setCommonData_56',
'u_errorName_56',
'ubidi_setPara_56',
'ucsdet_getName_56',
'uidna_openUTS46_56',
'ulocdata_close_56',
'unorm_normalize_56',
'uregex_matches_56',
'uspoof_open_56',
'usearch_setPattern_56',
'?createInstance@Transliterator@icu_56@@SAPEAV12@AEBVUnicodeString@2@W4UTransDirection@@AEAW4UErrorCode@@@Z',
'??0MeasureFormat@icu_56@@QEAA@AEBVLocale@1@W4UMeasureFormatWidth@@AEAW4UErrorCode@@@Z',
],
}]
]
},
'msvs_settings': {
'VCLinkerTool': {
Expand Down

1 comment on commit 94860e6

@bsclifton
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

++

Please sign in to comment.