Compare commits

...

3 Commits

Author SHA1 Message Date
Ashcon Partovi
7542e7fef7 Merge branch 'main' into jarred/march 2024-04-23 16:22:20 -07:00
Jarred Sumner
c7f4df67d5 Force rebuild 2024-04-11 20:49:59 -07:00
Jarred Sumner
dfa5e92114 Make Windows builds faster 2024-04-11 20:27:44 -07:00
2 changed files with 5 additions and 1 deletions

View File

@@ -41,6 +41,9 @@ $CXXFLAGS = '/O2'
if ($Baseline) {
$CFLAGS += ' -march=nehalem'
$CXXFLAGS += ' -march=nehalem'
} else {
$CFLAGS += ' -march=haswell'
$CXXFLAGS += ' -march=haswell'
}
$CMAKE_FLAGS = @(

View File

@@ -5941,7 +5941,8 @@ pub const NodeFS = struct {
return Maybe(Return.CreateWriteStream).todo();
}
/// This function is `cpSync`, but only if you pass `{ recursive: ..., force: ..., errorOnExist: ..., mode: ... }'
/// This function is `cpSync`, but only if you pass
/// { recursive: ..., force: ..., errorOnExist: ..., mode: ... }
/// The other options like `filter` use a JS fallback, see `src/js/internal/fs/cp.ts`
pub fn cp(this: *NodeFS, args: Arguments.Cp, comptime flavor: Flavor) Maybe(Return.Cp) {
comptime bun.assert(flavor == .sync);